Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

use <PackageLicenseExpression>MIT</PackageLicenseExpression> #405

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions 5 build/Choco.csx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ public static class Choco
var tags = projectFile.Descendants("PackageTags").SingleOrDefault()?.Value;
var iconUrl = projectFile.Descendants("PackageIconUrl").SingleOrDefault()?.Value;
var projectUrl = projectFile.Descendants("PackageProjectUrl").SingleOrDefault()?.Value;
var licenseUrl = projectFile.Descendants("PackageLicenseUrl").SingleOrDefault()?.Value;
var repositoryUrl = projectFile.Descendants("RepositoryUrl").SingleOrDefault()?.Value;

var packageElement = new XElement("package");
Expand All @@ -68,7 +67,7 @@ public static class Choco
metadataElement.Add(new XElement("id", packageId.ToLower()));
metadataElement.Add(new XElement("version", version));
metadataElement.Add(new XElement("authors", authors));
metadataElement.Add(new XElement("licenseUrl", licenseUrl));
metadataElement.Add(new XElement("licenseUrl", "https://licenses.nuget.org/MIT"));
metadataElement.Add(new XElement("projectUrl", projectUrl));
metadataElement.Add(new XElement("iconUrl", iconUrl));
metadataElement.Add(new XElement("description", description));
Expand All @@ -95,4 +94,4 @@ public static class Choco
return new XElement("file", srcAttribute, targetAttribute);
}

}
}
2 changes: 1 addition & 1 deletion 2 src/Dotnet.Script.Core/Dotnet.Script.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PackageTags>script;csx;csharp;roslyn</PackageTags>
<PackageIconUrl>https://raw.githubusercontent.com/filipw/Strathweb.TypedRouting.AspNetCore/master/strathweb.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/filipw/dotnet-script</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/filipw/dotnet-script/blob/master/LICENSE</PackageLicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/filipw/dotnet-script.git</RepositoryUrl>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<PackageLicenseUrl>https://github.com/filipw/dotnet-script/blob/master/LICENSE</PackageLicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/filipw/dotnet-script</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/filipw/Strathweb.TypedRouting.AspNetCore/master/strathweb.png</PackageIconUrl>
<RepositoryUrl>https://github.com/filipw/dotnet-script.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>script;csx;csharp;roslyn;nuget</PackageTags>
<Version>0.7.0</Version>
<Version>0.7.1</Version>
<Description>A MetadataReferenceResolver that allows inline nuget references to be specified in script(csx) files.</Description>
<Authors>dotnet-script</Authors>
<Company>dotnet-script</Company>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<Authors>dotnet-script</Authors>
<Company>dotnet-script</Company>
<Description>Provides runtime and compilation dependency resolution for dotnet-script based scripts.</Description>
<PackageLicenseUrl>https://github.com/filipw/dotnet-script/blob/master/LICENSE</PackageLicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/filipw/dotnet-script</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/filipw/Strathweb.TypedRouting.AspNetCore/master/strathweb.png</PackageIconUrl>
<RepositoryUrl>https://github.com/filipw/dotnet-script.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>script;csx;csharp;roslyn;omnisharp</PackageTags>
<Version>0.8.0</Version>
<Version>0.9.0</Version>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is by design, we forgot the bump in #402

<LangVersion>latest</LangVersion>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion 2 src/Dotnet.Script/Dotnet.Script.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageTags>dotnet;cli;script;csx;csharp;roslyn</PackageTags>
<PackageIconUrl>https://raw.githubusercontent.com/filipw/Strathweb.TypedRouting.AspNetCore/master/strathweb.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/filipw/dotnet-script</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/filipw/dotnet-script/blob/master/LICENSE</PackageLicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/filipw/dotnet-script.git</RepositoryUrl>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.