EmbyServer.csproj 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <AssemblyName>jellyfin</AssemblyName>
  5. <TargetFramework>netcoreapp2.1</TargetFramework>
  6. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  7. </PropertyGroup>
  8. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  9. <DebugType>None</DebugType>
  10. <RuntimeIdentifiers>ubuntu.16.04-x64</RuntimeIdentifiers>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  13. <PlatformTarget>AnyCPU</PlatformTarget>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
  17. <PackageReference Include="SkiaSharp" Version="1.68.0" />
  18. <PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="1.1.11" />
  19. <PackageReference Include="SQLitePCLRaw.core" Version="1.1.11" />
  20. <PackageReference Include="SQLitePCLRaw.provider.sqlite3.netstandard11" Version="1.1.11" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="..\Emby.IsoMounting\IsoMounter\IsoMounter.csproj" />
  24. <ProjectReference Include="..\BDInfo\BDInfo.csproj" />
  25. <ProjectReference Include="..\DvdLib\DvdLib.csproj" />
  26. <ProjectReference Include="..\Emby.Dlna\Emby.Dlna.csproj" />
  27. <ProjectReference Include="..\Emby.Drawing\Emby.Drawing.csproj" />
  28. <ProjectReference Include="..\Emby.Photos\Emby.Photos.csproj" />
  29. <ProjectReference Include="..\Emby.Server.Implementations\Emby.Server.Implementations.csproj" />
  30. <ProjectReference Include="..\MediaBrowser.WebDashboard\MediaBrowser.WebDashboard.csproj" />
  31. <ProjectReference Include="..\MediaBrowser.Providers\MediaBrowser.Providers.csproj" />
  32. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
  33. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
  34. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj" />
  35. <ProjectReference Include="..\MediaBrowser.Api\MediaBrowser.Api.csproj" />
  36. <ProjectReference Include="..\MediaBrowser.LocalMetadata\MediaBrowser.LocalMetadata.csproj" />
  37. <ProjectReference Include="..\MediaBrowser.XbmcMetadata\MediaBrowser.XbmcMetadata.csproj" />
  38. <ProjectReference Include="..\Mono.Nat\Mono.Nat.csproj" />
  39. <ProjectReference Include="..\OpenSubtitlesHandler\OpenSubtitlesHandler.csproj" />
  40. <ProjectReference Include="..\RSSDP\RSSDP.csproj" />
  41. <ProjectReference Include="..\Emby.Drawing.Skia\Emby.Drawing.Skia.csproj" />
  42. <ProjectReference Include="..\Emby.Drawing.ImageMagick\Emby.Drawing.ImageMagick.csproj" />
  43. <ProjectReference Include="..\SocketHttpListener\SocketHttpListener.csproj" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="..\SharedVersion.cs" />
  47. </ItemGroup>
  48. </Project>