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
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,12 @@
15
15
* Updated Razor support
16
16
* Updated OmniSharp version (should improve stability) [dotnet/aspnetcore-tooling#20320](https://github.com/dotnet/aspnetcore/issues/20320)
17
17
* Corrected positioning for `@using` for components added by light bulb. [dotnet/aspnetcore-tooling#25019](https://github.com/dotnet/aspnetcore/issues/25019)
18
-
* Razor formatting improvements
18
+
* Mixed HTML & C# Razor formatting support ([dotnet/aspnetcore-tooling#25470](https://github.com/dotnet/aspnetcore/issues/25470)) / ([dotnet/aspnetcore-tooling#14271](https://github.com/dotnet/aspnetcore/issues/14271))
19
+
* Add using for C# Type light bulb ([dotnet/aspnetcore-tooling#18173](https://github.com/dotnet/aspnetcore/issues/18173))
20
+
* Fully qualify C# Type light bulb ([dotnet/aspnetcore-tooling#24778](https://github.com/dotnet/aspnetcore/issues/24778))
21
+
* Added support for engine logging on .NET process for Blazor WASM apps ([OmniSharp/omnisharp-vscode#4070](https://github.com/OmniSharp/omnisharp-vscode/issues/4070))
22
+
* Fixed bug in clean-up of Blazor WASM debugging session ([OmniSharp/omnisharp-vscode#4056](https://github.com/OmniSharp/omnisharp-vscode/issues/4056))
23
+
19
24
20
25
## 1.23.2 (September 3, 2020)
21
26
* Ensure that all quickinfo sections have linebreaks between them, and don't add unecessary duplicate linebreaks (PR: [omnisharp-roslyn#1900](https://github.com/OmniSharp/omnisharp-roslyn/pull/1900))
"description": "Environment variables passed to dotnet. Only valid for hosted apps."
3158
+
},
3159
+
"logging": {
3160
+
"description": "Optional flags to determine what types of messages should be logged to the output window. Applicable only for the app server of hosted Blazor WASM apps.",
3161
+
"type": "object",
3162
+
"required": [],
3163
+
"default": {},
3164
+
"properties": {
3165
+
"exceptions": {
3166
+
"type": "boolean",
3167
+
"description": "Optional flag to determine whether exception messages should be logged to the output window.",
3168
+
"default": true
3169
+
},
3170
+
"moduleLoad": {
3171
+
"type": "boolean",
3172
+
"description": "Optional flag to determine whether module load events should be logged to the output window.",
3173
+
"default": true
3174
+
},
3175
+
"programOutput": {
3176
+
"type": "boolean",
3177
+
"description": "Optional flag to determine whether program output should be logged to the output window when not using an external console.",
3178
+
"default": true
3179
+
},
3180
+
"engineLogging": {
3181
+
"type": "boolean",
3182
+
"description": "Optional flag to determine whether diagnostic engine logs should be logged to the output window.",
3183
+
"default": false
3184
+
},
3185
+
"browserStdOut": {
3186
+
"type": "boolean",
3187
+
"description": "Optional flag to determine if stdout text from the launching the web browser should be logged to the output window.",
3188
+
"default": true
3189
+
},
3190
+
"elapsedTiming": {
3191
+
"type": "boolean",
3192
+
"description": "If true, engine logging will include `adapterElapsedTime` and `engineElapsedTime` properties to indicate the amount of time, in microseconds, that a request took.",
3193
+
"default": false
3194
+
},
3195
+
"threadExit": {
3196
+
"type": "boolean",
3197
+
"description": "Controls if a message is logged when a thread in the target process exits. Default: `false`.",
3198
+
"default": false
3199
+
},
3200
+
"processExit": {
3201
+
"type": "boolean",
3202
+
"description": "Controls if a message is logged when the target process exits, or debugging is stopped. Default: `true`.",
0 commit comments