2024-08-30 13:29:48 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-01-08 22:52:33 +00:00
|
|
|
|
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>
|
|
|
|
|
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>
|
2023-02-04 17:15:08 +00:00
|
|
|
<PackageReference Include="AutoFixture" />
|
|
|
|
<PackageReference Include="AutoFixture.AutoMoq" />
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
|
|
<PackageReference Include="Moq" />
|
|
|
|
<PackageReference Include="xunit" />
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio">
|
2022-06-04 23:23:04 +00:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-02-04 17:15:08 +00:00
|
|
|
<PackageReference Include="Xunit.SkippableFact" />
|
|
|
|
<PackageReference Include="coverlet.collector" />
|
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
|
|
|
<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>
|