-
Notifications
You must be signed in to change notification settings - Fork 1
/
keyvault-certsync.csproj
28 lines (25 loc) · 1.23 KB
/
keyvault-certsync.csproj
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
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<RootNamespace>keyvault_certsync</RootNamespace>
<Company>Carahsoft</Company>
<PackageProjectUrl>https://github.com/carahsoft/keyvault-certsync</PackageProjectUrl>
<PackageId>keyvault-certsync</PackageId>
<Authors>keyvault-certsync</Authors>
<Product>keyvault-certsync</Product>
<Copyright>Copyright (C) 2022 Carahsoft</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.6.1" />
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.3.0" />
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
<PackageReference Include="System.Collections" Version="4.3.0" />
<PackageReference Include="System.IO.FileSystem.AccessControl" Version="5.0.0" />
</ItemGroup>
</Project>