Skip to content
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

Switch to using PackageLicenseExpression #903

Merged
merged 1 commit into from
May 11, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<description>Roslyn Code Generator that will generate a static context for use with YamlDotNet to support ahead-of-time and library trimming.</description>
<summary>Static context generator for YamlDotNet.</summary>
<language>en-US</language>
<license type="file">LICENSE.txt</license>
<license type="expression">MIT</license>
<projectUrl>https://github.com/aaubry/YamlDotNet/wiki</projectUrl>
<iconUrl>http://aaubry.net/images/yamldotnet.png</iconUrl>
<icon>images/yamldotnet.png</icon>
Expand Down
2 changes: 1 addition & 1 deletion YamlDotNet/YamlDotNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<PackageProjectUrl>https://github.com/aaubry/YamlDotNet</PackageProjectUrl>
<RepositoryUrl>https://github.com/aaubry/YamlDotNet</RepositoryUrl>
<Description>YamlDotNet is a .NET library for YAML. YamlDotNet provides low level parsing and emitting of YAML as well as a high level object model similar to XmlDocument. A serialization library is also included that allows to read and write objects from and to YAML streams.</Description>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Copyright (c) Antoine Aubry and contributors</Copyright>
<Configurations>Debug;Release</Configurations>
<AssemblyOriginatorKeyFile>..\YamlDotNet.snk</AssemblyOriginatorKeyFile>
Expand Down
2 changes: 1 addition & 1 deletion YamlDotNet/YamlDotNet.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<description>A .NET library for YAML. YamlDotNet provides low level parsing and emitting of YAML as well as a high level object model similar to XmlDocument.</description>
<summary>This package contains the YAML parser and serializer.</summary>
<language>en-US</language>
<license type="file">LICENSE.txt</license>
<license type="expression">MIT</license>
<projectUrl>https://github.com/aaubry/YamlDotNet/wiki</projectUrl>
<iconUrl>http://aaubry.net/images/yamldotnet.png</iconUrl>
<icon>images/yamldotnet.png</icon>
Expand Down