Skip to content

Commit 0b6fa17

Browse files
committed
[json] remove project.json support (for dotnet/vscode-csharp#1236)
1 parent b872665 commit 0b6fa17

File tree

2 files changed

+1
-285
lines changed

2 files changed

+1
-285
lines changed

server/src/jsonServerMain.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import URI from './utils/uri';
1717
import * as URL from 'url';
1818
import Strings = require('./utils/strings');
1919
import { JSONDocument, JSONSchema, LanguageSettings, getLanguageService } from 'vscode-json-languageservice';
20-
import { ProjectJSONContribution } from './jsoncontributions/projectJSONContribution';
2120
import { getLanguageModelCache } from './languageModelCache';
2221

2322
import * as nls from 'vscode-nls';
@@ -119,9 +118,7 @@ let schemaRequestService = (uri: string): Thenable<string> => {
119118
let languageService = getLanguageService({
120119
schemaRequestService,
121120
workspaceContext,
122-
contributions: [
123-
new ProjectJSONContribution()
124-
]
121+
contributions: []
125122
});
126123

127124
// The settings interface describes the server relevant settings part

server/src/jsoncontributions/projectJSONContribution.ts

-281
This file was deleted.

0 commit comments

Comments
 (0)