Microsoft.AspNetCore.Hosting.FunctionalTests.csproj 938 B

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.0</TargetFramework>
  4. <!-- Tests do not work on Helix or when bin/ directory is not in project directory due to undeclared dependency on test content. -->
  5. <!-- https://github.com/aspnet/AspNetCore/issues/8247 -->
  6. <BuildHelixPayload>false</BuildHelixPayload>
  7. <BaseOutputPath />
  8. <OutputPath />
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <Content Include="testroot\**\*" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="$(RepoRoot)src\Hosting\Server.IntegrationTesting\src\Microsoft.AspNetCore.Server.IntegrationTesting.csproj" />
  15. <Reference Include="Microsoft.AspNetCore.Hosting" />
  16. <Reference Include="Microsoft.Extensions.Logging.Console" />
  17. <Reference Include="Microsoft.Extensions.Logging.Testing" />
  18. </ItemGroup>
  19. </Project>