2019-05-10 18:37:42 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-09-12 17:26:21 +00:00
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
</PropertyGroup>
|
2019-01-13 19:45:51 +00:00
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
|
<ItemGroup>
|
2019-01-20 00:12:44 +00:00
|
|
|
|
<Compile Include="..\SharedVersion.cs" />
|
2019-01-19 14:01:16 +00:00
|
|
|
|
</ItemGroup>
|
2019-01-13 19:45:51 +00:00
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
|
<ItemGroup>
|
2019-03-31 13:24:18 +00:00
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
|
2019-01-19 14:01:16 +00:00
|
|
|
|
</ItemGroup>
|
2019-01-06 20:50:43 +00:00
|
|
|
|
|
2019-01-14 21:02:51 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Authors>Jellyfin Contributors</Authors>
|
|
|
|
|
<PackageId>Jellyfin.Naming</PackageId>
|
|
|
|
|
<PackageLicenseUrl>https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</PackageLicenseUrl>
|
|
|
|
|
<RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
|
2019-05-10 18:37:42 +00:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<!-- Code analysers-->
|
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2019-08-11 13:11:53 +00:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.4" />
|
2019-05-10 18:37:42 +00:00
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" />
|
|
|
|
|
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
<CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
|
2019-01-14 21:02:51 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-12-12 20:17:48 +00:00
|
|
|
|
</Project>
|