Open
Description
Current behavior
creating a new uno app using the vs wizard is showing the Maui getting started page beneath the wizard startup and server, while I not even included maui to this app in config
Expected behavior
should only prompt wizard and asp.net core page but not maui
Affected platforms
Server, Android, Skia, Windows (WinAppSdk)
Template Host
Visual Studio
Host OS
Windows
Template Options
see below + server
Template Version
6.0.45.45
Anything else we need to know?
Maybe the output right after creation helps for this?
Ausgabe UnoPlatform Wizard.txt
for overview of the included features
<Project Sdk="Uno.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0-android;net9.0-windows10.0.26100;net9.0-browserwasm;net9.0-desktop</TargetFrameworks>
<OutputType>Exe</OutputType>
<UnoSingleProject>true</UnoSingleProject>
<!-- Display name -->
<ApplicationTitle>UnoApp2</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>com.companyname.UnoApp2</ApplicationId>
<!-- Versions -->
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>
<!-- Package Publisher -->
<ApplicationPublisher>Sonja</ApplicationPublisher>
<!-- Package Description -->
<Description>UnoApp2 powered by Uno Platform.</Description>
<!--
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>
Material;
Dsp;
Hosting;
Toolkit;
Logging;
MVUX;
Configuration;
HttpKiota;
Serialization;
Localization;
Navigation;
ThemeService;
SkiaRenderer;
</UnoFeatures>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\UnoApp2.DataContracts\UnoApp2.DataContracts.csproj" />
</ItemGroup>
</Project>