blob: 8f42de053708a371bf8e8808c19cc0ffed5f2425 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>
<RootNamespace>PKISharp.WACS.Plugins.ValidationPlugins</RootNamespace>
<AssemblyName>PKISharp.WACS.Plugins.ValidationPlugins.Azure</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Management.Dns" Version="3.0.1" />
<PackageReference Include="Microsoft.Rest.ClientRuntime.Azure.Authentication" Version="2.4.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\main.lib\wacs.lib.csproj" />
</ItemGroup>
</Project>
|