16 lines
384 B
XML
16 lines
384 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp1.1</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<!-- We don't want dotnet pack to try packing a sample -->
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Net.WebSockets.Client" Version="4.3.0-*" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|