Skip to content

Commit edd25fb

Browse files
committed
Add support for .NET Framework 4.0
1 parent cc4cf00 commit edd25fb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 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,8 @@ 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.Net.Http" Version="2.2.29" />
29+
<PackageReference Include="Microsoft.Bcl.Async" Version="1.0.168" />
30+
</ItemGroup>
2731
</Project>

0 commit comments

Comments
 (0)