2019-01-13 20:10:15 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2020-04-21 20:21:09 +00:00
|
|
|
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<ProjectGuid>{17E1F4E6-8ABD-4FE5-9ECF-43D4B6087BA2}</ProjectGuid>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<Authors>Jellyfin Contributors</Authors>
|
|
|
|
<PackageId>Jellyfin.Controller</PackageId>
|
2024-05-11 18:23:59 +00:00
|
|
|
<VersionPrefix>10.10.0</VersionPrefix>
|
2019-01-19 14:01:16 +00:00
|
|
|
<RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
|
2020-08-26 13:39:01 +00:00
|
|
|
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
|
2019-01-19 14:01:16 +00:00
|
|
|
</PropertyGroup>
|
2019-01-07 15:58:33 +00:00
|
|
|
|
2021-12-24 17:28:27 +00:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2022-12-05 12:54:28 +00:00
|
|
|
<CodeAnalysisTreatWarningsAsErrors>false</CodeAnalysisTreatWarningsAsErrors>
|
2021-12-24 17:28:27 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-10-26 20:53:53 +00:00
|
|
|
<ItemGroup>
|
2023-02-04 17:15:08 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
|
|
|
|
<PackageReference Include="System.Threading.Tasks.Dataflow" />
|
2019-10-26 20:53:53 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<ItemGroup>
|
2021-05-23 22:30:41 +00:00
|
|
|
<ProjectReference Include="../Emby.Naming/Emby.Naming.csproj" />
|
|
|
|
<ProjectReference Include="../MediaBrowser.Model/MediaBrowser.Model.csproj" />
|
|
|
|
<ProjectReference Include="../MediaBrowser.Common/MediaBrowser.Common.csproj" />
|
2019-01-19 14:01:16 +00:00
|
|
|
</ItemGroup>
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<Compile Include="..\SharedVersion.cs" />
|
|
|
|
</ItemGroup>
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<PropertyGroup>
|
2023-10-23 21:36:56 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2019-01-19 14:01:16 +00:00
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-08-11 14:52:37 +00:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2020-09-02 20:42:00 +00:00
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Stability)'=='Unstable'">
|
|
|
|
<!-- Include all symbols in the main nupkg until Azure Artifact Feed starts supporting ingesting NuGet symbol packages. -->
|
|
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
2019-01-19 14:01:16 +00:00
|
|
|
</PropertyGroup>
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2023-11-05 01:01:14 +00:00
|
|
|
<!-- Code Analyzers -->
|
2020-02-04 01:10:44 +00:00
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2023-11-05 01:01:14 +00:00
|
|
|
<PackageReference Include="IDisposableAnalyzers">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-02-04 17:15:08 +00:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers">
|
2022-01-22 15:48:31 +00:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-02-04 17:15:08 +00:00
|
|
|
<PackageReference Include="SerilogAnalyzer" PrivateAssets="All" />
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="All" />
|
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" PrivateAssets="All" />
|
2020-02-04 01:10:44 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
</Project>
|