diff options
| author | William Taylor <me@willtaylor.info> | 2019-02-08 09:13:58 +0000 |
|---|---|---|
| committer | William Taylor <me@willtaylor.info> | 2019-02-17 14:08:52 +0000 |
| commit | 0d5fbcb031d551d3ee858b3d047fcc6f5ad61a06 (patch) | |
| tree | 16f0afa95491ca93be4b3dd6ea4269ed4b8b5527 /Emby.Server.Implementations/Emby.Server.Implementations.csproj | |
| parent | 25c2267a89af5c2e82774c638cdad0defcc894b5 (diff) | |
Removed primitives from services in Program.cs
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.
Diffstat (limited to 'Emby.Server.Implementations/Emby.Server.Implementations.csproj')
| -rw-r--r-- | Emby.Server.Implementations/Emby.Server.Implementations.csproj | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Emby.Server.Implementations.csproj b/Emby.Server.Implementations/Emby.Server.Implementations.csproj index 6bf776f53..16258c767 100644 --- a/Emby.Server.Implementations/Emby.Server.Implementations.csproj +++ b/Emby.Server.Implementations/Emby.Server.Implementations.csproj @@ -46,4 +46,10 @@ <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> |
