27 lines
938 B
XML
27 lines
938 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
|
|
<!-- Tests do not work on Helix or when bin/ directory is not in project directory due to undeclared dependency on test content. -->
|
|
<!-- https://github.com/aspnet/AspNetCore/issues/6549 -->
|
|
<BuildHelixPayload>false</BuildHelixPayload>
|
|
<BaseOutputPath />
|
|
<OutputPath />
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="testroot\**\*" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="$(RepoRoot)src\Hosting\Server.IntegrationTesting\src\Microsoft.AspNetCore.Server.IntegrationTesting.csproj" />
|
|
|
|
<Reference Include="Microsoft.AspNetCore.Hosting" />
|
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
|
<Reference Include="Microsoft.Extensions.Logging.Testing" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|