-
Notifications
You must be signed in to change notification settings - Fork 676
/
package.json
3669 lines (3669 loc) · 170 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "csharp",
"publisher": "ms-dotnettools",
"version": "1.23.9",
"description": "C# for Visual Studio Code (powered by OmniSharp).",
"displayName": "C#",
"author": "Microsoft Corporation",
"license": "SEE LICENSE IN RuntimeLicenses/license.txt",
"icon": "images/csharpIcon.png",
"preview": false,
"bugs": {
"url": "https://github.com/OmniSharp/omnisharp-vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/OmniSharp/omnisharp-vscode.git"
},
"categories": [
"Debuggers",
"Programming Languages",
"Linters",
"Snippets"
],
"keywords": [
"multi-root ready",
".NET",
"ASP.NET",
".NET Core",
"dotnet"
],
"defaults": {
"omniSharp": "1.37.5",
"razor": "6.0.0-alpha.1.20575.5"
},
"main": "./dist/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./ && webpack --mode production",
"compile": "tsc -p ./ && gulp tslint",
"compileDev": "tsc -p ./ && gulp tslint && webpack --mode development",
"watch": "tsc -watch -p ./",
"tdd": "mocha --config ./.mocharc.jsonc --watch --watch-extensions ts test/unitTests/**/*.test.ts*",
"test": "gulp test",
"test:unit": "gulp test:unit",
"test:feature": "gulp test:feature",
"test:integration": "gulp test:integration",
"test:integration:singleCsproj": "gulp test:integration:singleCsproj",
"test:integration:slnWithCsproj": "gulp test:integration:slnWithCsproj",
"test:release": "mocha --config ./.mocharc.jsonc test/releaseTests/**/*.test.ts",
"test:artifacts": "mocha --config ./.mocharc.jsonc test/artifactTests/**/*.test.ts",
"postinstall": "node ./node_modules/vscode/bin/install",
"cov:instrument": "gulp cov:instrument",
"cov:merge": "gulp cov:merge",
"cov:merge-html": "gulp cov:merge-html",
"cov:report": "npm-run-all cov:report:integration cov:report:unit",
"cov:report:unit": "gulp cov:report:unit",
"cov:report:integration": "gulp cov:report:integration",
"unpackage:vsix": "gulp vsix:release:unpackage",
"gulp": "gulp"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"async-file": "2.0.2",
"fs-extra": "7.0.1",
"http-proxy-agent": "2.1.0",
"https-proxy-agent": "^3.0.1",
"jsonc-parser": "3.0.0",
"microsoft.aspnetcore.razor.vscode": "https://download.visualstudio.microsoft.com/download/pr/a1999a11-02b4-49cf-9716-bdf7fb656b0b/0c405b000bd7d75cee8b9f8020e136a3/microsoft.aspnetcore.razor.vscode-6.0.0-alpha.1.20575.5.tgz",
"mkdirp": "^1.0.3",
"node-filter-async": "1.1.1",
"node-machine-id": "1.1.12",
"remove-bom-buffer": "3.0.0",
"request-light": "0.2.4",
"rxjs": "6.4.0",
"semver": "5.6.0",
"stream": "0.0.2",
"strip-bom": "3.0.0",
"tmp": "0.0.33",
"vscode-debugprotocol": "1.33.0",
"vscode-extension-telemetry": "0.1.6",
"vscode-languageserver-protocol": "^3.15.3",
"yauzl": "2.10.0"
},
"devDependencies": {
"@types/archiver": "2.1.2",
"@types/chai": "4.1.7",
"@types/chai-arrays": "1.0.2",
"@types/chai-as-promised": "7.1.0",
"@types/chai-string": "1.4.1",
"@types/del": "3.0.1",
"@types/fs-extra": "5.0.4",
"@types/gulp": "4.0.5",
"@types/gulp-mocha": "0.0.32",
"@types/istanbul": "0.4.30",
"@types/minimist": "1.2.0",
"@types/mkdirp": "0.5.2",
"@types/mocha": "5.2.5",
"@types/node": "10.12.24",
"@types/semver": "5.5.0",
"@types/tmp": "0.0.33",
"@types/unzipper": "^0.9.1",
"@types/vscode": "1.33.0",
"@types/yauzl": "2.9.1",
"archiver": "3.0.0",
"async-child-process": "1.1.1",
"async-shelljs": "0.1.2",
"chai": "4.2.0",
"chai-arrays": "2.0.0",
"chai-as-promised": "7.1.1",
"chai-fs": "2.0.0",
"chai-string": "1.5.0",
"codecov": "3.7.1",
"copyfiles": "^2.3.0",
"cross-env": "5.2.0",
"del": "3.0.0",
"find-versions": "3.0.0",
"get-port": "4.1.0",
"glob-promise": "3.4.0",
"gulp": "4.0.0",
"gulp-mocha": "6.0.0",
"gulp-tslint": "8.1.3",
"istanbul": "0.4.5",
"ltcdr": "2.2.1",
"mocha": "^8.1.1",
"mocha-typescript": "1.1.17",
"mock-fs": "4.8.0",
"mock-http-server": "0.2.0",
"natives": "1.1.6",
"npm-run-all": "4.1.5",
"nyc": "^15.0.0",
"plist": "3.0.1",
"remap-istanbul": "0.13.0",
"source-map-support": "0.5.10",
"ts-loader": "5.3.3",
"ts-node": "8.0.2",
"tslint": "5.12.1",
"tslint-microsoft-contrib": "6.0.0",
"tslint-no-unused-expression-chai": "0.1.4",
"typescript": "^3.8.3",
"unzipper": "0.9.10",
"vsce": "1.57.0",
"vscode": "1.1.36",
"webpack": "4.29.3",
"webpack-cli": "^3.3.11"
},
"runtimeDependencies": [
{
"id": "OmniSharp",
"description": "OmniSharp for Windows (.NET 4.6 / x86)",
"url": "https://download.visualstudio.microsoft.com/download/pr/0e89e19c-1caf-4a2b-ba7a-8d06125007af/22bb1231685f5f68a89b73cf08df40c4/omnisharp-win-x86-1.37.5.zip",
"fallbackUrl": "https://roslynomnisharp.blob.core.windows.net/releases/1.37.5/omnisharp-win-x86-1.37.5.zip",
"installPath": ".omnisharp/1.37.5",
"platforms": [
"win32"
],
"architectures": [
"x86"
],
"installTestPath": "./.omnisharp/1.37.5/OmniSharp.exe",
"platformId": "win-x86",
"integrity": "2307DA13F2659D2E67E306F3343BAA562A50BAC2F579E3629195AA0774143527"
},
{
"id": "OmniSharp",
"description": "OmniSharp for Windows (.NET 4.6 / x64)",
"url": "https://download.visualstudio.microsoft.com/download/pr/0e89e19c-1caf-4a2b-ba7a-8d06125007af/f9be9c63d86127bc9f241b3b122e348f/omnisharp-win-x64-1.37.5.zip",
"fallbackUrl": "https://roslynomnisharp.blob.core.windows.net/releases/1.37.5/omnisharp-win-x64-1.37.5.zip",
"installPath": ".omnisharp/1.37.5",
"platforms": [
"win32"
],
"architectures": [
"x86_64"
],
"installTestPath": "./.omnisharp/1.37.5/OmniSharp.exe",
"platformId": "win-x64",
"integrity": "821522506EDCAD3C040FB8F5CE6BF0DF460B3FA374E00F357F8F34A76F2B189E"
},
{
"id": "OmniSharp",
"description": "OmniSharp for OSX",
"url": "https://download.visualstudio.microsoft.com/download/pr/0e89e19c-1caf-4a2b-ba7a-8d06125007af/b507c74622aa2033ae7cb82b7210c092/omnisharp-osx-1.37.5.zip",
"fallbackUrl": "https://roslynomnisharp.blob.core.windows.net/releases/1.37.5/omnisharp-osx-1.37.5.zip",
"installPath": ".omnisharp/1.37.5",
"platforms": [
"darwin"
],
"binaries": [
"./mono.osx",
"./run"
],
"installTestPath": "./.omnisharp/1.37.5/run",
"platformId": "osx",
"integrity": "E0018E8BF404E1E529598767FEB4F8CAC8963C56C189C6C73F8EFA82A4CD2941"
},
{
"id": "OmniSharp",
"description": "OmniSharp for Linux (x86)",
"url": "https://download.visualstudio.microsoft.com/download/pr/0e89e19c-1caf-4a2b-ba7a-8d06125007af/79e4e8bfbdbd97ada9e3fb3dec0ce2e8/omnisharp-linux-x86-1.37.5.zip",
"fallbackUrl": "https://roslynomnisharp.blob.core.windows.net/releases/1.37.5/omnisharp-linux-x86-1.37.5.zip",
"installPath": ".omnisharp/1.37.5",
"platforms": [
"linux"
],
"architectures": [
"x86",
"i686"
],
"binaries": [
"./mono.linux-x86",
"./run"
],
"installTestPath": "./.omnisharp/1.37.5/run",
"platformId": "linux-x86",
"integrity": "0D132A446EBA8ABB1C0F47F4DEB26F17BBA0ABFB426F18D9102572E6AA3D7516"
},
{
"id": "OmniSharp",
"description": "OmniSharp for Linux (x64)",
"url": "https://download.visualstudio.microsoft.com/download/pr/0e89e19c-1caf-4a2b-ba7a-8d06125007af/99886ba505421d4ab31f91331aa7034d/omnisharp-linux-x64-1.37.5.zip",
"fallbackUrl": "https://roslynomnisharp.blob.core.windows.net/releases/1.37.5/omnisharp-linux-x64-1.37.5.zip",
"installPath": ".omnisharp/1.37.5",
"platforms": [
"linux"
],
"architectures": [
"x86_64"
],
"binaries": [
"./mono.linux-x86_64",
"./run"
],
"installTestPath": "./.omnisharp/1.37.5/run",
"platformId": "linux-x64",
"integrity": "AEC355E4EC7A01A1D0E37FED46C4AC1B667824F368A09223926EE9046202052A"
},
{
"id": "Debugger",
"description": ".NET Core Debugger (Windows / x64)",
"url": "https://download.visualstudio.microsoft.com/download/pr/6f481c2a-74a8-41cc-a115-f2d059242062/365cc39c192ac1c4a1aa2d2609a0f73e/coreclr-debug-win7-x64.zip",
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-23-8/coreclr-debug-win7-x64.zip",
"installPath": ".debugger",
"platforms": [
"win32"
],
"architectures": [
"x86_64"
],
"installTestPath": "./.debugger/vsdbg-ui.exe",
"integrity": "63E5824D172950C9008C7495B427AF9958DCD6797DCB7D3C40A7609AB6212FBE"
},
{
"id": "Debugger",
"description": ".NET Core Debugger (macOS / x64)",
"url": "https://download.visualstudio.microsoft.com/download/pr/6f481c2a-74a8-41cc-a115-f2d059242062/96e3d82b95ff1375347fedf0f5c7d4e7/coreclr-debug-osx-x64.zip",
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-23-8/coreclr-debug-osx-x64.zip",
"installPath": ".debugger",
"platforms": [
"darwin"
],
"architectures": [
"x86_64",
"arm64"
],
"binaries": [
"./vsdbg-ui",
"./vsdbg"
],
"installTestPath": "./.debugger/vsdbg-ui",
"integrity": "6BAA9A20DAA71018B9912A3E2A48C52A273ADC2E70F7101C12F688F397AD16D8"
},
{
"id": "Debugger",
"description": ".NET Core Debugger (linux / ARM)",
"url": "https://download.visualstudio.microsoft.com/download/pr/6f481c2a-74a8-41cc-a115-f2d059242062/611cc0b6d632f0ac9c34cdd90c2ead14/coreclr-debug-linux-arm.zip",
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-23-8/coreclr-debug-linux-arm.zip",
"installPath": ".debugger",
"platforms": [
"linux"
],
"architectures": [
"arm"
],
"binaries": [
"./vsdbg-ui",
"./vsdbg"
],
"installTestPath": "./.debugger/vsdbg-ui",
"integrity": "BADB653292805A8BBF3FB309E4605D2AC012C8C4194EB59E57F7CA0AFC6E12E6"
},
{
"id": "Debugger",
"description": ".NET Core Debugger (linux / ARM64)",
"url": "https://download.visualstudio.microsoft.com/download/pr/6f481c2a-74a8-41cc-a115-f2d059242062/69683da716ddf4152b25182475f302fb/coreclr-debug-linux-arm64.zip",
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-23-8/coreclr-debug-linux-arm64.zip",
"installPath": ".debugger",
"platforms": [
"linux"
],
"architectures": [
"arm64"
],
"binaries": [
"./vsdbg-ui",
"./vsdbg"
],
"installTestPath": "./.debugger/vsdbg-ui",
"integrity": "2873B87519FC9F4D3E449108D861FFC24CC167ED089EB76C2000CDBC3A5297FD"
},
{
"id": "Debugger",
"description": ".NET Core Debugger (linux / x64)",
"url": "https://download.visualstudio.microsoft.com/download/pr/6f481c2a-74a8-41cc-a115-f2d059242062/0f8dab3f81d6f8cba8359c7513c80728/coreclr-debug-linux-x64.zip",
"fallbackUrl": "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-23-8/coreclr-debug-linux-x64.zip",
"installPath": ".debugger",
"platforms": [
"linux"
],
"architectures": [
"x86_64"
],
"binaries": [
"./vsdbg-ui",
"./vsdbg"
],
"installTestPath": "./.debugger/vsdbg-ui",
"integrity": "8CBC9D8739329DEE92B679DF0BA5DB8607CA8413686E06B5F3D9B87049411C12"
},
{
"id": "Razor",
"description": "Razor Language Server (Windows / x64)",
"url": "https://download.visualstudio.microsoft.com/download/pr/a1999a11-02b4-49cf-9716-bdf7fb656b0b/c2388ccf719057b1b8d29aab27173206/razorlanguageserver-win-x64-6.0.0-alpha.1.20575.5.zip",
"fallbackUrl": "https://razorvscodetest.blob.core.windows.net/languageserver/RazorLanguageServer-win-x64-6.0.0-alpha.1.20575.5.zip",
"installPath": ".razor",
"platforms": [
"win32"
],
"architectures": [
"x86_64"
]
},
{
"id": "Razor",
"description": "Razor Language Server (Windows / x86)",
"url": "https://download.visualstudio.microsoft.com/download/pr/a1999a11-02b4-49cf-9716-bdf7fb656b0b/64c771fec994a60d2e131a642e96dba0/razorlanguageserver-win-x86-6.0.0-alpha.1.20575.5.zip",
"fallbackUrl": "https://razorvscodetest.blob.core.windows.net/languageserver/RazorLanguageServer-win-x86-6.0.0-alpha.1.20575.5.zip",
"installPath": ".razor",
"platforms": [
"win32"
],
"architectures": [
"x86"
]
},
{
"id": "Razor",
"description": "Razor Language Server (Linux / x64)",
"url": "https://download.visualstudio.microsoft.com/download/pr/a1999a11-02b4-49cf-9716-bdf7fb656b0b/2f31e7f61004f5c924695b9e1b8cd16e/razorlanguageserver-linux-x64-6.0.0-alpha.1.20575.5.zip",
"fallbackUrl": "https://razorvscodetest.blob.core.windows.net/languageserver/RazorLanguageServer-linux-x64-6.0.0-alpha.1.20575.5.zip",
"installPath": ".razor",
"platforms": [
"linux"
],
"architectures": [
"x86_64"
],
"binaries": [
"./rzls"
]
},
{
"id": "Razor",
"description": "Razor Language Server (macOS / x64)",
"url": "https://download.visualstudio.microsoft.com/download/pr/a1999a11-02b4-49cf-9716-bdf7fb656b0b/e7ae75595f3cc9153e3316affcdaf051/razorlanguageserver-osx-x64-6.0.0-alpha.1.20575.5.zip",
"fallbackUrl": "https://razorvscodetest.blob.core.windows.net/languageserver/RazorLanguageServer-osx-x64-6.0.0-alpha.1.20575.5.zip",
"installPath": ".razor",
"platforms": [
"darwin"
],
"architectures": [
"x86_64"
],
"binaries": [
"./rzls"
]
}
],
"engines": {
"vscode": "^1.44.0"
},
"activationEvents": [
"onDebugInitialConfigurations",
"onDebugResolve:blazorwasm",
"onDebugResolve:coreclr",
"onDebugResolve:clr",
"onLanguage:csharp",
"onLanguage:aspnetcorerazor",
"onCommand:o.restart",
"onCommand:o.pickProjectAndStart",
"onCommand:o.showOutput",
"onCommand:dotnet.restore.project",
"onCommand:dotnet.restore.all",
"onCommand:dotnet.generateAssets",
"onCommand:csharp.downloadDebugger",
"onCommand:csharp.listProcess",
"onCommand:csharp.listRemoteProcess",
"onCommand:omnisharp.registerLanguageMiddleware",
"workspaceContains:project.json",
"workspaceContains:*.csproj",
"workspaceContains:*.sln",
"workspaceContains:*.csx",
"workspaceContains:*.cake",
"workspaceContains:**/*.csproj",
"workspaceContains:**/*.sln",
"workspaceContains:**/*.csx",
"workspaceContains:**/*.cake"
],
"contributes": {
"themes": [
{
"label": "Visual Studio 2019 Dark",
"uiTheme": "vs-dark",
"path": "./themes/vs2019_dark.json"
},
{
"label": "Visual Studio 2019 Light",
"uiTheme": "vs",
"path": "./themes/vs2019_light.json"
}
],
"configuration": {
"title": "C# configuration",
"properties": {
"csharp.format.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable default C# formatter (requires restart)."
},
"csharp.suppressDotnetInstallWarning": {
"type": "boolean",
"default": false,
"description": "Suppress the warning that the .NET Core SDK is not on the path."
},
"csharp.unitTestDebuggingOptions": {
"type": "object",
"description": "Options to use with the debugger when launching for unit test debugging. Any launch.json option is valid here.",
"default": {},
"properties": {
"sourceFileMap": {
"type": "object",
"description": "Optional source file mappings passed to the debug engine. Example: '{ \"C:\\foo\":\"/home/user/foo\" }'",
"additionalProperties": {
"type": "string"
},
"default": {
"<insert-source-path-here>": "<insert-target-path-here>"
}
},
"justMyCode": {
"type": "boolean",
"description": "Optional flag to only show user code.",
"default": true
},
"requireExactSource": {
"type": "boolean",
"description": "Optional flag to require current source code to match the pdb.",
"default": true
},
"enableStepFiltering": {
"type": "boolean",
"description": "Optional flag to enable stepping over Properties and Operators.",
"default": true
},
"logging": {
"description": "Optional flags to determine what types of messages should be logged to the output window.",
"type": "object",
"required": [],
"default": {},
"properties": {
"exceptions": {
"type": "boolean",
"description": "Optional flag to determine whether exception messages should be logged to the output window.",
"default": true
},
"moduleLoad": {
"type": "boolean",
"description": "Optional flag to determine whether module load events should be logged to the output window.",
"default": true
},
"programOutput": {
"type": "boolean",
"description": "Optional flag to determine whether program output should be logged to the output window when not using an external console.",
"default": true
},
"engineLogging": {
"type": "boolean",
"description": "Optional flag to determine whether diagnostic engine logs should be logged to the output window.",
"default": false
},
"browserStdOut": {
"type": "boolean",
"description": "Optional flag to determine if stdout text from the launching the web browser should be logged to the output window.",
"default": true
},
"elapsedTiming": {
"type": "boolean",
"description": "If true, engine logging will include `adapterElapsedTime` and `engineElapsedTime` properties to indicate the amount of time, in microseconds, that a request took.",
"default": false
},
"threadExit": {
"type": "boolean",
"description": "Controls if a message is logged when a thread in the target process exits. Default: `false`.",
"default": false
},
"processExit": {
"type": "boolean",
"description": "Controls if a message is logged when the target process exits, or debugging is stopped. Default: `true`.",
"default": true
}
}
},
"suppressJITOptimizations": {
"type": "boolean",
"description": "If true, when an optimized module (.dll compiled in the Release configuration) loads in the target process, the debugger will ask the Just-In-Time compiler to generate code with optimizations disabled. For more information: https://aka.ms/VSCode-CS-LaunchJson#suppress-jit-optimizations",
"default": false
},
"symbolOptions": {
"description": "Options to control how symbols (.pdb files) are found and loaded.",
"default": {
"searchPaths": [],
"searchMicrosoftSymbolServer": false,
"searchNuGetOrgSymbolServer": false
},
"type": "object",
"properties": {
"searchPaths": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of symbol server URLs (example: http\u200b://MyExampleSymbolServer) or directories (example: /build/symbols) to search for .pdb files. These directories will be searched in addition to the default locations -- next to the module and the path where the pdb was originally dropped to.",
"default": []
},
"searchMicrosoftSymbolServer": {
"type": "boolean",
"description": "If 'true' the Microsoft Symbol server (https\u200b://msdl.microsoft.com\u200b/download/symbols) is added to the symbols search path. If unspecified, this option defaults to 'false'.",
"default": false
},
"searchNuGetOrgSymbolServer": {
"type": "boolean",
"description": "If 'true' the NuGet.org symbol server (https\u200b://symbols.nuget.org\u200b/download/symbols) is added to the symbols search path. If unspecified, this option defaults to 'false'.",
"default": false
},
"cachePath": {
"type": "string",
"description": "Directory where symbols downloaded from symbol servers should be cached. If unspecified, on Windows the debugger will default to %TEMP%\\SymbolCache, and on Linux and macOS the debugger will default to ~/.dotnet/symbolcache.",
"default": "~/.dotnet/symbolcache"
},
"moduleFilter": {
"description": "Provides options to control which modules (.dll files) the debugger will attempt to load symbols (.pdb files) for.",
"default": {
"mode": "loadAllButExcluded",
"excludedModules": []
},
"type": "object",
"required": [
"mode"
],
"properties": {
"mode": {
"type": "string",
"enum": [
"loadAllButExcluded",
"loadOnlyIncluded"
],
"enumDescriptions": [
"Load symbols for all modules unless the module is in the 'excludedModules' array.",
"Do not attempt to load symbols for ANY module unless it is in the 'includedModules' array, or it is included through the 'includeSymbolsNextToModules' setting."
],
"description": "Controls which of the two basic operating modes the module filter operates in.",
"default": "loadAllButExcluded"
},
"excludedModules": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of modules that the debugger should NOT load symbols for. Wildcards (example: MyCompany.*.dll) are supported.\n\nThis property is ignored unless 'mode' is set to 'loadAllButExcluded'.",
"default": []
},
"includedModules": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of modules that the debugger should load symbols for. Wildcards (example: MyCompany.*.dll) are supported.\n\nThis property is ignored unless 'mode' is set to 'loadOnlyIncluded'.",
"default": [
"MyExampleModule.dll"
]
},
"includeSymbolsNextToModules": {
"type": "boolean",
"description": "If true, for any module NOT in the 'includedModules' array, the debugger will still check next to the module itself and the launching executable, but it will not check paths on the symbol search list. This option defaults to 'true'.\n\nThis property is ignored unless 'mode' is set to 'loadOnlyIncluded'.",
"default": true
}
}
}
}
},
"sourceLinkOptions": {
"description": "Options to control how Source Link connects to web servers. For more information: https://aka.ms/VSCode-CS-LaunchJson#source-link-options",
"default": {
"*": {
"enabled": true
}
},
"type": "object",
"additionalItems": {
"type": "object",
"properties": {
"enabled": {
"title": "boolean",
"description": "Is Source Link enabled for this URL? If unspecified, this option defaults to 'true'.",
"default": "true"
}
}
}
},
"allowFastEvaluate": {
"type": "boolean",
"description": "When true (the default state), the debugger will attempt faster evaluation by simulating execution of simple properties and methods.",
"default": true
},
"type": {
"type": "string",
"enum": [
"coreclr",
"clr"
],
"description": "Type type of code to debug. Can be either 'coreclr' for .NET Core debugging, or 'clr' for Desktop .NET Framework. 'clr' only works on Windows as the Desktop framework is Windows-only.",
"default": "coreclr"
},
"debugServer": {
"type": "number",
"description": "For debug extension development only: if a port is specified VS Code tries to connect to a debug adapter running in server mode",
"default": 4711
}
}
},
"csharp.suppressDotnetRestoreNotification": {
"type": "boolean",
"default": false,
"description": "Suppress the notification window to perform a 'dotnet restore' when dependencies can't be resolved."
},
"csharp.suppressProjectJsonWarning": {
"type": "boolean",
"default": false,
"description": "Suppress the warning that project.json is no longer a supported project format for .NET Core applications"
},
"csharp.suppressBuildAssetsNotification": {
"type": "boolean",
"default": false,
"description": "Suppress the notification window to add missing assets to build or debug the application."
},
"csharp.suppressHiddenDiagnostics": {
"type": "boolean",
"default": true,
"description": "Suppress 'hidden' diagnostics (such as 'unnecessary using directives') from appearing in the editor or the Problems pane."
},
"csharp.referencesCodeLens.enabled": {
"type": "boolean",
"default": true,
"description": "Specifies whether the references CodeLens should be shown."
},
"csharp.testsCodeLens.enabled": {
"type": "boolean",
"default": true,
"description": "Specifies whether the run and debug test CodeLens should be shown."
},
"csharp.maxProjectFileCountForDiagnosticAnalysis": {
"type": "number",
"default": 1000,
"description": "Specifies the maximum number of files for which diagnostics are reported for the whole workspace. If this limit is exceeded, diagnostics will be shown for currently opened files only. Specify 0 or less to disable the limit completely."
},
"csharp.semanticHighlighting.enabled": {
"type": "boolean",
"default": false,
"description": "Enable/disable Semantic Highlighting for C# files (Razor files currently unsupported). Defaults to false. Close open files for changes to take effect.",
"scope": "window"
},
"csharp.showOmnisharpLogOnError": {
"type": "boolean",
"default": true,
"description": "Shows the OmniSharp log in the Output pane when OmniSharp reports an error."
},
"omnisharp.path": {
"type": [
"string",
"null"
],
"default": null,
"scope": "machine",
"description": "Specifies the path to OmniSharp. When left empty the OmniSharp version pinned to the C# Extension is used. This can be the absolute path to an OmniSharp executable, a specific version number, or \"latest\". If a version number or \"latest\" is specified, the appropriate version of OmniSharp will be downloaded on your behalf. Setting \"latest\" is an opt-in into latest beta releases of OmniSharp."
},
"omnisharp.useGlobalMono": {
"type": "string",
"default": "auto",
"scope": "machine",
"enum": [
"auto",
"always",
"never"
],
"enumDescriptions": [
"Automatically launch OmniSharp with internal \"mono\", since \"mono\" 6.12.0 does not support .NET Core 3.1.40x or .NET 5 SDKs.",
"Always launch OmniSharp with \"mono\". If version 6.4.0 or greater is not available on the PATH, an error will be printed.",
"Never launch OmniSharp on a globally-installed Mono."
],
"description": "Launch OmniSharp with the globally-installed Mono. If set to \"always\", \"mono\" version 6.4.0 or greater must be available on the PATH. If set to \"auto\", OmniSharp will be launched with \"mono\" if version 6.4.0 or greater is available on the PATH."
},
"omnisharp.monoPath": {
"type": [
"string",
"null"
],
"default": null,
"scope": "machine",
"description": "Specifies the path to a mono installation to use when \"useGlobalMono\" is set to \"always\" or \"auto\", instead of the default system one."
},
"omnisharp.waitForDebugger": {
"type": "boolean",
"default": false,
"description": "Pass the --debug flag when launching the OmniSharp server to allow a debugger to be attached."
},
"omnisharp.loggingLevel": {
"type": "string",
"default": "information",
"enum": [
"trace",
"debug",
"information",
"warning",
"error",
"critical"
],
"description": "Specifies the level of logging output from the OmniSharp server."
},
"omnisharp.autoStart": {
"type": "boolean",
"default": true,
"description": "Specifies whether the OmniSharp server will be automatically started or not. If false, OmniSharp can be started with the 'Restart OmniSharp' command"
},
"omnisharp.projectLoadTimeout": {
"type": "number",
"default": 60,
"description": "The time Visual Studio Code will wait for the OmniSharp server to start. Time is expressed in seconds."
},
"omnisharp.maxProjectResults": {
"type": "number",
"default": 250,
"description": "The maximum number of projects to be shown in the 'Select Project' dropdown (maximum 250)."
},
"omnisharp.defaultLaunchSolution": {
"type": "string",
"default": null,
"description": "The name of the default solution used at start up if the repo has multiple solutions. e.g.'MyAwesomeSolution.sln'. Default value is `null` which will cause the first in alphabetical order to be chosen."
},
"omnisharp.useEditorFormattingSettings": {
"type": "boolean",
"default": true,
"description": "Specifes whether OmniSharp should use VS Code editor settings for C# code formatting (use of tabs, indentation size)."
},
"omnisharp.minFindSymbolsFilterLength": {
"type": "number",
"default": 0,
"description": "The minimum number of characters to enter before 'Go to Symbol in Workspace' operation shows any results."
},
"omnisharp.maxFindSymbolsItems": {
"type": "number",
"default": 1000,
"description": "The maximum number of items that 'Go to Symbol in Workspace' operation can show. The limit is applied only when a positive number is specified here."
},
"omnisharp.disableMSBuildDiagnosticWarning": {
"type": "boolean",
"default": false,
"description": "Specifies whether notifications should be shown if OmniSharp encounters warnings or errors loading a project. Note that these warnings/errors are always emitted to the OmniSharp log"
},
"omnisharp.enableMsBuildLoadProjectsOnDemand": {
"type": "boolean",
"default": false,
"description": "If true, MSBuild project system will only load projects for files that were opened in the editor. This setting is useful for big C# codebases and allows for faster initialization of code navigation features only for projects that are relevant to code that is being edited. With this setting enabled OmniSharp may load fewer projects and may thus display incomplete reference lists for symbols."
},
"omnisharp.enableRoslynAnalyzers": {
"type": "boolean",
"default": false,
"description": "Enables support for roslyn analyzers, code fixes and rulesets."
},
"omnisharp.enableEditorConfigSupport": {
"type": "boolean",
"default": true,
"description": "Enables support for reading code style, naming convention and analyzer settings from .editorconfig."
},
"omnisharp.enableDecompilationSupport": {
"type": "boolean",
"default": false,
"scope": "machine",
"description": "Enables support for decompiling external references instead of viewing metadata."
},
"omnisharp.enableImportCompletion": {
"type": "boolean",
"default": false,
"description": "Enables support for showing unimported types and unimported extension methods in completion lists. When committed, the appropriate using directive will be added at the top of the current file. This option can have a negative impact on initial completion responsiveness, particularly for the first few completion sessions after opening a solution."
},
"omnisharp.organizeImportsOnFormat": {
"type": "boolean",
"default": false,
"description": "Specifies whether 'using' directives should be grouped and sorted during document formatting."
},
"razor.plugin.path": {
"type": [
"string",
"null"
],
"default": null,
"scope": "machine",
"description": "Overrides the path to the Razor plugin dll."
},
"razor.devmode": {
"type": "boolean",
"default": false,
"description": "Forces the omnisharp-vscode extension to run in a mode that enables local Razor.VSCode deving."
},
"razor.disabled": {
"type": "boolean",
"default": false,
"description": "Specifies whether to disable Razor language features."
},
"razor.languageServer.directory": {
"type": [
"string",
"null"
],
"default": null,
"scope": "machine",
"description": "Overrides the path to the Razor Language Server directory."
},
"razor.languageServer.debug": {
"type": "boolean",
"default": false,
"description": "Specifies whether to wait for debug attach when launching the language server."
},
"razor.trace": {
"type": "string",
"default": "Off",
"enum": [
"Off",
"Messages",
"Verbose"
],
"enumDescriptions": [
"Does not log messages from the Razor extension",
"Logs only some messages from the Razor extension",
"Logs all messages from the Razor extension"
],
"description": "Specifies whether to output all messages [Verbose], some messages [Messages] or not at all [Off]."
},
"razor.format.enable": {
"type": "boolean",
"scope": "window",
"default": true,
"description": "Enable/disable default Razor formatter."
},
"razor.disableBlazorDebugPrompt": {
"type": "boolean",
"default": false,
"description": "Disable Blazor WebAssembly's debug requirements notification."
}
}
},
"jsonValidation": [
{
"fileMatch": [
"appsettings.json",
"appsettings.*.json"
],
"url": "https://json.schemastore.org/appsettings"
},
{
"fileMatch": "project.json",
"url": "http://json.schemastore.org/project"
},
{
"fileMatch": "omnisharp.json",
"url": "http://json.schemastore.org/omnisharp"
},
{
"fileMatch": "global.json",
"url": "http://json.schemastore.org/global"
}
],
"commands": [
{
"command": "o.restart",
"title": "Restart OmniSharp",
"category": "OmniSharp"
},
{
"command": "o.pickProjectAndStart",
"title": "Select Project",
"category": "OmniSharp"
},
{
"command": "o.fixAll.solution",
"title": "Fix all occurrences of a code issue within solution",
"category": "OmniSharp"
},
{
"command": "o.fixAll.project",
"title": "Fix all occurrences of a code issue within project",
"category": "OmniSharp"
},
{
"command": "o.fixAll.document",
"title": "Fix all occurrences of a code issue within document",
"category": "OmniSharp"
},
{
"command": "o.reanalyze.allProjects",
"title": "Analyze all projects",
"category": "OmniSharp"
},
{
"command": "o.reanalyze.currentProject",
"title": "Analyze current project",
"category": "OmniSharp"
},
{
"command": "dotnet.generateAssets",
"title": "Generate Assets for Build and Debug",
"category": ".NET"
},
{
"command": "dotnet.restore.project",
"title": "Restore Project",
"category": ".NET"
},
{
"command": "dotnet.restore.all",
"title": "Restore All Projects",
"category": ".NET"
},
{
"command": "csharp.downloadDebugger",
"title": "Download .NET Core Debugger",
"category": "Debug"
},
{
"command": "csharp.listProcess",
"title": "List process for attach",
"category": "CSharp"
},
{
"command": "csharp.listRemoteProcess",
"title": "List processes on remote connection for attach",
"category": "CSharp"
},
{
"command": "csharp.reportIssue",
"title": "Report an issue",
"category": "CSharp"
},
{
"command": "csharp.showDecompilationTerms",
"title": "Show the decompiler terms agreement",
"category": "CSharp"
},
{
"command": "extension.showRazorCSharpWindow",
"title": "Show Razor CSharp",
"category": "Razor"
},
{
"command": "extension.showRazorHtmlWindow",
"title": "Show Razor Html",
"category": "Razor"
},