Reputation: 1467
I'm having issues getting CSharp code to run in visual studio using CodeRunner. Anyone know how to fix this error in the attached image?
I ALREADY know how to execute the prg using the terminal & DOTNET RUN command but I really would like to use coderunner.
Upvotes: 3
Views: 1367
Reputation: 195
Well this is an old thread but i just figure out the answer so i think it may help someone else
you need to add
"code-runner.executorMap": { "csharp": "scriptcs -script" }
at your settings.json
in debian at least and i think in most linux based systems you will find it at ~/.config/Code/User
Upvotes: 2