jellyfin/Emby.Naming/Emby.Naming.csproj

55 lines
2.2 KiB
XML
Raw Normal View History

2019-05-10 11:37:42 -07:00
<Project Sdk="Microsoft.NET.Sdk">
2018-09-12 10:26:21 -07:00
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
<PropertyGroup>
<ProjectGuid>{E5AF7B26-2239-4CE0-B477-0AA2018EDAA2}</ProjectGuid>
</PropertyGroup>
2019-01-19 07:01:16 -07:00
<PropertyGroup>
2020-11-10 09:52:34 -07:00
<TargetFramework>net5.0</TargetFramework>
2019-01-19 07:01:16 -07:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
2019-11-04 13:57:57 -07:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2020-11-01 02:47:31 -07:00
<Nullable>enable</Nullable>
2021-07-05 15:01:33 -07:00
<CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
</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 07:01:16 -07:00
<ItemGroup>
2021-05-16 05:54:36 -07:00
<Compile Include="../SharedVersion.cs" />
2019-01-19 07:01:16 -07:00
</ItemGroup>
2019-01-13 12:45:51 -07:00
2019-01-19 07:01:16 -07:00
<ItemGroup>
2021-05-16 05:54:36 -07:00
<ProjectReference Include="../MediaBrowser.Common/MediaBrowser.Common.csproj" />
<ProjectReference Include="../MediaBrowser.Model/MediaBrowser.Model.csproj" />
2019-01-19 07:01:16 -07:00
</ItemGroup>
2019-01-14 14:02:51 -07:00
<PropertyGroup>
<Authors>Jellyfin Contributors</Authors>
<PackageId>Jellyfin.Naming</PackageId>
<VersionPrefix>10.8.0</VersionPrefix>
2019-01-14 14:02:51 -07:00
<RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
2020-08-26 06:39:01 -07:00
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
2019-05-10 11:37:42 -07:00
</PropertyGroup>
<ItemGroup>
2020-11-01 03:19:22 -07:00
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<!-- Code Analyzers-->
2019-05-10 11:37:42 -07:00
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
2019-11-08 11:59:48 -07:00
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
2019-05-10 11:37:42 -07:00
</ItemGroup>
</Project>