Featured image of post How to Run an Unpackaged .NET MAUI App on Windows

How to Run an Unpackaged .NET MAUI App on Windows

Learn how to run your .NET MAUI app on Windows without packaging. A simple csproj tweak for faster development and testing cycles.

Add configuration WindowsPackageType>None</WindowsPackageType> under the PropertyGroup attribute of the project file csproj

1
2
3
<PropertyGroup>
    <WindowsPackageType>None</WindowsPackageType>
</PropertyGroup>

Reference:https://github.com/ligf/Examples/blob/master/MauiApp/MauiApp.csproj

Built with Hugo
Theme Stack designed by Jimmy