mirror of https://github.com/Jackett/Jackett
22 lines
543 B
XML
22 lines
543 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<OutputType>WinExe</OutputType>
|
|
<AssemblyName>JackettService</AssemblyName>
|
|
<ApplicationIcon>jackett.ico</ApplicationIcon>
|
|
<NoWarn />
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
<WarningsAsErrors />
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Jackett.Common\Jackett.Common.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="jackett.ico" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|