https://github.com/himeyama/winuiexample
Example of a WinUI3 app and creating an installer.
https://github.com/himeyama/winuiexample
csharp dotnet winui winui3
Last synced: 4 months ago
JSON representation
Example of a WinUI3 app and creating an installer.
- Host: GitHub
- URL: https://github.com/himeyama/winuiexample
- Owner: Himeyama
- License: mit
- Created: 2023-06-10T18:42:00.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-05-29T19:07:37.000Z (about 1 year ago)
- Last Synced: 2025-06-16T06:47:31.054Z (about 1 year ago)
- Topics: csharp, dotnet, winui, winui3
- Language: C#
- Homepage:
- Size: 1.31 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.en.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# WinUIExample
[日本語](README.md) | English
Example of a WinUI3 app and creating an installer.

## Changing the Project Name
If the project name is MyApp, use:
```ps1
.\setup --name MyApp
```
## Development
Commands are summarized in `.\dev.ps1`.
### Running the App
```ps1
.\dev run
```
## Creating the Installer
Creates the installer install.exe.
```ps1
.\dev pack
```
Running Install.exe launches the installer. You can uninstall it from the Control Panel or Settings.
### Publishing the App
```ps1
.\dev publish
```
### Packaging the App into a ZIP File
```ps1
.\dev zip
```
### Installation
> [!NOTE]
> Since it is not registered in the registry, it cannot be uninstalled from the Control Panel or Settings.
```ps1
.\dev install
```
### Uninstallation
```ps1
.\dev uninstall
```