2020-01-08 22:52:33 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2020-04-21 20:21:09 +00:00
|
|
|
|
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ProjectGuid>{2E3A1B4B-4225-4AAA-8B29-0181A84E7AEE}</ProjectGuid>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-06-13 11:37:41 +00:00
|
|
|
|
<PropertyGroup>
|
2021-02-14 14:11:46 +00:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2020-06-13 11:37:41 +00:00
|
|
|
|
<IsPackable>false</IsPackable>
|
2021-03-09 02:04:47 +00:00
|
|
|
|
<CodeAnalysisRuleSet>../jellyfin-tests.ruleset</CodeAnalysisRuleSet>
|
2020-06-13 11:37:41 +00:00
|
|
|
|
<RootNamespace>Jellyfin.Server.Implementations.Tests</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-01-13 00:11:12 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="Test Data\**\*.*">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-06-13 11:37:41 +00:00
|
|
|
|
<ItemGroup>
|
2021-04-26 12:00:42 +00:00
|
|
|
|
<PackageReference Include="AutoFixture" Version="4.17.0" />
|
2021-04-30 08:47:38 +00:00
|
|
|
|
<PackageReference Include="AutoFixture.AutoMoq" Version="4.17.0" />
|
2022-05-25 17:06:17 +00:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
|
2022-06-03 22:27:45 +00:00
|
|
|
|
<PackageReference Include="Moq" Version="4.18.1" />
|
2020-06-13 11:37:41 +00:00
|
|
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
2022-05-09 13:23:45 +00:00
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
|
2021-04-10 22:35:32 +00:00
|
|
|
|
<PackageReference Include="Xunit.SkippableFact" Version="1.4.13" />
|
2022-02-07 12:01:11 +00:00
|
|
|
|
<PackageReference Include="coverlet.collector" Version="3.1.2" />
|
2020-06-13 11:37:41 +00:00
|
|
|
|
</ItemGroup>
|
2020-01-08 22:52:33 +00:00
|
|
|
|
|
2020-06-13 11:37:41 +00:00
|
|
|
|
<!-- Code Analyzers -->
|
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2022-01-22 15:48:31 +00:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.3">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2020-06-13 11:37:41 +00:00
|
|
|
|
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
|
2022-05-09 13:24:09 +00:00
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" PrivateAssets="All" />
|
2020-06-13 11:37:41 +00:00
|
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
|
|
|
|
|
</ItemGroup>
|
2020-01-08 22:52:33 +00:00
|
|
|
|
|
2020-06-13 11:37:41 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\Emby.Server.Implementations\Emby.Server.Implementations.csproj" />
|
2021-02-17 10:30:14 +00:00
|
|
|
|
<ProjectReference Include="..\..\Jellyfin.Server.Implementations\Jellyfin.Server.Implementations.csproj" />
|
2021-05-08 11:52:25 +00:00
|
|
|
|
<ProjectReference Include="..\Jellyfin.Server.Integration.Tests\Jellyfin.Server.Integration.Tests.csproj" />
|
2020-06-13 11:37:41 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-01-08 22:52:33 +00:00
|
|
|
|
</Project>
|