32 lines
1.6 KiB
XML
32 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
|
|
<ServerGarbageCollection>true</ServerGarbageCollection>
|
|
<TestGroupName>Interop.FunctionalTests</TestGroupName>
|
|
<!-- WebDriver is not strong named, so this test assembly cannot be strong-named either. -->
|
|
<SignAssembly>false</SignAssembly>
|
|
<BuildHelixPayload Condition="'$(TargetArchitecture)' == 'arm64'">false</BuildHelixPayload>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="$(SharedSourceRoot)NullScope.cs" />
|
|
<Compile Include="$(KestrelSharedSourceRoot)test\TaskTimeoutExtensions.cs" LinkBase="shared" />
|
|
<Compile Include="$(KestrelSharedSourceRoot)test\TransportTestHelpers\IHostPortExtensions.cs" LinkBase="shared" />
|
|
<Compile Include="$(KestrelSharedSourceRoot)test\TransportTestHelpers\IWebHostPortExtensions.cs" LinkBase="shared" />
|
|
<Compile Include="$(KestrelSharedSourceRoot)test\TestConstants.cs" LinkBase="shared" />
|
|
<Compile Include="$(KestrelSharedSourceRoot)test\TestResources.cs" LinkBase="shared" />
|
|
<Content Include="$(KestrelSharedSourceRoot)test\TestCertificates\*.pfx" LinkBase="shared\TestCertificates" CopyToOutputDirectory="PreserveNewest" />
|
|
<Compile Include="$(SharedSourceRoot)test\SkipOnHelixAttribute.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.AspNetCore.Server.Kestrel" />
|
|
<Reference Include="Microsoft.Extensions.Hosting" />
|
|
<Reference Include="Microsoft.Internal.AspNetCore.H2Spec.All" />
|
|
<Reference Include="Selenium.WebDriver" />
|
|
<Reference Include="Selenium.WebDriver.ChromeDriver" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|