2020-05-02 22:32:22 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-02-14 14:11:46 +00:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2020-05-02 22:32:22 +00:00
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2021-12-24 17:28:27 +00:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-05-02 22:32:22 +00:00
|
|
|
<!-- Code analysers-->
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
|
2021-12-24 17:28:27 +00:00
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.376" PrivateAssets="All" />
|
2020-05-02 22:32:22 +00:00
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Include="..\SharedVersion.cs" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2020-05-14 21:13:45 +00:00
|
|
|
<ItemGroup>
|
2021-12-13 12:00:51 +00:00
|
|
|
<PackageReference Include="System.Linq.Async" Version="5.1.0" />
|
2021-12-15 06:47:07 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.1" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.1" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.1">
|
2020-05-17 17:33:38 +00:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2021-12-15 06:47:07 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.1">
|
2020-05-14 21:13:45 +00:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2020-05-02 22:32:22 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Jellyfin.Data\Jellyfin.Data.csproj" />
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|