Skip to content

Commit

Permalink
Fix nuget package metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaubry committed Oct 16, 2015
1 parent d2a7b3d commit 0146226
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
17 changes: 9 additions & 8 deletions YamlDotNet/YamlDotNet.Signed.nuspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<package>
<metadata>
<id>YamlDotNet.Signed</id>
<metadata minClientVersion="2.8">
<id>YamlDotNet.Signed</id>
<version>0.0.1</version>
<authors>Antoine Aubry</authors>
<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>
Expand All @@ -11,12 +11,13 @@
<projectUrl>http://aaubry.net/pages/yamldotnet.html</projectUrl>
<iconUrl>http://aaubry.net/images/yamldotnet.png</iconUrl>
<tags>yaml parser development library serialization signed strongname</tags>
</metadata>
<dependencies>
<group targetFramework="dotnet">
<dependency id="System.Collections" />
</group>
</dependencies>

<dependencies>
<group targetFramework="dotnet">
<dependency id="System.Collections" />
</group>
</dependencies>
</metadata>
<files>
<file src="bin\Release-Signed\YamlDotNet.dll" target="lib\net35" />
<file src="bin\Release-Signed\YamlDotNet.pdb" target="lib\net35" />
Expand Down
13 changes: 7 additions & 6 deletions YamlDotNet/YamlDotNet.Unsigned.nuspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<package>
<metadata>
<metadata minClientVersion="2.8">
<id>YamlDotNet</id>
<version>0.0.1</version>
<authors>Antoine Aubry</authors>
Expand All @@ -11,12 +11,13 @@
<projectUrl>http://aaubry.net/pages/yamldotnet.html</projectUrl>
<iconUrl>http://aaubry.net/images/yamldotnet.png</iconUrl>
<tags>yaml parser development library serialization</tags>

<dependencies>
<group targetFramework="dotnet">
<dependency id="System.Collections" />
</group>
</dependencies>
</metadata>
<dependencies>
<group targetFramework="dotnet">
<dependency id="System.Collections" />
</group>
</dependencies>
<files>
<file src="bin\Release-Unsigned\YamlDotNet.dll" target="lib\net35" />
<file src="bin\Release-Unsigned\YamlDotNet.pdb" target="lib\net35" />
Expand Down

0 comments on commit 0146226

Please sign in to comment.