You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <Project Sdk="Microsoft.NET.Sdk">
- <Import Project="../../Discord.Net.targets" />
- <PropertyGroup>
- <AssemblyName>Discord.Net.WebSocket</AssemblyName>
- <RootNamespace>Discord.WebSocket</RootNamespace>
- <Description>A core Discord.Net library containing the WebSocket client and models.</Description>
- <TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">net46;netstandard1.3;netstandard2.0</TargetFrameworks>
- <TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard1.3;netstandard2.0</TargetFrameworks>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
- <ProjectReference Include="..\Discord.Net.Rest\Discord.Net.Rest.csproj" />
- </ItemGroup>
- <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
- <PackageReference Include="System.Net.WebSockets.Client" Version="4.3.2" />
- </ItemGroup>
- </Project>
|