You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,17 @@
4
4
* There currently is no completion support for package references in csproj files. ([#1156](https://github.com/OmniSharp/omnisharp-vscode/issues/1156))
5
5
* .NET Core SDK 2.0-preview2 is not yet supported. ([#1495](https://github.com/OmniSharp/omnisharp-vscode/issues/1495))
6
6
7
+
## 1.11.0 _(Not Yet Released)_
8
+
9
+
#### Completion List
10
+
11
+
* No longer trigger completion when a '<' character is typed. ([#1521](https://github.com/OmniSharp/omnisharp-vscode/issues/1521), PR: [#1530](https://github.com/OmniSharp/omnisharp-vscode/pull/1530))
12
+
* Completion list no longer triggers on space in contexts where a lambda expression could be typed. ([#1524](https://github.com/OmniSharp/omnisharp-vscode/issues/1524), PR: [#1548](https://github.com/OmniSharp/omnisharp-vscode/pull/1548))
13
+
14
+
#### Other Updates and Fixes
15
+
16
+
* Allow the ".NET: Restore Packages" command to run on projects targeting full framework. ([#1507](https://github.com/OmniSharp/omnisharp-vscode/pull/1507), PR: [#1545](https://github.com/OmniSharp/omnisharp-vscode/pull/1545)) _(contributed by [@adamhartford](https://github.com/adamhartford))_
17
+
7
18
## 1.10.0 (May 25, 2017)
8
19
9
20
#### Completion List
@@ -40,6 +51,7 @@
40
51
* Added `csharp.unitTestDebugingOptions` setting to pass launch.json-style debug options (example: `justMyCode`) when unit test debugging.
41
52
42
53
#### Debugger
54
+
43
55
* Resolves crash on OSX when the target process loads an embedded PDB ([#1456](https://github.com/OmniSharp/omnisharp-vscode/issues/1456)). This commonly affects users trying to debug XUnit tests.
44
56
* Enhanced exception peek display to provide additional exception properties.
"description": "If the current Linux distribution is not recognized, this option can be used to tell the debugger what version can be used. After changing this option, close VS Code, remove the debugger folder (~/.vscode/extensions/ms-vscode.csharp-<ver>/.debugger) if it has already downloaded, and restart VS Code."
362
369
},
363
-
"csharp.unitTestDebugingOptions": {
370
+
"csharp.unitTestDebuggingOptions": {
364
371
"type": "object",
365
372
"description": "Options to use with the debugger when launching for unit test debugging. Any launch.json option is valid here.",
366
373
"default": {},
@@ -401,7 +408,7 @@
401
408
"debugServer": {
402
409
"type": "number",
403
410
"description": "For debug extension development only: if a port is specified VS Code tries to connect to a debug adapter running in server mode",
404
-
"default": 4711
411
+
"default": 4711
405
412
},
406
413
"logging": {
407
414
"description": "Optional flags to determine what types of messages should be logged to the output window.",
@@ -444,9 +451,9 @@
444
451
"description": "Suppress the notification window to perform a 'dotnet restore' when dependencies can't be resolved."
445
452
},
446
453
"csharp.suppressHiddenDiagnostics": {
447
-
"type": "boolean",
448
-
"default": true,
449
-
"description": "Suppress 'hidden' diagnostics (such as 'unnecessary using directives') from appearing in the editor or the Problems pane."
454
+
"type": "boolean",
455
+
"default": true,
456
+
"description": "Suppress 'hidden' diagnostics (such as 'unnecessary using directives') from appearing in the editor or the Problems pane."
Copy file name to clipboardExpand all lines: src/tools/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,14 +3,14 @@ OptionsSchema.json defines the type for Launch/Attach options.
3
3
4
4
# GenerateOptionsSchema
5
5
If there are any modifications to the OptionsSchema.json file. Please run `gulp generateOptionsSchema` at the repo root.
6
-
This will call GenerateOptionsSchema and update the package.json file.
6
+
This will call GenerateOptionsSchema and update the package.json file.
7
7
8
8
### Important notes:
9
9
10
-
1. Any manual changes to package.json's object.contributes.debuggers[0].configurationAttributes will be
10
+
1. Any manual changes to package.json's object.contributes.debuggers[0].configurationAttributes will be
11
11
replaced by this generator.
12
-
2. This does **NOT** update the schema for csharp.unitTestDebugingOptions. So if the schema change is something valuable in unit test debugging, consider updating that section of package.json (look for `"csharp.unitTestDebugingOptions"`). The schema will work even if this step is omitted, but users will not get IntelliSense help when editing the new option if this step is skipped.
12
+
2. This does **NOT** update the schema for csharp.unitTestDebuggingOptions. So if the schema change is something valuable in unit test debugging, consider updating that section of package.json (look for `"csharp.unitTestDebuggingOptions"`). The schema will work even if this step is omitted, but users will not get IntelliSense help when editing the new option if this step is skipped.
13
13
14
14
15
-
If there is any other type of options added in the future, you will need to modify the GenerateOptionsSchema function
15
+
If there is any other type of options added in the future, you will need to modify the GenerateOptionsSchema function
16
16
to have it appear in package.json. It only adds launch and attach.
0 commit comments