aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/BDInfo.Test/BDInfo.Test.csproj4
-rw-r--r--tests/DvdLib.Test/DvdLib.Test.csproj4
-rw-r--r--tests/IsoMounter.Test/IsoMounter.Test.csproj4
-rw-r--r--tests/Jellyfin.Api.Test/Jellyfin.Api.Test.csproj4
-rw-r--r--tests/Jellyfin.Common.Test/Jellyfin.Common.Test.csproj4
-rw-r--r--tests/Jellyfin.Controller.Test/Jellyfin.Controller.Test.csproj4
-rw-r--r--tests/Jellyfin.Dlna.Test/Jellyfin.Dlna.Test.csproj4
-rw-r--r--tests/Jellyfin.Drawing.ImageMagick.Test/Jellyfin.Drawing.ImageMagick.Test.csproj4
-rw-r--r--tests/Jellyfin.Drawing.Skia.Test/Jellyfin.Drawing.Skia.Test.csproj4
-rw-r--r--tests/Jellyfin.Drawing.Test/Jellyfin.Drawing.Test.csproj4
-rw-r--r--tests/Jellyfin.LocalMetadata.Test/Jellyfin.LocalMetadata.Test.csproj4
-rw-r--r--tests/Jellyfin.Model.Test/Jellyfin.Model.Test.csproj4
-rw-r--r--tests/Jellyfin.Naming.Test/Jellyfin.Naming.Test.csproj4
-rw-r--r--tests/Jellyfin.Notifications.Test/Jellyfin.Notifications.Test.csproj4
-rw-r--r--tests/Jellyfin.Photos.Test/Jellyfin.Photos.Test.csproj4
-rw-r--r--tests/Jellyfin.Providers.Test/Jellyfin.Providers.Test.csproj4
-rw-r--r--tests/Jellyfin.Server.Implementations.Test/Jellyfin.Server.Implementations.Test.csproj4
-rw-r--r--tests/Jellyfin.Test/Jellyfin.Test.csproj4
-rw-r--r--tests/Jellyfin.WebDashboard.Test/Jellyfin.WebDashboard.Test.csproj4
-rw-r--r--tests/Jellyfin.XbmcMetadata.Test/Jellyfin.XbmcMetadata.Test.csproj4
-rw-r--r--tests/Jellyfin.XmlTv.Test/Jellyfin.XmlTv.Test.csproj4
21 files changed, 84 insertions, 0 deletions
diff --git a/tests/BDInfo.Test/BDInfo.Test.csproj b/tests/BDInfo.Test/BDInfo.Test.csproj
index d3ddc6783b..f0438f3947 100644
--- a/tests/BDInfo.Test/BDInfo.Test.csproj
+++ b/tests/BDInfo.Test/BDInfo.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\BDInfo\BDInfo.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/DvdLib.Test/DvdLib.Test.csproj b/tests/DvdLib.Test/DvdLib.Test.csproj
index 85357d199f..0fe8602bfd 100644
--- a/tests/DvdLib.Test/DvdLib.Test.csproj
+++ b/tests/DvdLib.Test/DvdLib.Test.csproj
@@ -16,4 +16,8 @@
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\DvdLib\DvdLib.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/IsoMounter.Test/IsoMounter.Test.csproj b/tests/IsoMounter.Test/IsoMounter.Test.csproj
index d3ddc6783b..f5b51267fb 100644
--- a/tests/IsoMounter.Test/IsoMounter.Test.csproj
+++ b/tests/IsoMounter.Test/IsoMounter.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\Emby.IsoMounting\IsoMounter\IsoMounter.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.Api.Test/Jellyfin.Api.Test.csproj b/tests/Jellyfin.Api.Test/Jellyfin.Api.Test.csproj
index d3ddc6783b..fd757001dd 100644
--- a/tests/Jellyfin.Api.Test/Jellyfin.Api.Test.csproj
+++ b/tests/Jellyfin.Api.Test/Jellyfin.Api.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\MediaBrowser.Api\MediaBrowser.Api.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.Common.Test/Jellyfin.Common.Test.csproj b/tests/Jellyfin.Common.Test/Jellyfin.Common.Test.csproj
index d3ddc6783b..f7267a9dae 100644
--- a/tests/Jellyfin.Common.Test/Jellyfin.Common.Test.csproj
+++ b/tests/Jellyfin.Common.Test/Jellyfin.Common.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\MediaBrowser.Common\MediaBrowser.Common.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.Controller.Test/Jellyfin.Controller.Test.csproj b/tests/Jellyfin.Controller.Test/Jellyfin.Controller.Test.csproj
index 85357d199f..707174c2d5 100644
--- a/tests/Jellyfin.Controller.Test/Jellyfin.Controller.Test.csproj
+++ b/tests/Jellyfin.Controller.Test/Jellyfin.Controller.Test.csproj
@@ -16,4 +16,8 @@
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.Dlna.Test/Jellyfin.Dlna.Test.csproj b/tests/Jellyfin.Dlna.Test/Jellyfin.Dlna.Test.csproj
index d3ddc6783b..f457544a69 100644
--- a/tests/Jellyfin.Dlna.Test/Jellyfin.Dlna.Test.csproj
+++ b/tests/Jellyfin.Dlna.Test/Jellyfin.Dlna.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\Emby.Dlna\Emby.Dlna.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.Drawing.ImageMagick.Test/Jellyfin.Drawing.ImageMagick.Test.csproj b/tests/Jellyfin.Drawing.ImageMagick.Test/Jellyfin.Drawing.ImageMagick.Test.csproj
index d3ddc6783b..63ece80218 100644
--- a/tests/Jellyfin.Drawing.ImageMagick.Test/Jellyfin.Drawing.ImageMagick.Test.csproj
+++ b/tests/Jellyfin.Drawing.ImageMagick.Test/Jellyfin.Drawing.ImageMagick.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\Emby.Drawing.ImageMagick\Emby.Drawing.ImageMagick.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.Drawing.Skia.Test/Jellyfin.Drawing.Skia.Test.csproj b/tests/Jellyfin.Drawing.Skia.Test/Jellyfin.Drawing.Skia.Test.csproj
index d3ddc6783b..180203b631 100644
--- a/tests/Jellyfin.Drawing.Skia.Test/Jellyfin.Drawing.Skia.Test.csproj
+++ b/tests/Jellyfin.Drawing.Skia.Test/Jellyfin.Drawing.Skia.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\Emby.Drawing.Skia\Emby.Drawing.Skia.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.Drawing.Test/Jellyfin.Drawing.Test.csproj b/tests/Jellyfin.Drawing.Test/Jellyfin.Drawing.Test.csproj
index d3ddc6783b..66911e86f5 100644
--- a/tests/Jellyfin.Drawing.Test/Jellyfin.Drawing.Test.csproj
+++ b/tests/Jellyfin.Drawing.Test/Jellyfin.Drawing.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\Emby.Drawing\Emby.Drawing.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.LocalMetadata.Test/Jellyfin.LocalMetadata.Test.csproj b/tests/Jellyfin.LocalMetadata.Test/Jellyfin.LocalMetadata.Test.csproj
index d3ddc6783b..3a53de3171 100644
--- a/tests/Jellyfin.LocalMetadata.Test/Jellyfin.LocalMetadata.Test.csproj
+++ b/tests/Jellyfin.LocalMetadata.Test/Jellyfin.LocalMetadata.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\MediaBrowser.LocalMetadata\MediaBrowser.LocalMetadata.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.Model.Test/Jellyfin.Model.Test.csproj b/tests/Jellyfin.Model.Test/Jellyfin.Model.Test.csproj
index d3ddc6783b..fdf65127d1 100644
--- a/tests/Jellyfin.Model.Test/Jellyfin.Model.Test.csproj
+++ b/tests/Jellyfin.Model.Test/Jellyfin.Model.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.Naming.Test/Jellyfin.Naming.Test.csproj b/tests/Jellyfin.Naming.Test/Jellyfin.Naming.Test.csproj
index 85357d199f..ad192467fa 100644
--- a/tests/Jellyfin.Naming.Test/Jellyfin.Naming.Test.csproj
+++ b/tests/Jellyfin.Naming.Test/Jellyfin.Naming.Test.csproj
@@ -16,4 +16,8 @@
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\Emby.Naming\Emby.Naming.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.Notifications.Test/Jellyfin.Notifications.Test.csproj b/tests/Jellyfin.Notifications.Test/Jellyfin.Notifications.Test.csproj
index d3ddc6783b..e3fd48975c 100644
--- a/tests/Jellyfin.Notifications.Test/Jellyfin.Notifications.Test.csproj
+++ b/tests/Jellyfin.Notifications.Test/Jellyfin.Notifications.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\Emby.Notifications\Emby.Notifications.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.Photos.Test/Jellyfin.Photos.Test.csproj b/tests/Jellyfin.Photos.Test/Jellyfin.Photos.Test.csproj
index d3ddc6783b..09eafca221 100644
--- a/tests/Jellyfin.Photos.Test/Jellyfin.Photos.Test.csproj
+++ b/tests/Jellyfin.Photos.Test/Jellyfin.Photos.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\Emby.Photos\Emby.Photos.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.Providers.Test/Jellyfin.Providers.Test.csproj b/tests/Jellyfin.Providers.Test/Jellyfin.Providers.Test.csproj
index 85357d199f..e1f49fed24 100644
--- a/tests/Jellyfin.Providers.Test/Jellyfin.Providers.Test.csproj
+++ b/tests/Jellyfin.Providers.Test/Jellyfin.Providers.Test.csproj
@@ -16,4 +16,8 @@
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\MediaBrowser.Providers\MediaBrowser.Providers.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.Server.Implementations.Test/Jellyfin.Server.Implementations.Test.csproj b/tests/Jellyfin.Server.Implementations.Test/Jellyfin.Server.Implementations.Test.csproj
index d3ddc6783b..1ae578cd73 100644
--- a/tests/Jellyfin.Server.Implementations.Test/Jellyfin.Server.Implementations.Test.csproj
+++ b/tests/Jellyfin.Server.Implementations.Test/Jellyfin.Server.Implementations.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\Emby.Server.Implementations\Emby.Server.Implementations.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.Test/Jellyfin.Test.csproj b/tests/Jellyfin.Test/Jellyfin.Test.csproj
index d3ddc6783b..8b94543e76 100644
--- a/tests/Jellyfin.Test/Jellyfin.Test.csproj
+++ b/tests/Jellyfin.Test/Jellyfin.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\MediaBrowser.Server.Mono\EmbyServer.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.WebDashboard.Test/Jellyfin.WebDashboard.Test.csproj b/tests/Jellyfin.WebDashboard.Test/Jellyfin.WebDashboard.Test.csproj
index d3ddc6783b..762b718a6c 100644
--- a/tests/Jellyfin.WebDashboard.Test/Jellyfin.WebDashboard.Test.csproj
+++ b/tests/Jellyfin.WebDashboard.Test/Jellyfin.WebDashboard.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\MediaBrowser.WebDashboard\MediaBrowser.WebDashboard.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.XbmcMetadata.Test/Jellyfin.XbmcMetadata.Test.csproj b/tests/Jellyfin.XbmcMetadata.Test/Jellyfin.XbmcMetadata.Test.csproj
index 85357d199f..499dc13833 100644
--- a/tests/Jellyfin.XbmcMetadata.Test/Jellyfin.XbmcMetadata.Test.csproj
+++ b/tests/Jellyfin.XbmcMetadata.Test/Jellyfin.XbmcMetadata.Test.csproj
@@ -16,4 +16,8 @@
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\MediaBrowser.XbmcMetadata\MediaBrowser.XbmcMetadata.csproj" />
+ </ItemGroup>
+
</Project>
diff --git a/tests/Jellyfin.XmlTv.Test/Jellyfin.XmlTv.Test.csproj b/tests/Jellyfin.XmlTv.Test/Jellyfin.XmlTv.Test.csproj
index d3ddc6783b..b63855e11b 100644
--- a/tests/Jellyfin.XmlTv.Test/Jellyfin.XmlTv.Test.csproj
+++ b/tests/Jellyfin.XmlTv.Test/Jellyfin.XmlTv.Test.csproj
@@ -16,4 +16,8 @@
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
</ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\Emby.XmlTv\Emby.XmlTv\Emby.XmlTv.csproj" />
+ </ItemGroup>
+
</Project>