doc/articles/uno-publishing-windows-unpackaged.md
This guide will show you how to create an unpackaged app using Windows App SDK.
[!IMPORTANT] Building your app requires using the msbuild command (
dotnet buildis not compatible as of WinAppSDK 1.5). [!NOTE] Uno Platform also supports building apps for using thenet10.0-desktoptarget framework, using Uno Platform's own Skia Desktop implementation.
Packaging the app without a code signature allows the app to be installed on a machine without installing the signer's certificate. This guide portion is derived from the official Windows App SDK documentation.
To publish your app:
Navigate to the folder of the app's .csproj (Building at the solution level is not supported)
Build your app using the following command:
msbuild /r /t:publish /p:TargetFramework=net10.0-windows10.0.26100 /p:Configuration=Release /p:Platform=x64 /p:PublishDir=c:\temp\myoutput
In order to build for additional platforms, change the Platform parameter to x86 or arm64 to create additional MSIX files.
Publishing your app can be done through different means:
[yourapp].exe