| 1234567891011121314151617181920212223242526 |
- <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/8247 -->
- <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>
|