Microsoft.AspNetCore.FunctionalTests.csproj 971 B

12345678910111213141516171819202122232425
  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/10424 -->
  6. <BuildHelixPayload>false</BuildHelixPayload>
  7. <BaseOutputPath />
  8. <OutputPath />
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <Content Include="testCert.pfx" CopyToOutputDirectory="PreserveNewest" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="$(RepoRoot)src\Hosting\Server.IntegrationTesting\src\Microsoft.AspNetCore.Server.IntegrationTesting.csproj" />
  15. <ProjectReference Include="$(RepoRoot)src\Servers\IIS\IntegrationTesting.IIS\src\Microsoft.AspNetCore.Server.IntegrationTesting.IIS.csproj" />
  16. <Reference Include="Microsoft.AspNetCore" />
  17. <Reference Include="Microsoft.Extensions.Logging.Testing" />
  18. </ItemGroup>
  19. </Project>