22 lines
796 B
XML
22 lines
796 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<!-- Use 2.2 to run the tests. The tests will select their own TFMs for the test application when publishing -->
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="*.config;*.conf" CopyToPublishDirectory="PreserveNewest" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.AspNetCore.Server.IntegrationTesting.IIS" />
|
|
<Reference Include="Microsoft.Extensions.Logging" />
|
|
<Reference Include="Microsoft.Extensions.Logging.Testing" />
|
|
<Reference Include="Microsoft.Net.Http.Headers" />
|
|
<Reference Include="Serilog.Extensions.Logging" />
|
|
<Reference Include="Serilog.Sinks.File" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|