mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-03-12 04:35:27 -07:00
* chore: updated tfm to net6 * chore: updated main packages * chore: fixed some warnings * core: Added workflow_dispatch to some of the CI pipelines [skip ci] (#4392) * chore: bump the net version * ci: use the dotnet ver task everywhere
23 lines
647 B
XML
23 lines
647 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<Configurations>Debug;Release;NonUiBuild</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="nunit" Version="3.11.0" />
|
|
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.13.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Ombi.Helpers\Ombi.Helpers.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|