aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Jellyfin.Api.csproj
diff options
context:
space:
mode:
authorClaus Vium <clausvium@gmail.com>2019-11-23 16:31:02 +0100
committerClaus Vium <clausvium@gmail.com>2019-11-23 16:31:02 +0100
commit3f651de24c76f9980fac690e51fa93b3d1163f72 (patch)
treebf6dea80f4a76c2f3e7147918ee56460b0cdc181 /Jellyfin.Api/Jellyfin.Api.csproj
parent05b7e2280843f25e48c2300b135f171aee0a54ea (diff)
Add authentication and remove versioning
Diffstat (limited to 'Jellyfin.Api/Jellyfin.Api.csproj')
-rw-r--r--Jellyfin.Api/Jellyfin.Api.csproj34
1 files changed, 16 insertions, 18 deletions
diff --git a/Jellyfin.Api/Jellyfin.Api.csproj b/Jellyfin.Api/Jellyfin.Api.csproj
index 7a7e49e30..647004cb6 100644
--- a/Jellyfin.Api/Jellyfin.Api.csproj
+++ b/Jellyfin.Api/Jellyfin.Api.csproj
@@ -1,18 +1,16 @@
-<Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <OutputType>Library</OutputType>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
- <PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning" Version="3.1.3" />
- <PackageReference Include="NETStandard.Library" Version="2.0.3" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
- </ItemGroup>
-
-</Project>
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>netstandard2.1</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.0" />
+ <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
+ </ItemGroup>
+
+</Project>