| 12345678910111213141516171819202122232425 |
- <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/10424 -->
- <BuildHelixPayload>false</BuildHelixPayload>
- <BaseOutputPath />
- <OutputPath />
- </PropertyGroup>
- <ItemGroup>
- <Content Include="testCert.pfx" CopyToOutputDirectory="PreserveNewest" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="$(RepoRoot)src\Hosting\Server.IntegrationTesting\src\Microsoft.AspNetCore.Server.IntegrationTesting.csproj" />
- <ProjectReference Include="$(RepoRoot)src\Servers\IIS\IntegrationTesting.IIS\src\Microsoft.AspNetCore.Server.IntegrationTesting.IIS.csproj" />
- <Reference Include="Microsoft.AspNetCore" />
- <Reference Include="Microsoft.Extensions.Logging.Testing" />
- </ItemGroup>
- </Project>
|