jellyfin/Emby.Naming/Emby.Naming.csproj

60 lines
2.5 KiB
XML
Raw Normal View History

2021-08-12 18:33:18 -04:00
<Project Sdk="Microsoft.NET.Sdk">
2018-09-12 13:26:21 -04:00
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
<PropertyGroup>
<ProjectGuid>{E5AF7B26-2239-4CE0-B477-0AA2018EDAA2}</ProjectGuid>
</PropertyGroup>
2019-01-19 09:01:16 -05:00
<PropertyGroup>
2023-10-23 17:36:56 -04:00
<TargetFramework>net8.0</TargetFramework>
2019-01-19 09:01:16 -05:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
2019-11-04 15:57:57 -05:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
2021-12-24 12:28:27 -05:00
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<CodeAnalysisTreatWarningsAsErrors>false</CodeAnalysisTreatWarningsAsErrors>
2021-12-24 12:28:27 -05:00
</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>
</PropertyGroup>
2019-01-19 09:01:16 -05:00
<ItemGroup>
2021-05-16 08:54:36 -04:00
<Compile Include="../SharedVersion.cs" />
2019-01-19 09:01:16 -05:00
</ItemGroup>
2019-01-13 14:45:51 -05:00
2019-01-19 09:01:16 -05:00
<ItemGroup>
2021-05-16 08:54:36 -04:00
<ProjectReference Include="../MediaBrowser.Common/MediaBrowser.Common.csproj" />
<ProjectReference Include="../MediaBrowser.Model/MediaBrowser.Model.csproj" />
2019-01-19 09:01:16 -05:00
</ItemGroup>
2019-01-14 16:02:51 -05:00
<PropertyGroup>
<Authors>Jellyfin Contributors</Authors>
<PackageId>Jellyfin.Naming</PackageId>
2022-07-13 23:00:23 -04:00
<VersionPrefix>10.9.0</VersionPrefix>
2019-01-14 16:02:51 -05:00
<RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
2020-08-26 09:39:01 -04:00
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
2019-05-10 14:37:42 -04:00
</PropertyGroup>
<!-- Code Analyzers -->
2019-05-10 14:37:42 -04:00
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
<PackageReference Include="IDisposableAnalyzers">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="SerilogAnalyzer" PrivateAssets="All" />
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="All" />
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" PrivateAssets="All" />
2019-05-10 14:37:42 -04:00
</ItemGroup>
</Project>