Skip to content

Commit

Permalink
[json] remove project.json support (for dotnet/vscode-csharp#1236)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeschli committed Feb 16, 2017
1 parent 32df24e commit 3a31182
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 285 deletions.
5 changes: 1 addition & 4 deletions extensions/json/server/src/jsonServerMain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import URI from './utils/uri';
import * as URL from 'url';
import Strings = require('./utils/strings');
import { JSONDocument, JSONSchema, LanguageSettings, getLanguageService } from 'vscode-json-languageservice';
import { ProjectJSONContribution } from './jsoncontributions/projectJSONContribution';
import { getLanguageModelCache } from './languageModelCache';

import * as nls from 'vscode-nls';
Expand Down Expand Up @@ -119,9 +118,7 @@ let schemaRequestService = (uri: string): Thenable<string> => {
let languageService = getLanguageService({
schemaRequestService,
workspaceContext,
contributions: [
new ProjectJSONContribution()
]
contributions: []
});

// The settings interface describes the server relevant settings part
Expand Down

This file was deleted.

0 comments on commit 3a31182

Please sign in to comment.