Skip to content

Commit 019520c

Browse files
Add "What's new" section and update debugger docs with new features (#396)
1 parent 2f99338 commit 019520c

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,17 @@ Please file any issues at https://github.com/OmniSharp/omnisharp-vscode/issues.
2424
### Debugging
2525
The C# extension now supports basic debugging capabilities! See http://aka.ms/vscclrdebugger for details.
2626

27+
### What's new in C# extension version 1.1
28+
29+
* Preliminary support for `dotnet test`
30+
* Fix for OmniSharp installation problems on networks with an http proxy
31+
* Debugger support for an external console
32+
* Debugger support for environment variables
33+
* Support for debugging .NET Core 1.0.0 post RC2 builds
34+
* Automatic web vs. console debugger configuration detection
35+
* Detach support
36+
* Fix expression evaluation errors when referencing assemblies which aren't currently loaded
37+
2738
### Development
2839

2940
First install:

debugger.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,23 @@ You can optionally configure a file by file mapping by providing map following t
116116

117117
"sourceFileMap": {
118118
"C:\foo":"/home/me/foo"
119-
}
119+
}
120120

121121
#####Symbol Path
122122
You can optionally provide paths to symbols following this schema:
123123

124124
"symbolPath":"[ \"/Volumes/symbols\"]"
125+
126+
#####Environment variables
127+
Environment variables may be passed to your program using this schema:
128+
129+
"env": {
130+
"myVariableName":"theValueGoesHere"
131+
}
132+
133+
#####External console (terminal) window
134+
The target process can optionally launch into a seperate console window. This is enabled by default for non-ASP.NET applications. But it can be explicitly set with:
135+
136+
"externalConsole": true
137+
138+
If your console app doesn't take console input (ex: all input comes from the command line), you may want to turn this off.

0 commit comments

Comments
 (0)