Skip to content

Commit

Permalink
Enable per-workspace override of MSBuildExtensionsPath and MSBuildExt…
Browse files Browse the repository at this point in the history
…ensionsPath32

#35
  • Loading branch information
tintoy committed Nov 24, 2018
1 parent c0bfd1a commit 9df1bb8
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## v0.2.50

* Enable per-workspace override of `MSBuildExtensionsPath` and `MSBuildExtensionsPath32` (tintoy/msbuild-project-tools-vscode#35).

## v0.2.49

* Prevent "dotnet --info" hanging when its output is larger than the process STDOUT buffer (tintoy/msbuild-project-tools-vscode#42).
Expand Down
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.

12 changes: 11 additions & 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.2.49",
"version": "0.2.50",
"settingsSchemaVersion": 1,
"publisher": "tintoy",
"license": "MIT",
Expand Down Expand Up @@ -126,6 +126,16 @@
],
"description": "Types of objects defined in the current project to include when offering completions."
},
"msbuildProjectTools.msbuild.extensionsPath": {
"type": "string",
"default": null,
"description": "Override the MSBuildExtensionsPath property."
},
"msbuildProjectTools.msbuild.extensionsPath32": {
"type": "string",
"default": null,
"description": "Override the MSBuildExtensionsPath32 property."
},
"msbuildProjectTools.experimentalFeatures": {
"type": "array",
"items": {
Expand Down

0 comments on commit 9df1bb8

Please sign in to comment.