Skip to content
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.

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 020489d commit 23b1c32
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 285 deletions.
5 changes: 1 addition & 4 deletions 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
281 changes: 0 additions & 281 deletions src/jsoncontributions/projectJSONContribution.ts

This file was deleted.

0 comments on commit 23b1c32

Please sign in to comment.