Skip to content

Commit

Permalink
Merge pull request #86 from tintoy/feature/nuget-credential-providers
Browse files Browse the repository at this point in the history
Support for authenticated NuGet package feeds
  • Loading branch information
tintoy committed Sep 27, 2021
2 parents 6f74f3e + 8fefeb4 commit 42284e5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "msbuild-project-tools",
"displayName": "MSBuild project tools",
"description": "Tools for working with MSBuild project files (such as auto-complete for package Ids / versions).",
"version": "0.4.0-preview5",
"version": "0.4.0",
"settingsSchemaVersion": 1,
"publisher": "tintoy",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/extension/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ async function createLanguageClient(context: vscode.ExtensionContext): Promise<v
}
};

languageClient = new LanguageClient('MSBuild Project Tools', serverOptions, clientOptions);
languageClient = new LanguageClient('MSBuild Language Service', serverOptions, clientOptions);
if (configuration.logging.trace) {
languageClient.trace = Trace.Verbose;
} else {
Expand Down

0 comments on commit 42284e5

Please sign in to comment.