Closed
Description
Any thoughts on a way to avoid the version locking that happens in using the init
er? Example:
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Script Debug",
"type": "coreclr",
"request": "launch",
"program": "dotnet",
"args": [
"exec",
"C:/Users/t/.dotnet/tools/.store/dotnet-script/0.28.0/dotnet-script/0.28.0/tools/netcoreapp2.1/any/dotnet-script.dll",
"${file}"
],
"cwd": "${workspaceRoot}",
"stopAtEntry": true
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}
Given a tree of folders of little .csx
tools, updating dotnet-script
will be a PITA given all of these explicit references to 0.28.0
. I tried a few things, some of them worked, but nothing that worked AND still had debugging working in vscode.
thoughts? Think there's any fanciness that can be done to make this reference dynamic, or any reason why you wouldn't want to?
Metadata
Metadata
Assignees
Labels
No labels