Skip to content

Commit

Permalink
fixup nuget package spec
Browse files Browse the repository at this point in the history
  • Loading branch information
JoC0de committed Jul 16, 2022
1 parent 38b6ff5 commit 0aae4f7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
6 changes: 2 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Contributing to YamlDotNet

**This project is on hold, and issues or pull requests will probably not be reviewed. [See this discussion for more details](https://github.com/aaubry/YamlDotNet/discussions/689).**

**Welcome!**
Thanks for your interest in contributing to this project. Any contribution will
be gladly accepted, provided that they are generally useful and follow the
Expand Down Expand Up @@ -90,12 +88,12 @@ Every commit and pull request is built on [AppVeyor](https://ci.appveyor.com/pro

The project targets the following platforms:

* .NET Framework 4.7
* .NET Framework 4.5
* .NET Framework 3.5
* .NET Framework 2.0
* .NET Standard 2.1
* .NET Standard 1.3
* Unity Subset v3.5
* .NET 6.0

In the csproj, the `TargetFrameworks` element also targets the following platforms for technical reasons:

Expand Down
6 changes: 0 additions & 6 deletions YamlDotNet/YamlDotNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,6 @@
</PackageReference>
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
<PackageReference Include="System.ComponentModel.TypeConverter">
<Version>4.3.0</Version>
</PackageReference>
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.ComponentModel.TypeConverter">
<Version>4.3.0</Version>
Expand Down
5 changes: 5 additions & 0 deletions YamlDotNet/YamlDotNet.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,18 @@
<repository type="git" url="https://github.com/aaubry/YamlDotNet.git" />
<tags>yaml parser development library serialization</tags>
<dependencies>
<group targetFramework=".NETFramework4.5" />
<group targetFramework=".NETFramework4.7" />
<group targetFramework=".NETFramework3.5" />
<group targetFramework=".NETStandard2.0" />
<group targetFramework=".NETStandard2.1" />
<group targetFramework=".NET6.0" />
</dependencies>
</metadata>
<files>
<file src="bin/Release/net45/YamlDotNet.dll" target="lib/net45" />
<file src="bin/Release/net45/YamlDotNet.xml" target="lib/net45" />

<file src="bin/Release/net47/YamlDotNet.dll" target="lib/net47" />
<file src="bin/Release/net47/YamlDotNet.xml" target="lib/net47" />

Expand Down

0 comments on commit 0aae4f7

Please sign in to comment.