22 lines
926 B
XML
22 lines
926 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
|
|
<OutputType>exe</OutputType>
|
|
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
<CompileUsingReferenceAssemblies>false</CompileUsingReferenceAssemblies>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.AspNetCore.DataProtection.AzureKeyVault" />
|
|
<Reference Include="Microsoft.Extensions.Configuration" />
|
|
<Reference Include="Microsoft.Extensions.Configuration.Json" />
|
|
<Reference Include="Microsoft.Extensions.DependencyInjection" />
|
|
<Reference Include="Microsoft.Extensions.Logging" />
|
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
|
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
|
<Reference Include="Microsoft.AspNetCore.DataProtection" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|