Jellyfin.Naming.Tests.csproj 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
  3. <PropertyGroup>
  4. <ProjectGuid>{3998657B-1CCC-49DD-A19F-275DC8495F57}</ProjectGuid>
  5. </PropertyGroup>
  6. <PropertyGroup>
  7. <TargetFramework>netcoreapp3.1</TargetFramework>
  8. <IsPackable>false</IsPackable>
  9. <Nullable>enable</Nullable>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
  13. <PackageReference Include="xunit" Version="2.4.1" />
  14. <PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
  15. <PackageReference Include="coverlet.collector" Version="1.2.1" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\..\Emby.Naming\Emby.Naming.csproj" />
  19. </ItemGroup>
  20. <!-- Code Analyzers-->
  21. <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
  22. <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" PrivateAssets="All" />
  23. <PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
  24. </ItemGroup>
  25. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  26. <CodeAnalysisRuleSet>../jellyfin-tests.ruleset</CodeAnalysisRuleSet>
  27. </PropertyGroup>
  28. </Project>