mirror of
https://github.com/ZuneDev/Xune.git
synced 2026-07-27 13:13:10 -07:00
23 lines
1.2 KiB
XML
23 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType Condition="'$(Configuration)'=='Release'">WinExe</OutputType>
|
|
<OutputType Condition="'$(Configuration)'=='Debug'">Exe</OutputType>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
</PropertyGroup>
|
|
<ItemGroup Condition="exists('..\Xune.Uno.UWP')">
|
|
<EmbeddedResource Include="..\Xune.Uno.UWP\Package.appxmanifest" LogicalName="Package.appxmanifest" />
|
|
<Content Include="..\Xune.Uno.UWP\Assets\StoreLogo.png" Link="Assets\StoreLogo.png" />
|
|
<Content Include="Assets\Fonts\uno-fluentui-assets.ttf" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<UpToDateCheckInput Include="..\..\Xune.Uno.Shared\**\*.xaml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0" />
|
|
<PackageReference Include="Uno.UI.Skia.Linux.FrameBuffer" Version="3.8.11" />
|
|
<PackageReference Include="Uno.UI.RemoteControl" Version="3.8.11" Condition="'$(Configuration)'=='Debug'" />
|
|
</ItemGroup>
|
|
<Import Project="..\..\Xune.Uno.Shared\Xune.Uno.Shared.projitems" Label="Shared" />
|
|
</Project> |