37 lines
1.5 KiB
XML
37 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>
|
|
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">netcoreapp2.0</TargetFrameworks>
|
|
|
|
<RuntimeIdentifier Condition="'$(TargetFramework)' != 'netcoreapp2.0'">win7-x64</RuntimeIdentifier>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
|
|
<PackageReference Include="Microsoft.CSharp" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\Common\ServerFixture.cs" Link="ServerFixture.cs" />
|
|
<Compile Include="..\Common\TaskExtensions.cs" Link="TaskExtensions.cs" />
|
|
<Compile Include="..\Common\ChannelExtensions.cs" Link="ChannelExtensions.cs" />
|
|
<Compile Include="..\Common\TestHelpers.cs" Link="TestHelpers.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.SignalR\Microsoft.AspNetCore.SignalR.csproj" />
|
|
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.SignalR.Client\Microsoft.AspNetCore.SignalR.Client.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Hosting" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Http" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" />
|
|
<PackageReference Include="Microsoft.AspNetCore.TestHost" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Testing" />
|
|
<PackageReference Include="System.Reactive.Linq" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|