Added FileBased app Template#567
Open
licon4812 wants to merge 2 commits into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new dotnet new project template intended for WinUI Reactor “file-based” apps, mirroring the existing C# WinUI template but using Directory.Build.props / Directory.Packages.props + a single App.cs entrypoint.
Changes:
- Introduces the
WinUiApp-FileBasedtemplate definition and dotnet CLI host configuration. - Adds file-based app build/package configuration via
Directory.Build.propsandDirectory.Packages.props. - Provides a starter
App.csand default launch profiles (incl. a devtools profile).
Show a summary per file
| File | Description |
|---|---|
| tools/Templates/templates/WinUiApp-FileBased/Properties/launchSettings.json | Launch profiles for default run and devtools run. |
| tools/Templates/templates/WinUiApp-FileBased/Directory.Packages.props | Package references + Debug-only devtools package/host option. |
| tools/Templates/templates/WinUiApp-FileBased/Directory.Build.props | WinUI/WindowsAppSDK build configuration for file-based app builds. |
| tools/Templates/templates/WinUiApp-FileBased/App.cs | Starter Reactor app with optional top-level program. |
| tools/Templates/templates/WinUiApp-FileBased/.template.config/template.json | Template metadata, parameters, outputs, and post-actions. |
| tools/Templates/templates/WinUiApp-FileBased/.template.config/dotnetcli.host.json | dotnet CLI parameter mappings for the template. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 6/6 changed files
- Comments generated: 2
codemonkeychris
requested changes
Jun 11, 2026
codemonkeychris
left a comment
Collaborator
There was a problem hiding this comment.
please address the CR feedback
Author
Resolved CR feedback |
codemonkeychris
approved these changes
Jun 11, 2026
codemonkeychris
requested changes
Jun 12, 2026
codemonkeychris
left a comment
Collaborator
There was a problem hiding this comment.
rebase on main to address the vuln dependency issue
de829bc to
c3f6c1c
Compare
Author
Done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Added template for File-Based Apps. Due to the nature of Reactor UI, File Based apps are an excellent usecase, and being able to generate one from the template is a good thing
Risk / breaking changes
No API Changes purely added a new template