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.Tests.csproj 1.5 kB

8 years ago
12345678910111213141516171819202122232425262728293031323334
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <RootNamespace>Discord</RootNamespace>
  5. <TargetFramework>netcoreapp2.1</TargetFramework>
  6. <DebugType>portable</DebugType>
  7. <NoWarn>IDISP001,IDISP002,IDISP004,IDISP005</NoWarn>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <Content Include="xunit.runner.json">
  11. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  12. </Content>
  13. </ItemGroup>
  14. <ItemGroup>
  15. <None Include="Tests.Permissions.cs" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="../../src/Discord.Net.Commands/Discord.Net.Commands.csproj" />
  19. <ProjectReference Include="../../src/Discord.Net.Core/Discord.Net.Core.csproj" />
  20. <ProjectReference Include="../../src/Discord.Net.Rest/Discord.Net.Rest.csproj" />
  21. <ProjectReference Include="../../src/Discord.Net.Analyzers/Discord.Net.Analyzers.csproj" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <PackageReference Include="Akavache" Version="6.0.31" />
  25. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
  26. <PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
  27. <PackageReference Include="xunit" Version="2.4.1" />
  28. <PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
  29. <PrivateAssets>all</PrivateAssets>
  30. <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
  31. </PackageReference>
  32. <PackageReference Include="xunit.runner.reporters" Version="2.4.1" />
  33. </ItemGroup>
  34. </Project>