2020-04-23 18:43:05 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-04-20 19:39:55 +00:00
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-07-17 23:48:11 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="3.1.6" />
|
2020-06-11 10:30:13 +00:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
|
2020-04-20 19:39:55 +00:00
|
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
|
2020-06-15 12:01:24 +00:00
|
|
|
<PackageReference Include="coverlet.collector" Version="1.3.0" />
|
2020-04-20 19:39:55 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\..\Jellyfin.Server\Jellyfin.Server.csproj" />
|
|
|
|
<ProjectReference Include="..\..\MediaBrowser.Api\MediaBrowser.Api.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2020-06-13 11:37:41 +00:00
|
|
|
<!-- Code Analyzers -->
|
2020-05-03 20:23:42 +00:00
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" PrivateAssets="All" />
|
2020-06-13 11:37:41 +00:00
|
|
|
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
|
2020-05-03 20:23:42 +00:00
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
|
2020-06-13 11:37:41 +00:00
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
|
2020-05-03 20:23:42 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2020-05-03 20:51:39 +00:00
|
|
|
<CodeAnalysisRuleSet>../jellyfin-tests.ruleset</CodeAnalysisRuleSet>
|
2020-05-03 20:23:42 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-04-20 19:39:55 +00:00
|
|
|
</Project>
|