mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-02-05 10:33:38 -05:00
23 lines
772 B
SYSTEMD
23 lines
772 B
SYSTEMD
<Project Sdk="Microsoft.NET.Sdk">
|
|
<!-- Project file used instead of the default csproj when the host system is windows.
|
|
This is the real csproj used to compile the project.
|
|
-->
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<RootNamespace>Kyoo.WindowsHost</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Kyoo/Kyoo.csproj" Properties="CustomRuntime=true;SelfContainedValue=$(SelfContained);RuntimeIdentifierValue=$(RuntimeIdentifier)" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="kyoo.ico"/>
|
|
<Content Include="kyoo.ico">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project> |