Files

48 lines
1.7 KiB
XML
Raw Permalink Normal View History

2024-06-08 00:12:42 -07:00
<Project Sdk="Uno.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0-desktop;net9.0-windows10.0.26100</TargetFrameworks>
2024-06-08 00:12:42 -07:00
<OutputType>Exe</OutputType>
<UnoSingleProject>true</UnoSingleProject>
<VelopackPushOnPublish>true</VelopackPushOnPublish>
<VelopackPackId>Velopack.UnoSample</VelopackPackId>
<!-- Display name -->
<ApplicationTitle>UnoSample</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>com.velopack.UnoSample</ApplicationId>
<!-- Versions -->
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>
<!-- Package Publisher -->
<ApplicationPublisher>Velopack</ApplicationPublisher>
<!-- Package Description -->
<Description>UnoSample powered by Uno Platform.</Description>
2024-06-08 00:12:42 -07:00
<!--
If you encounter this error message:
error NETSDK1148: A referenced assembly was compiled using a newer version of Microsoft.Windows.SDK.NET.dll.
Please update to a newer .NET SDK in order to reference this assembly.
This means that the two packages below must be aligned with the "build" version number of
the "Microsoft.Windows.SDK.BuildTools" package above, and the "revision" version number
must be the highest found in https://www.nuget.org/packages/Microsoft.Windows.SDK.NET.Ref.
-->
<!-- <WindowsSdkPackageVersion>10.0.22621.28</WindowsSdkPackageVersion> -->
<!--
UnoFeatures let's you quickly add and manage implicit package references based on the features you want to use.
https://aka.platform.uno/singleproject-features
-->
<UnoFeatures>
Mvvm;
</UnoFeatures>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Velopack" />
</ItemGroup>
</Project>