Jellyfin.Server.Implementations.Tests.csproj 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
  3. <PropertyGroup>
  4. <ProjectGuid>{2E3A1B4B-4225-4AAA-8B29-0181A84E7AEE}</ProjectGuid>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <None Include="Test Data\**\*.*">
  8. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  9. </None>
  10. </ItemGroup>
  11. <ItemGroup>
  12. <PackageReference Include="AutoFixture" />
  13. <PackageReference Include="AutoFixture.AutoMoq" />
  14. <PackageReference Include="Microsoft.NET.Test.Sdk" />
  15. <PackageReference Include="Moq" />
  16. <PackageReference Include="xunit" />
  17. <PackageReference Include="xunit.runner.visualstudio">
  18. <PrivateAssets>all</PrivateAssets>
  19. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  20. </PackageReference>
  21. <PackageReference Include="Xunit.SkippableFact" />
  22. <PackageReference Include="coverlet.collector" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <ProjectReference Include="..\..\Emby.Server.Implementations\Emby.Server.Implementations.csproj" />
  26. <ProjectReference Include="..\..\Jellyfin.Server.Implementations\Jellyfin.Server.Implementations.csproj" />
  27. <ProjectReference Include="..\Jellyfin.Server.Integration.Tests\Jellyfin.Server.Integration.Tests.csproj" />
  28. <ProjectReference Include="..\..\src\Jellyfin.Database\Jellyfin.Database.Implementations\Jellyfin.Database.Implementations.csproj" />
  29. </ItemGroup>
  30. </Project>