mirror of
https://github.com/ZuneDev/Xune.git
synced 2026-07-27 13:13:10 -07:00
20 lines
849 B
XML
20 lines
849 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType Condition="'$(Configuration)'=='Release'">WinExe</OutputType>
|
||
|
|
<OutputType Condition="'$(Configuration)'=='Debug'">Exe</OutputType>
|
||
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||
|
|
<UseWPF>true</UseWPF>
|
||
|
|
</PropertyGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="SkiaSharp.Views.Uno" Version="2.80.3" />
|
||
|
|
<PackageReference Include="Uno.UI.Skia.Wpf" Version="3.8.11" />
|
||
|
|
<PackageReference Include="Uno.UI.RemoteControl" Version="3.8.11" Condition="'$(Configuration)'=='Debug'" />
|
||
|
|
</ItemGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<Content Include="Assets\Fonts\uno-fluentui-assets.ttf" />
|
||
|
|
</ItemGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\Xune.Uno.Skia.WPF\Xune.Uno.Skia.WPF.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|