2019-01-13 13:10:15 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2020-04-21 13:21:09 -07:00
|
|
|
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<ProjectGuid>{17E1F4E6-8ABD-4FE5-9ECF-43D4B6087BA2}</ProjectGuid>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
<PropertyGroup>
|
|
|
|
<Authors>Jellyfin Contributors</Authors>
|
|
|
|
<PackageId>Jellyfin.Controller</PackageId>
|
2022-07-13 20:00:23 -07:00
|
|
|
<VersionPrefix>10.9.0</VersionPrefix>
|
2019-01-19 07:01:16 -07:00
|
|
|
<RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
|
2020-08-26 06:39:01 -07:00
|
|
|
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
|
2019-01-19 07:01:16 -07:00
|
|
|
</PropertyGroup>
|
2019-01-07 08:58:33 -07:00
|
|
|
|
2021-12-24 10:28:27 -07:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2022-12-05 05:54:28 -07:00
|
|
|
<CodeAnalysisTreatWarningsAsErrors>false</CodeAnalysisTreatWarningsAsErrors>
|
2021-12-24 10:28:27 -07:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-10-26 13:53:53 -07:00
|
|
|
<ItemGroup>
|
2022-12-07 08:56:32 -07:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="7.0.0" />
|
2023-01-10 07:50:35 -07:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.2" />
|
2021-11-15 05:01:08 -07:00
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
|
2022-12-07 08:56:32 -07:00
|
|
|
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="7.0.0" />
|
2019-10-26 13:53:53 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
<ItemGroup>
|
2021-05-23 15:30:41 -07: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 07:01:16 -07:00
|
|
|
</ItemGroup>
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
<ItemGroup>
|
|
|
|
<Compile Include="..\SharedVersion.cs" />
|
|
|
|
</ItemGroup>
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
<PropertyGroup>
|
2022-10-13 08:55:20 -07:00
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2019-01-19 07:01:16 -07:00
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-08-11 07:52:37 -07:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2020-09-02 13:42:00 -07: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 07:01:16 -07:00
|
|
|
</PropertyGroup>
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2020-02-03 18:10:44 -07:00
|
|
|
<!-- Code Analyzers-->
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2022-01-22 08:48:31 -07:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.3">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
</PackageReference>
|
2020-02-03 18:10:44 -07:00
|
|
|
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
|
2022-05-09 06:24:09 -07:00
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" PrivateAssets="All" />
|
2020-02-03 18:10:44 -07:00
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
</Project>
|