Microsoft.AspNetCore.Server.HttpSys.FunctionalTests.csproj 839 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.0</TargetFramework>
  4. <TestGroupName>HttpSys.FunctionalTests</TestGroupName>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <Reference Include="Microsoft.AspNetCore.Server.HttpSys" />
  8. <Reference Include="System.Net.Http.WinHttpHandler" />
  9. </ItemGroup>
  10. <PropertyGroup>
  11. <!--Imitate IIS Express so we can use it's cert bindings-->
  12. <PackageTags>214124cd-d05b-4309-9af9-9caa44b2b74a</PackageTags>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <HelixContent Include="$(RepositoryRoot)src\Servers\IIS\tools\TestCert.pfx" />
  16. <HelixContent Include="$(RepositoryRoot)src\Servers\IIS\tools\UpdateIISExpressCertificate.ps1" />
  17. <HelixPreCommand Include="call RunPowershell.cmd UpdateIISExpressCertificate.ps1 || exit /b 1" />
  18. </ItemGroup>
  19. </Project>