|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <Description>JSON-LD processor for .NET |
| 5 | + |
| 6 | +Implements the W3C JSON-LD 1.0 standard.</Description> |
| 7 | + <VersionPrefix>1.0.6</VersionPrefix> |
| 8 | + <Authors>NuGet;linked-data-dotnet</Authors> |
| 9 | + <TargetFrameworks>net40-client;portable45-net45+win8;netstandard1.3;netstandard2.0</TargetFrameworks> |
| 10 | + <AssemblyName>json-ld.net</AssemblyName> |
| 11 | + <PackageId>json-ld.net</PackageId> |
| 12 | + <PackageTags>json-ld;jsonld;json;linked-data;rdf;semantic;web</PackageTags> |
| 13 | + <PackageIconUrl>http://json-ld.org/images/json-ld-logo-64.png</PackageIconUrl> |
| 14 | + <PackageProjectUrl>https://github.com/linked-data-dotnet/json-ld.net/</PackageProjectUrl> |
| 15 | + <PackageLicenseUrl>https://raw.githubusercontent.com/linked-data-dotnet/json-ld.net/master/LICENSE</PackageLicenseUrl> |
| 16 | + <PackageTargetFallback Condition=" '$(TargetFramework)' == 'netstandard1.3' ">$(PackageTargetFallback);dnxcore50;portable-net45+win8</PackageTargetFallback> |
| 17 | + <NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion> |
| 18 | + <GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
| 19 | + <GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
| 20 | + <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
| 21 | + </PropertyGroup> |
| 22 | + |
| 23 | + <ItemGroup> |
| 24 | + <PackageReference Include="Newtonsoft.Json" Version="9.0.1" /> |
| 25 | + </ItemGroup> |
| 26 | + |
| 27 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net40-client' "> |
| 28 | + <Reference Include="System" /> |
| 29 | + <Reference Include="Microsoft.CSharp" /> |
| 30 | + </ItemGroup> |
| 31 | + |
| 32 | + <PropertyGroup Condition=" '$(TargetFramework)' == 'portable45-net45+win8' "> |
| 33 | + <DefineConstants>$(DefineConstants);PORTABLE</DefineConstants> |
| 34 | + </PropertyGroup> |
| 35 | + |
| 36 | + <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' "> |
| 37 | + <DefineConstants>$(DefineConstants);IS_CORECLR</DefineConstants> |
| 38 | + </PropertyGroup> |
| 39 | + |
| 40 | + <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' "> |
| 41 | + <PackageReference Include="System.Dynamic.Runtime" Version="4.0.11" /> |
| 42 | + <PackageReference Include="System.Security.Cryptography.Algorithms" Version="4.2.0" /> |
| 43 | + <PackageReference Include="System.Text.RegularExpressions" Version="4.1.0" /> |
| 44 | + </ItemGroup> |
| 45 | + |
| 46 | +</Project> |
0 commit comments