Creating a .Net project using a custom dotnet template in Rider does not allow symbol capture
Hi, when creating a project using my custom dotnet template, it does not allow me to capture symbol values.
The template works fine from the command line, where i cane use --mySymbol format.
This is my symbols section:
"symbols": {
"applicationSlug": {
"type": "parameter",
"description": "Slugified project name - Mandatory",
"defaultValue": "replace-me",
"replaces": "$application-slug$"
},
"projectGroup": {
"type": "parameter",
"description": "The GitLab project group",
"datatype": "choice",
"choices": [
{
"choice": "fnms"
},
{
"choice": "ftth"
},
{
"choice": "shared"
},
{
"choice": "internal"
},
{
"choice": "containers"
}
],
"defaultValue": "fnms",
"replaces": "$project-group$"
},
"nodePort": {
"type": "parameter",
"datatype": "int",
"description": "Exposed node port - get a new free one, will be in the format 31xx5",
"replaces": "$node-port$"
},
"preprodNodePort": {
"type": "generated",
"generator": "evaluate",
"datatype": "int",
"parameters": {
"action": "nodePort + 1"
},
"description": "Calculates the prep-production node port",
"replaces": "$preprod-$node-port$"
}
}
Please sign in to leave a comment.
Hi,
This functionality is not supported yet: https://youtrack.jetbrains.com/issue/RIDER-16759.