-
The world of Dotnet Templates
I have long been using templates for dotnet new and of course Visual Studio. So I’ve started down the road of creating my own templates… or a least trying to understand how to create these, Now creating templates for dotnet new and especially for Visual Studio has never been a simple task. But let us try. The first matter is understanding where templates live. For the most part these are based on your user for your PC. This found by using a PS command: join-path -Path $env:USERPROFILE -ChildPath .templateengine This will return C:\Users\<your user name>\.templateengine And as you guess it, there is a .templateengine directory in your users directory. What…


