|
73 | 73 | "http-proxy-agent": "2.1.0", |
74 | 74 | "https-proxy-agent": "2.2.1", |
75 | 75 | "jsonc-parser": "1.0.0", |
76 | | - "microsoft.aspnetcore.razor.vscode": "https://download.visualstudio.microsoft.com/download/pr/d426e899-f31c-4405-81ca-1d17254c3721/ce32e93d4d2f9c165fde02c82dc408ad/microsoft.aspnetcore.razor.vscode-1.0.0-alpha1-20180928.2.tgz", |
77 | 76 | "mkdirp": "0.5.1", |
78 | 77 | "node-filter-async": "0.0.4", |
79 | 78 | "open": "*", |
|
85 | 84 | "tmp": "0.0.33", |
86 | 85 | "vscode-debugprotocol": "1.6.1", |
87 | 86 | "vscode-extension-telemetry": "0.0.15", |
88 | | - "yauzl": "2.10.0" |
| 87 | + "yauzl": "2.9.1" |
89 | 88 | }, |
90 | 89 | "devDependencies": { |
91 | 90 | "@types/archiver": "2.1.1", |
|
269 | 268 | "./vsdbg" |
270 | 269 | ], |
271 | 270 | "installTestPath": "./.debugger/vsdbg-ui" |
272 | | - }, |
273 | | - { |
274 | | - "description": "Razor Language Server (Windows / x64)", |
275 | | - "url": "https://download.visualstudio.microsoft.com/download/pr/d426e899-f31c-4405-81ca-1d17254c3721/d468ed9ab48f88c032d9eed7a53c8ef4/razorlanguageserver-win-x64-1.0.0-alpha1-20180928.2.zip", |
276 | | - "installPath": ".razor", |
277 | | - "platforms": [ |
278 | | - "win32" |
279 | | - ], |
280 | | - "architectures": [ |
281 | | - "x86_64" |
282 | | - ] |
283 | | - }, |
284 | | - { |
285 | | - "description": "Razor Language Server (Windows / x86)", |
286 | | - "url": "https://download.visualstudio.microsoft.com/download/pr/d426e899-f31c-4405-81ca-1d17254c3721/99eb2f24eb073c70d5a8082bfbf5a965/razorlanguageserver-win-x86-1.0.0-alpha1-20180928.2.zip", |
287 | | - "installPath": ".razor", |
288 | | - "platforms": [ |
289 | | - "win32" |
290 | | - ], |
291 | | - "architectures": [ |
292 | | - "x86" |
293 | | - ] |
294 | | - }, |
295 | | - { |
296 | | - "description": "Razor Language Server (Linux / x64)", |
297 | | - "url": "https://download.visualstudio.microsoft.com/download/pr/d426e899-f31c-4405-81ca-1d17254c3721/775ccdd8f99150fe3175359d54e2bb20/razorlanguageserver-linux-x64-1.0.0-alpha1-20180928.2.zip", |
298 | | - "installPath": ".razor", |
299 | | - "platforms": [ |
300 | | - "linux" |
301 | | - ], |
302 | | - "architectures": [ |
303 | | - "x86_64" |
304 | | - ], |
305 | | - "binaries": [ |
306 | | - "./rzls" |
307 | | - ] |
308 | | - }, |
309 | | - { |
310 | | - "description": "Razor Language Server (macOS / x64)", |
311 | | - "url": "https://download.visualstudio.microsoft.com/download/pr/d426e899-f31c-4405-81ca-1d17254c3721/26c0909b773db807d0578c0a0eefb225/razorlanguageserver-osx-x64-1.0.0-alpha1-20180928.2.zip", |
312 | | - "installPath": ".razor", |
313 | | - "platforms": [ |
314 | | - "darwin" |
315 | | - ], |
316 | | - "architectures": [ |
317 | | - "x86_64" |
318 | | - ], |
319 | | - "binaries": [ |
320 | | - "./rzls" |
321 | | - ] |
322 | 271 | } |
323 | 272 | ], |
324 | 273 | "engines": { |
|
327 | 276 | "activationEvents": [ |
328 | 277 | "onDebug", |
329 | 278 | "onLanguage:csharp", |
330 | | - "onLanguage:aspnetcorerazor", |
331 | 279 | "onCommand:o.restart", |
332 | 280 | "onCommand:o.pickProjectAndStart", |
333 | 281 | "onCommand:o.showOutput", |
|
654 | 602 | "type": "boolean", |
655 | 603 | "default": false, |
656 | 604 | "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" |
657 | | - }, |
658 | | - "razor.disabled": { |
659 | | - "type": "boolean", |
660 | | - "default": false, |
661 | | - "description": "Specifies whether to disable Razor language features." |
662 | | - }, |
663 | | - "razor.languageServer.directory": { |
664 | | - "type": [ |
665 | | - "string", |
666 | | - "null" |
667 | | - ], |
668 | | - "default": null, |
669 | | - "description": "Overrides the path to the Razor Language Server directory." |
670 | | - }, |
671 | | - "razor.languageServer.debug": { |
672 | | - "type": "boolean", |
673 | | - "default": false, |
674 | | - "description": "Specifies whether to wait for debug attach when launching the language server." |
675 | | - }, |
676 | | - "razor.languageServer.trace": { |
677 | | - "type": "string", |
678 | | - "default": "Off", |
679 | | - "enum": [ |
680 | | - "Off", |
681 | | - "Messages", |
682 | | - "Verbose" |
683 | | - ], |
684 | | - "enumDescriptions": [ |
685 | | - "Does not log messages from Razor Language Server", |
686 | | - "Logs only some messages from Razor Language Server", |
687 | | - "Logs all messages from Razor Language Server" |
688 | | - ], |
689 | | - "description": "Specifies whether to output all messages [Verbose], some messages [Messages] or not at all [Off]." |
690 | 605 | } |
691 | 606 | } |
692 | 607 | }, |
|
745 | 660 | "command": "csharp.reportIssue", |
746 | 661 | "title": "Start authoring a new issue on GitHub", |
747 | 662 | "category": "CSharp" |
748 | | - }, |
749 | | - { |
750 | | - "command": "extension.showRazorCSharpWindow", |
751 | | - "title": "Show Razor CSharp", |
752 | | - "category": "Razor" |
753 | | - }, |
754 | | - { |
755 | | - "command": "extension.showRazorHtmlWindow", |
756 | | - "title": "Show Razor Html", |
757 | | - "category": "Razor" |
758 | 663 | } |
759 | 664 | ], |
760 | 665 | "keybindings": [ |
|
777 | 682 | "enableBreakpointsFor": { |
778 | 683 | "languageIds": [ |
779 | 684 | "csharp", |
780 | | - "razor", |
781 | | - "aspnetcorerazor" |
| 685 | + "razor" |
782 | 686 | ] |
783 | 687 | }, |
784 | 688 | "variables": { |
|
1845 | 1749 | "enableBreakpointsFor": { |
1846 | 1750 | "languageIds": [ |
1847 | 1751 | "csharp", |
1848 | | - "razor", |
1849 | | - "aspnetcorerazor" |
| 1752 | + "razor" |
1850 | 1753 | ] |
1851 | 1754 | }, |
1852 | 1755 | "variables": { |
|
2809 | 2712 | } |
2810 | 2713 | } |
2811 | 2714 | } |
2812 | | - ], |
2813 | | - "languages": [ |
2814 | | - { |
2815 | | - "id": "aspnetcorerazor", |
2816 | | - "extensions": [ |
2817 | | - ".cshtml" |
2818 | | - ], |
2819 | | - "mimetypes": [ |
2820 | | - "text/x-cshtml" |
2821 | | - ], |
2822 | | - "configuration": "./src/razor/language-configuration.json" |
2823 | | - } |
2824 | | - ], |
2825 | | - "grammars": [ |
2826 | | - { |
2827 | | - "language": "aspnetcorerazor", |
2828 | | - "scopeName": "text.aspnetcorerazor", |
2829 | | - "path": "./src/razor/syntaxes/aspnetcorerazor.tmLanguage.json" |
2830 | | - } |
2831 | | - ], |
2832 | | - "menus": { |
2833 | | - "editor/title": [ |
2834 | | - { |
2835 | | - "command": "extension.showRazorCSharpWindow", |
2836 | | - "when": "resourceLangId == aspnetcorerazor" |
2837 | | - }, |
2838 | | - { |
2839 | | - "command": "extension.showRazorHtmlWindow", |
2840 | | - "when": "resourceLangId == aspnetcorerazor" |
2841 | | - } |
2842 | | - ] |
2843 | | - } |
| 2715 | + ] |
2844 | 2716 | } |
2845 | 2717 | } |
0 commit comments