Skip to content

Commit f2fe26a

Browse files
sblomAndrew Gibson
authored andcommitted
Add support for .NET Framework 4.0
1 parent 7a687a5 commit f2fe26a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/json-ld.net/json-ld.net.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Implements the W3C JSON-LD 1.0 standard.</Description>
66
<VersionPrefix>1.0.7</VersionPrefix>
77
<Authors>NuGet;linked-data-dotnet</Authors>
8-
<TargetFrameworks>netstandard1.1;netstandard2.0</TargetFrameworks>
8+
<TargetFrameworks>netstandard1.1;netstandard2.0;net40</TargetFrameworks>
99
<AssemblyName>json-ld.net</AssemblyName>
1010
<PackageId>json-ld.net</PackageId>
1111
<PackageTags>json-ld;jsonld;json;linked-data;rdf;semantic;web</PackageTags>
@@ -24,4 +24,9 @@ Implements the W3C JSON-LD 1.0 standard.</Description>
2424
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.1' ">
2525
<PackageReference Include="System.Security.Cryptography.Algorithms" Version="4.3.1" />
2626
</ItemGroup>
27+
<ItemGroup Condition="'$(TargetFramework)' == 'net40'">
28+
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" PrivateAssets="All" />
29+
<PackageReference Include="Microsoft.Net.Http" Version="2.2.29" />
30+
<PackageReference Include="Microsoft.Bcl.Async" Version="1.0.168" />
31+
</ItemGroup>
2732
</Project>

0 commit comments

Comments
 (0)