2020-10-31 18:21:46 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<ProjectGuid>{42816EA8-4511-4CBF-A9C7-7791D5DDDAE6}</ProjectGuid>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-02-14 14:11:46 +00:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2020-10-31 18:21:46 +00:00
|
|
|
<IsPackable>false</IsPackable>
|
2021-03-09 02:04:47 +00:00
|
|
|
<CodeAnalysisRuleSet>../jellyfin-tests.ruleset</CodeAnalysisRuleSet>
|
2020-10-31 18:21:46 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-11-01 12:00:53 +00:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
|
2020-10-31 18:21:46 +00:00
|
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
|
2021-07-26 12:00:45 +00:00
|
|
|
<PackageReference Include="coverlet.collector" Version="3.1.0" />
|
2021-09-06 12:01:04 +00:00
|
|
|
<PackageReference Include="FsCheck.Xunit" Version="2.16.3" />
|
2021-03-01 14:06:48 +00:00
|
|
|
<PackageReference Include="Moq" Version="4.16.1" />
|
2020-10-31 18:21:46 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2020-11-16 17:30:27 +00:00
|
|
|
<!-- Code Analyzers-->
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
|
2021-03-09 02:04:47 +00:00
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
|
2020-11-16 17:30:27 +00:00
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
|
|
|
|
</ItemGroup>
|
2021-03-09 02:04:47 +00:00
|
|
|
|
2020-10-31 18:21:46 +00:00
|
|
|
<ItemGroup>
|
2021-03-09 02:04:47 +00:00
|
|
|
<ProjectReference Include="../../Emby.Server.Implementations/Emby.Server.Implementations.csproj" />
|
|
|
|
<ProjectReference Include="../../MediaBrowser.Common/MediaBrowser.Common.csproj" />
|
2020-10-31 18:21:46 +00:00
|
|
|
</ItemGroup>
|
2021-03-09 02:04:47 +00:00
|
|
|
|
2020-11-16 17:30:27 +00:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<DefineConstants>DEBUG</DefineConstants>
|
|
|
|
</PropertyGroup>
|
2021-03-09 02:04:47 +00:00
|
|
|
|
2020-10-31 18:21:46 +00:00
|
|
|
</Project>
|