forked from thegreatco/SharpExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSharpExtensions.Json.Assembly.nuspec
27 lines (27 loc) · 1.29 KB
/
SharpExtensions.Json.Assembly.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>SharpExtensions.Json.Assembly</id>
<version>0.0.3</version>
<authors>TheGreatCO</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A collection of extension methods for Json to make things a bit easier.</description>
<releaseNotes>Added pdb files to package.</releaseNotes>
<language>en-US</language>
<dependencies>
<group targetFramework=".NETFramework4.0">
<dependency id="Microsoft.CompilerServices.AsyncTargetingPack" version="1.0.0" />
<dependency id="Newtonsoft.Json" version="5.0.8" />
</group>
<group targetFramework=".NETFramework4.5">
<dependency id="Newtonsoft.Json" version="5.0.8" />
</group>
</dependencies>
</metadata>
<files>
<file src="SharpExtensions45.Json\bin\Release\SharpExtensions45.Json.dll" target="lib\net45" />
<file src="SharpExtensions45.Json\bin\Release\SharpExtensions45.Json.pdb" target="lib\net45" />
<file src="SharpExtensions40.Json\bin\Release\SharpExtensions40.Json.dll" target="lib\net40" />
<file src="SharpExtensions40.Json\bin\Release\SharpExtensions40.Json.pdb" target="lib\net40" />
</files>
</package>