Skip to content

Commit 094bfbf

Browse files
authored
Update README.md
1 parent 0b1bebf commit 094bfbf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ AutoMapper.MapperConfiguration
7373

7474
## Debugging
7575

76-
`dotnet-script` supports debugging C# scripts. In order to do that we'll need to be able to invoke `dotnet-script.dll` directly - rather than via `dotnet` CLI.
76+
`dotnet-script` supports debugging C# scripts. In order to do that we'll need to be able to invoke `dotnet-script.dll` directly - rather than via `dotnet` CLI. You will also need to have [C# Extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp) installed.
7777

7878
Normally, the nuget package with the `dotnet-script.dll` will be globally located on your machine (on Windows) in `C:\Users\{user}\.nuget\packages\` folder let's refer to that location as `<NUGET_ROOT>`.
7979

@@ -91,8 +91,8 @@ To debug a script using Visual Studio Code, create a folder `.vscode` next to yo
9191
"args": [
9292
"exec",
9393
"--additionalprobingpath", "<NUGET_ROOT>",
94-
"--depsfile", "<NUGET_ROOT>\\.tools\\Dotnet.Script\\0.7.0-beta\\lib\\netcoreapp1.0\\Dotnet.Script.deps.json",
95-
"<NUGET_ROOT>\\Dotnet.Script\\0.7.0-beta\\lib\\netcoreapp1.0\\dotnet-script.dll",
94+
"--depsfile", "<NUGET_ROOT>\\.tools\\Dotnet.Script\\0.9.0-beta\\lib\\netcoreapp1.0\\Dotnet.Script.deps.json",
95+
"<NUGET_ROOT>\\Dotnet.Script\\0.9.0-beta\\lib\\netcoreapp1.0\\dotnet-script.dll",
9696
"${workspaceRoot}\\foo.csx",
9797
"-d"],
9898
"cwd": "${workspaceRoot}",

0 commit comments

Comments
 (0)