2020-10-31 11:21:46 -07: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 07:11:46 -07:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2020-10-31 11:21:46 -07:00
|
|
|
<IsPackable>false</IsPackable>
|
2021-03-08 19:04:47 -07:00
|
|
|
<CodeAnalysisRuleSet>../jellyfin-tests.ruleset</CodeAnalysisRuleSet>
|
2020-10-31 11:21:46 -07:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-09-26 05:01:34 -07:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
2022-08-08 05:00:59 -07:00
|
|
|
<PackageReference Include="xunit" Version="2.4.2" />
|
2022-06-04 16:23:04 -07:00
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2022-02-07 05:01:11 -07:00
|
|
|
<PackageReference Include="coverlet.collector" Version="3.1.2" />
|
2022-06-04 16:23:04 -07:00
|
|
|
<PackageReference Include="FsCheck.Xunit" Version="2.16.5" />
|
2022-09-09 03:49:52 -07:00
|
|
|
<PackageReference Include="Moq" Version="4.18.2" />
|
2020-10-31 11:21:46 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
2020-11-16 10:30:27 -07:00
|
|
|
<!-- Code Analyzers-->
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2022-01-22 08:48:31 -07:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.3">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
</PackageReference>
|
2020-11-16 10:30:27 -07:00
|
|
|
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
|
2022-05-09 06:24:09 -07:00
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" PrivateAssets="All" />
|
2020-11-16 10:30:27 -07:00
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
|
|
|
|
</ItemGroup>
|
2021-03-08 19:04:47 -07:00
|
|
|
|
2020-10-31 11:21:46 -07:00
|
|
|
<ItemGroup>
|
2021-03-08 19:04:47 -07:00
|
|
|
<ProjectReference Include="../../Emby.Server.Implementations/Emby.Server.Implementations.csproj" />
|
|
|
|
<ProjectReference Include="../../MediaBrowser.Common/MediaBrowser.Common.csproj" />
|
2020-10-31 11:21:46 -07:00
|
|
|
</ItemGroup>
|
2021-03-08 19:04:47 -07:00
|
|
|
|
2020-11-16 10:30:27 -07:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<DefineConstants>DEBUG</DefineConstants>
|
|
|
|
</PropertyGroup>
|
2021-03-08 19:04:47 -07:00
|
|
|
|
2020-10-31 11:21:46 -07:00
|
|
|
</Project>
|