Last active
March 22, 2021 04:33
-
-
Save JamesNK/56b1c3b90b2a8d21c73d to your computer and use it in GitHub Desktop.
The Great Newtonsoft.Json.nuspec Collaboration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | |
<metadata> | |
<id>Newtonsoft.Json</id> | |
<version></version> | |
<title>Json.NET</title> | |
<description>Json.NET is a popular high-performance JSON framework for .NET</description> | |
<authors>James Newton-King</authors> | |
<language>en-US</language> | |
<projectUrl>http://www.newtonsoft.com/json</projectUrl> | |
<iconUrl>http://www.newtonsoft.com/content/images/nugeticon.png</iconUrl> | |
<licenseUrl>https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md</licenseUrl> | |
<tags>json</tags> | |
<dependencies> | |
<group targetFramework="net45" /> | |
<group targetFramework="wp8" /> | |
<group targetFramework="win8" /> | |
<group targetFramework="wpa81" /> | |
<group targetFramework="xamarin.ios" /> | |
<group targetFramework="monotouch" /> | |
<group targetFramework="monoandroid" /> | |
<group targetFramework=".NETPlatform5.0"> | |
<dependency id="Microsoft.CSharp" version="4.0.0" /> | |
<dependency id="System.Collections" version="4.0.10" /> | |
<dependency id="System.Collections.Concurrent" version="4.0.10" /> | |
<dependency id="System.ComponentModel.TypeConverter" version="4.0.0" /> | |
<dependency id="System.Diagnostics.Debug" version="4.0.10" /> | |
<dependency id="System.Diagnostics.Tools" version="4.0.0" /> | |
<dependency id="System.Dynamic.Runtime" version="4.0.10" /> | |
<dependency id="System.Globalization" version="4.0.10" /> | |
<dependency id="System.IO" version="4.0.10" /> | |
<dependency id="System.Linq" version="4.0.0" /> | |
<dependency id="System.Linq.Expressions" version="4.0.10" /> | |
<dependency id="System.ObjectModel" version="4.0.10" /> | |
<dependency id="System.Reflection" version="4.0.10" /> | |
<dependency id="System.Reflection.Extensions" version="4.0.0" /> | |
<dependency id="System.Runtime" version="4.0.20" /> | |
<dependency id="System.Runtime.Extensions" version="4.0.10" /> | |
<dependency id="System.Runtime.Numerics" version="4.0.0" /> | |
<dependency id="System.Runtime.Serialization.Primitives" version="4.0.10" /> | |
<dependency id="System.Text.Encoding" version="4.0.10" /> | |
<dependency id="System.Text.Encoding.Extensions" version="4.0.10" /> | |
<dependency id="System.Text.RegularExpressions" version="4.0.10" /> | |
<dependency id="System.Threading" version="4.0.10" /> | |
<dependency id="System.Threading.Tasks" version="4.0.10" /> | |
<dependency id="System.Xml.ReaderWriter" version="4.0.10" /> | |
<dependency id="System.Xml.XDocument" version="4.0.10" /> | |
</group> | |
</dependencies> | |
</metadata> | |
</package> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So this isn't true then...
http://blog.nuget.org/20150729/Introducing-nuget-uwp.html
As far as I can tell dotnet is useless. It hides portable-* for win8/wp8/wpa81/net45 so the assembly in dotnet has to be compatible with all those targets.