- Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathACMECLI.csproj
22 lines (18 loc) · 795 Bytes
/
ACMECLI.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<ProjectSdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<LangVersion>LATEST</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReferenceInclude="Newtonsoft.Json"Version="11.*" />
<PackageReferenceInclude="McMaster.Extensions.CommandLineUtils"Version="2.*" />
<PackageReferenceInclude="DnsClient"Version="1.*" />
</ItemGroup>
<ItemGroup>
<ProjectReferenceInclude="..\..\ACMESharp\ACMESharp.csproj" />
<ProjectReferenceInclude="..\..\PKISharp.SimplePKI\PKISharp.SimplePKI.csproj" />
<ProjectReferenceInclude="..\Examples.Common.PKI\Examples.Common.PKI.csproj" />
<ProjectReferenceInclude="..\Examples.Common\Examples.Common.csproj" />
</ItemGroup>
</Project>