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.

Discord.Net.WebSocket.csproj 873 B

12345678910111213141516
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="../../Discord.Net.targets" />
  3. <Import Project="../../StyleAnalyzer.targets" />
  4. <PropertyGroup>
  5. <AssemblyName>Discord.Net.WebSocket</AssemblyName>
  6. <RootNamespace>Discord.WebSocket</RootNamespace>
  7. <Description>A core Discord.Net Labs library containing the WebSocket client and models.</Description>
  8. <TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">net5.0;net461;netstandard2.0;netstandard2.1</TargetFrameworks>
  9. <TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">net5.0;netstandard2.0;netstandard2.1</TargetFrameworks>
  10. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
  14. <ProjectReference Include="..\Discord.Net.Rest\Discord.Net.Rest.csproj" />
  15. </ItemGroup>
  16. </Project>