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: package.json
+38-1Lines changed: 38 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"name": "csharp",
3
3
"publisher": "ms-vscode",
4
-
"version": "1.3.0",
4
+
"version": "1.4.0",
5
5
"description": "C# for Visual Studio Code (powered by OmniSharp).",
6
6
"displayName": "C#",
7
7
"author": "Microsoft Corporation",
@@ -70,6 +70,43 @@
70
70
"configuration": "./csharp.configuration.json"
71
71
}
72
72
],
73
+
"configuration": {
74
+
"title": "C# configuration",
75
+
"properties": {
76
+
"csharp.suppressDotnetInstallWarning": {
77
+
"type": "boolean",
78
+
"default": false,
79
+
"description": "Suppress the warning that the .NET CLI is not on the path."
80
+
},
81
+
"omnisharp.path": {
82
+
"type": [
83
+
"string",
84
+
"null"
85
+
],
86
+
"default": null,
87
+
"description": "Specifies the full path to the OmniSharp server."
88
+
},
89
+
"omnisharp.useMono": {
90
+
"type": "boolean",
91
+
"default": false,
92
+
"description": "Launch OmniSharp with Mono."
93
+
},
94
+
"omnisharp.loggingLevel": {
95
+
"type": "string",
96
+
"default": "default",
97
+
"enum": [
98
+
"default",
99
+
"verbose"
100
+
],
101
+
"description": "Specifies the level of logging output from the OmniSharp server."
102
+
},
103
+
"omnisharp.autoStart": {
104
+
"type": "boolean",
105
+
"default": true,
106
+
"description": "Specifies whether the OmniSharp server will be automatically started or not. If false, OmniSharp can be started with the 'Restart OmniSharp' command"
0 commit comments