forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoft.Azure.KeyVault.Cryptography.csproj
More file actions
25 lines (23 loc) · 1.1 KB
/
Microsoft.Azure.KeyVault.Cryptography.csproj
File metadata and controls
25 lines (23 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Microsoft Azure Key Vault Cryptography Class Library</Description>
<AssemblyTitle>Microsoft Azure Key Vault Cryptography</AssemblyTitle>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Microsoft.Azure.KeyVault.Core\src\Microsoft.Azure.KeyVault.Core.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(IsTargetingNetFx)' == 'true'">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup Condition="'$(IsTargetingNetstandard)' == 'true'">
<PackageReference Include="System.Diagnostics.Tools" />
<PackageReference Include="System.Linq" />
<PackageReference Include="System.Globalization" />
<PackageReference Include="System.Runtime.Extensions" />
<PackageReference Include="System.Security.Cryptography.Primitives" />
<PackageReference Include="System.Security.Cryptography.Algorithms" />
<PackageReference Include="System.Security.Cryptography.Cng" />
</ItemGroup>
</Project>