Я создаю файл .template.config / template.json в каталоге решений и запускаю эту команду. Dotnet new --install {Solution Path}, он создает шаблон, но когда я создаю новый проект из этого шаблона, он только изменяет имя web проект не изменил название других проектов.
файл template.json
<code><pre>{
"$schema": "http://json.schemastore.org/template",
"author": "Muhammad Ali",
"classifications": [ "NcoreReferences" ],
"identity": "NcoreReferences",
"name": "NcoreReferences",
"shortName": "NcoreReferences",
"tags": {
"language": "C#",
"type":"solution"
},
"version":"1.0.0.0",
"preferNameDirectory":true,
"symbols": {
"projectname": {
"type": "parameter",
"dataType": "string",
"fileRename": "NcoreReferences",
"replaces": "NcoreReferences"
}
},
"sources": [
{
"modifiers": [
{
"exclude": ["packages/**",".vs/**"]
}
]
}
] }