mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-11-07 15:26:50 -05:00
26 lines
914 B
XML
26 lines
914 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<StartupObject>Kyoo.Host.Console.Program</StartupObject>
|
|
|
|
<Company>SDG</Company>
|
|
<Authors>Zoe Roux</Authors>
|
|
<RepositoryUrl>https://github.com/AnonymusRaccoon/Kyoo</RepositoryUrl>
|
|
<LangVersion>default</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="$(IncludeConsole) == true">
|
|
<!--
|
|
IncludeConsole is a property used when deploying the windows host. Since the runtime identifier is removed,
|
|
we specify it manually. This is kindy hacky but MsBuild does not really work well with multiples exe output
|
|
and we need multiples exe with the same shared framework (SelfContained).
|
|
-->
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Kyoo.Core/Kyoo.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|