17 lines
426 B
XML
17 lines
426 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\build\dependencies.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp1.1</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<!-- Don't create a NuGet package -->
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Net.WebSockets.Client" Version="$(CoreFxVersion)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|