doc/articles/uno-development/debugging-templates.md
The uno platform project contains multiple types of templates:
dotnet new templatesSome of the templates are reusing the same sources. For example the full solution template is defined in the vsix project, and building the dotnet new template creates a transformed version of the vsix template.
dotnet new new templates use the dotnet/templating engine, and are located in the src/SolutionTemplate/Uno.ProjectTemplates.Dotnet folder.
To make modifications to those templates and test the result:
Uno.ProjectTemplates.Dotnet project, select PackUno.ProjectTemplates.Dotnet.255.255.255.255.nupkg filedotnet new -i C:\[your_path]\bin\Debug\Uno.ProjectTemplates.Dotnet.255.255.255.255.nupkgdotnet new unoapp -o MyTestUnoApp01Ensure that the application runs properly by building it in Visual Studio and running it on all targets.
Once you're done with debugging the templates, you can go back to the official templates with:
dotnet new -i Uno.ProjectTemplates.Dotnet