EmbyServer.csproj 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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="Microsoft.Extensions.Configuration.Json" Version="2.2.0" />
  17. <PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
  18. <PackageReference Include="Serilog.AspNetCore" Version="2.1.1" />
  19. <PackageReference Include="Serilog.Settings.Configuration" Version="3.0.1" />
  20. <PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
  21. <PackageReference Include="Serilog.Sinks.File" Version="4.0.0" />
  22. <PackageReference Include="SkiaSharp" Version="1.68.0" />
  23. <PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="1.1.11" />
  24. <PackageReference Include="SQLitePCLRaw.core" Version="1.1.11" />
  25. <PackageReference Include="SQLitePCLRaw.provider.sqlite3.netstandard11" Version="1.1.11" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\Emby.IsoMounting\IsoMounter\IsoMounter.csproj" />
  29. <ProjectReference Include="..\BDInfo\BDInfo.csproj" />
  30. <ProjectReference Include="..\DvdLib\DvdLib.csproj" />
  31. <ProjectReference Include="..\Emby.Dlna\Emby.Dlna.csproj" />
  32. <ProjectReference Include="..\Emby.Drawing\Emby.Drawing.csproj" />
  33. <ProjectReference Include="..\Emby.Photos\Emby.Photos.csproj" />
  34. <ProjectReference Include="..\Emby.Server.Implementations\Emby.Server.Implementations.csproj" />
  35. <ProjectReference Include="..\MediaBrowser.WebDashboard\MediaBrowser.WebDashboard.csproj" />
  36. <ProjectReference Include="..\MediaBrowser.Providers\MediaBrowser.Providers.csproj" />
  37. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
  38. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
  39. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj" />
  40. <ProjectReference Include="..\MediaBrowser.Api\MediaBrowser.Api.csproj" />
  41. <ProjectReference Include="..\MediaBrowser.LocalMetadata\MediaBrowser.LocalMetadata.csproj" />
  42. <ProjectReference Include="..\MediaBrowser.XbmcMetadata\MediaBrowser.XbmcMetadata.csproj" />
  43. <ProjectReference Include="..\Mono.Nat\Mono.Nat.csproj" />
  44. <ProjectReference Include="..\OpenSubtitlesHandler\OpenSubtitlesHandler.csproj" />
  45. <ProjectReference Include="..\RSSDP\RSSDP.csproj" />
  46. <ProjectReference Include="..\Emby.Drawing.Skia\Emby.Drawing.Skia.csproj" />
  47. <ProjectReference Include="..\Emby.Drawing.ImageMagick\Emby.Drawing.ImageMagick.csproj" />
  48. <ProjectReference Include="..\SocketHttpListener\SocketHttpListener.csproj" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <EmbeddedResource Include="Resources/Configuration/*" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <Compile Include="..\SharedVersion.cs" />
  55. </ItemGroup>
  56. </Project>