mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-10 14:10:18 -05:00
This will make it easier to move dependency registration to a system without having to new up all the services first. Moved the primitives to an IConfiguration which is much easier to inject.
56 lines
2.9 KiB
XML
56 lines
2.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Emby.Naming\Emby.Naming.csproj" />
|
|
<ProjectReference Include="..\Emby.Notifications\Emby.Notifications.csproj" />
|
|
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
|
|
<ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj" />
|
|
<ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
|
|
<ProjectReference Include="..\MediaBrowser.Providers\MediaBrowser.Providers.csproj" />
|
|
<ProjectReference Include="..\MediaBrowser.WebDashboard\MediaBrowser.WebDashboard.csproj" />
|
|
<ProjectReference Include="..\MediaBrowser.XbmcMetadata\MediaBrowser.XbmcMetadata.csproj" />
|
|
<ProjectReference Include="..\SocketHttpListener\SocketHttpListener.csproj" />
|
|
<ProjectReference Include="..\Emby.Dlna\Emby.Dlna.csproj" />
|
|
<ProjectReference Include="..\Mono.Nat\Mono.Nat.csproj" />
|
|
<ProjectReference Include="..\MediaBrowser.Api\MediaBrowser.Api.csproj" />
|
|
<ProjectReference Include="..\MediaBrowser.LocalMetadata\MediaBrowser.LocalMetadata.csproj" />
|
|
<ProjectReference Include="..\OpenSubtitlesHandler\OpenSubtitlesHandler.csproj" />
|
|
<ProjectReference Include="..\Emby.Photos\Emby.Photos.csproj" />
|
|
<ProjectReference Include="..\Emby.Drawing\Emby.Drawing.csproj" />
|
|
<ProjectReference Include="..\Emby.XmlTv\Emby.XmlTv\Emby.XmlTv.csproj" />
|
|
<ProjectReference Include="..\MediaBrowser.MediaEncoding\MediaBrowser.MediaEncoding.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.2.0" />
|
|
<PackageReference Include="ServiceStack.Text.Core" Version="5.4.0" />
|
|
<PackageReference Include="sharpcompress" Version="0.22.0" />
|
|
<PackageReference Include="SQLitePCL.pretty.netstandard" Version="1.0.0" />
|
|
<PackageReference Include="UTF.Unknown" Version="1.0.0-beta1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\SharedVersion.cs" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Localization\iso6392.txt" />
|
|
<EmbeddedResource Include="Localization\countries.json" />
|
|
<EmbeddedResource Include="Localization\Core\*.json" />
|
|
<EmbeddedResource Include="Localization\Ratings\*.csv" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.Extensions.Configuration.Abstractions, Version=2.2.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60">
|
|
<HintPath>..\..\..\.nuget\packages\microsoft.extensions.configuration.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Abstractions.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|