Post action: opening main files in editor #153
Merged
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.
This adds primary outputs and post actions to open the most relevant files in editor when the template is used in VS or Rider.
Depending on the template type it will open the following files after creating a project:
app: MainWindows.axaml, MainWindow.axaml.(cs|fs) (this is the same as the WPF templates)
app-mvvm: MainWindow.axaml, MainWindowViewModel.(cs|fs)
xplat: MainView.axaml, MainViewModel.(cs|fs)
Note: somehow it does not open the .axaml files for F# projects on Rider, on VS everything works fine.
The WPF and the other dotnet sdk project templates have besides this open in editor action also the nuget restore action.
Should we add this as well? (They also have a
--no-restore
parameter for CLI)Off topic: I noticed Rider does not support custom template parameters at all currently, so choosing avalonia version or MVVM toolkit does not work (only target framework is supported)