25 lines
1.0 KiB
XML
25 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netcoreapp2.2;net461</TargetFrameworks>
|
|
<ServerGarbageCollection>true</ServerGarbageCollection>
|
|
<TestGroupName>Sockets.BindTests</TestGroupName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\BindTests\**\*.cs" />
|
|
<Compile Include="..\Sockets.FunctionalTests\TransportSelector.cs" />
|
|
<Compile Include="$(SharedSourceRoot)NullScope.cs" />
|
|
<Compile Include="$(KestrelSharedSourceRoot)test\*.cs" LinkBase="shared" />
|
|
<Compile Include="$(KestrelSharedSourceRoot)test\TransportTestHelpers\*.cs" LinkBase="shared\TransportTestHelpers" />
|
|
<Content Include="$(KestrelSharedSourceRoot)test\TestCertificates\*.pfx" LinkBase="shared\TestCertificates" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.AspNetCore.Server.Kestrel" />
|
|
<Reference Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets" />
|
|
<Reference Include="Microsoft.AspNetCore.Server.Kestrel.Https" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|