Fix symbol replacement in Blazor templates
This commit is contained in:
parent
a1700bc162
commit
6c4a7c309d
|
|
@ -21,6 +21,7 @@
|
||||||
<GeneratedContentProperties>
|
<GeneratedContentProperties>
|
||||||
IncludeCustomRestoreSources=$(IncludeCustomRestoreSourcesValue);
|
IncludeCustomRestoreSources=$(IncludeCustomRestoreSourcesValue);
|
||||||
TemplateBlazorVersion=$(PackageVersion);
|
TemplateBlazorVersion=$(PackageVersion);
|
||||||
|
TemplateComponentsVersion=$(ComponentsPackageVersion);
|
||||||
RepositoryCommit=$(RepositoryCommit);
|
RepositoryCommit=$(RepositoryCommit);
|
||||||
</GeneratedContentProperties>
|
</GeneratedContentProperties>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
|
||||||
|
|
@ -83,6 +83,13 @@
|
||||||
"replaces": "$(TemplateBlazorPackageVersion)",
|
"replaces": "$(TemplateBlazorPackageVersion)",
|
||||||
"defaultValue": "${TemplateBlazorVersion}"
|
"defaultValue": "${TemplateBlazorVersion}"
|
||||||
},
|
},
|
||||||
|
"TemplateComponentsVersionSymbol": {
|
||||||
|
"type": "parameter",
|
||||||
|
"datatype": "string",
|
||||||
|
"description": "Specifies which version of Components packages to use.",
|
||||||
|
"replaces": "$(TemplateComponentsPackageVersion)",
|
||||||
|
"defaultValue": "${TemplateComponentsVersion}"
|
||||||
|
},
|
||||||
"skipRestore": {
|
"skipRestore": {
|
||||||
"type": "parameter",
|
"type": "parameter",
|
||||||
"datatype": "bool",
|
"datatype": "bool",
|
||||||
|
|
|
||||||
|
|
@ -56,6 +56,13 @@
|
||||||
"replaces": "$(TemplateBlazorPackageVersion)",
|
"replaces": "$(TemplateBlazorPackageVersion)",
|
||||||
"defaultValue": "${TemplateBlazorVersion}"
|
"defaultValue": "${TemplateBlazorVersion}"
|
||||||
},
|
},
|
||||||
|
"TemplateComponentsVersionSymbol": {
|
||||||
|
"type": "parameter",
|
||||||
|
"datatype": "string",
|
||||||
|
"description": "Specifies which version of Components packages to use.",
|
||||||
|
"replaces": "$(TemplateComponentsPackageVersion)",
|
||||||
|
"defaultValue": "${TemplateComponentsVersion}"
|
||||||
|
},
|
||||||
"skipRestore": {
|
"skipRestore": {
|
||||||
"type": "parameter",
|
"type": "parameter",
|
||||||
"datatype": "bool",
|
"datatype": "bool",
|
||||||
|
|
|
||||||
|
|
@ -56,6 +56,13 @@
|
||||||
"replaces": "$(TemplateBlazorPackageVersion)",
|
"replaces": "$(TemplateBlazorPackageVersion)",
|
||||||
"defaultValue": "${TemplateBlazorVersion}"
|
"defaultValue": "${TemplateBlazorVersion}"
|
||||||
},
|
},
|
||||||
|
"TemplateComponentsVersionSymbol": {
|
||||||
|
"type": "parameter",
|
||||||
|
"datatype": "string",
|
||||||
|
"description": "Specifies which version of Components packages to use.",
|
||||||
|
"replaces": "$(TemplateComponentsPackageVersion)",
|
||||||
|
"defaultValue": "${TemplateComponentsVersion}"
|
||||||
|
},
|
||||||
"skipRestore": {
|
"skipRestore": {
|
||||||
"type": "parameter",
|
"type": "parameter",
|
||||||
"datatype": "bool",
|
"datatype": "bool",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue