MediaBrowser.Controller.csproj 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <Authors>Jellyfin Contributors</Authors>
  4. <PackageId>Jellyfin.Controller</PackageId>
  5. <PackageLicenseUrl>https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</PackageLicenseUrl>
  6. <RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
  10. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <Compile Include="..\SharedVersion.cs" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <Reference Include="Microsoft.AspNetCore.Http.Extensions, Version=2.2.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60">
  17. <HintPath>..\..\..\..\..\usr\local\share\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.http.extensions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Extensions.dll</HintPath>
  18. </Reference>
  19. </ItemGroup>
  20. <PropertyGroup>
  21. <TargetFramework>netstandard2.0</TargetFramework>
  22. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  23. </PropertyGroup>
  24. </Project>