aboutsummaryrefslogtreecommitdiff
path: root/tests/Emby.Server.Implementations.Tests/Emby.Server.Implementations.Tests.csproj
diff options
context:
space:
mode:
authorankenyr <ankenyr@gmail.com>2021-08-06 23:12:29 -0700
committerankenyr <ankenyr@gmail.com>2021-08-06 23:12:29 -0700
commit14a53fe402feb62bef99eaf8100dba822c500e3f (patch)
tree8c5a3c1bdc995de6631e451d15ab7d07f9b7941e /tests/Emby.Server.Implementations.Tests/Emby.Server.Implementations.Tests.csproj
parent3ee0c68cb7f0eaf028e75b73119639c2c69e9971 (diff)
Adding tests for AiredEpisodeOrderComparer.
Diffstat (limited to 'tests/Emby.Server.Implementations.Tests/Emby.Server.Implementations.Tests.csproj')
-rw-r--r--tests/Emby.Server.Implementations.Tests/Emby.Server.Implementations.Tests.csproj27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/Emby.Server.Implementations.Tests/Emby.Server.Implementations.Tests.csproj b/tests/Emby.Server.Implementations.Tests/Emby.Server.Implementations.Tests.csproj
new file mode 100644
index 0000000000..aa5d4bff4b
--- /dev/null
+++ b/tests/Emby.Server.Implementations.Tests/Emby.Server.Implementations.Tests.csproj
@@ -0,0 +1,27 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>net5.0</TargetFramework>
+
+ <IsPackable>false</IsPackable>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
+ <PackageReference Include="xunit" Version="2.4.1" />
+ <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
+ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+ <PrivateAssets>all</PrivateAssets>
+ </PackageReference>
+ <PackageReference Include="coverlet.collector" Version="1.3.0">
+ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+ <PrivateAssets>all</PrivateAssets>
+ </PackageReference>
+ </ItemGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\..\Emby.Server.Implementations\Emby.Server.Implementations.csproj" />
+ <ProjectReference Include="..\..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
+ </ItemGroup>
+
+</Project>