forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Microsoft.Azure.KeyVault.WebKey.csproj
22 lines (20 loc) · 1.09 KB
/
Microsoft.Azure.KeyVault.WebKey.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetPathOfFileAbove('AzSdk.props'))" />
<PropertyGroup>
<Description>Microsoft Azure Key Vault WebKey Class Library</Description>
<AssemblyTitle>Microsoft Azure Key Vault WebKey</AssemblyTitle>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
</PropertyGroup>
<ItemGroup Condition="'$(IsTargetingNetFx)' == 'true'">
<PackageReference Include="Newtonsoft.Json" Version="6.0.8" />
</ItemGroup>
<ItemGroup Condition="'$(IsTargetingNetStandard)' == 'true'">
<PackageReference Include="System.Collections" Version="4.3.0" />
<PackageReference Include="System.Runtime" Version="4.3.0" />
<PackageReference Include="System.Security.Cryptography.Algorithms" Version="4.3.0" />
<PackageReference Include="System.Security.Cryptography.Cng" Version="4.3.0" />
<PackageReference Include="System.Collections.Concurrent" Version="4.3.0" />
<PackageReference Include="System.Linq" Version="4.3.0" />
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
</ItemGroup>
</Project>