You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="AutoFixture" />
|
|
|
|
<PackageReference Include="AutoFixture.AutoMoq" />
|
|
|
|
<PackageReference Include="AutoFixture.Xunit2" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Options" />
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
|
|
<PackageReference Include="xunit" />
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Xunit.Priority" />
|
|
|
|
<PackageReference Include="coverlet.collector" />
|
|
|
|
<PackageReference Include="Moq" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<!-- Don't run tests in parallel -->
|
|
|
|
<None Update="xunit.runner.json">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="../../Jellyfin.Server/Jellyfin.Server.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<EmbeddedResource Include="TestPage.html" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|