|
|
|
|
|
by 8note
823 days ago
|
|
How often do developers have to make the same changes to their dotnet new templates? How often will they have to make changes as a result of the central team making an update to the central template that breaks their setup? When somebody needs to use an escape hatch, how painful are you gonna make it to keep that escape hatch running? |
|
Dotnet new templateName
Dotnet runs that template and out comes dotnet code.
That is what we have built and we consume internal libraries we created in order to keep people updated with changes.
But at the end of the day, it’s just dotnet code, don’t like what or how we did something? Go ahead and change it. It’s just regular code.
It’s similar to running “helm create {name}” or npm run create-react-app, but developed internally.
https://github.com/dotnet/templating/wiki/Available-template...