blob: 3f04238081d9eb5eaeb7dccebe9ac8c182aa86da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>PKISharp.WACS.Plugins.ValidationPlugins</RootNamespace>
<AssemblyName>PKISharp.WACS.Plugins.ValidationPlugins.Cloudflare</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentCloudflare" Version="0.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\main.lib\wacs.lib.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
</Project>
|