packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/readme.MD
We provide the following templates:
Before submitting a change to any of the templates please make sure to test them locally.
dotnet tool (e.g. WpfApplication-CSharp).In the command prompt of your choice run the following command:
> dotnet new install <path to the repo>\wpf\packaging\Microsoft.Dotnet.Wpf.ProjectTemplates\content\WpfApplication-CSharp
To confirm that the template is correctly installed run the following command and look for your template:
> dotnet new uninstall
Create an app from your template:
> dotnet new wpf -n testapp1
Verify the app behaves as expected.
If necessary, tweak the template and create new apps.
Once you are happy with the template, you can uninstall it to revert to the original by running the command given in dotnet new uninstall output; e.g.
> dotnet new uninstall <path to the repo>\wpf\packaging\Microsoft.Dotnet.Wpf.ProjectTemplates\content\WpfApplication-CSharp