We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dotnet tool install --global dotnet-script dotnet script init
I don't know why the script init doesn't detect the installation in my case, because changing launch.json to this works:
script init
launch.json
{ "version": "0.2.0", "configurations": [ { "name": ".NET Script Debug", "type": "coreclr", "request": "launch", "program": "${env:HOME}/.dotnet/tools/dotnet-script", "args": [ "${file}" ], "cwd": "${workspaceRoot}", "stopAtEntry": false } ] }
The text was updated successfully, but these errors were encountered:
Should be fixed at #753, right?
Sorry, something went wrong.
yes - however this has not been released to Nuget yet.
No branches or pull requests
I don't know why the
script init
doesn't detect the installation in my case, because changinglaunch.json
to this works:The text was updated successfully, but these errors were encountered: