Skip to content

Commit

Permalink
Enable per-workspace override of MSBuildExtensionsPath.
Browse files Browse the repository at this point in the history
  • Loading branch information
tintoy committed Feb 21, 2018
1 parent 0c39e94 commit a05fa2a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 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.

19 changes: 18 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.27",
"version": "0.2.28",
"settingsSchemaVersion": 1,
"publisher": "tintoy",
"license": "MIT",
Expand Down Expand Up @@ -181,6 +181,23 @@
}
}
},
"msbuild": {
"description": "Configuration for the MSBuild engine.",
"type": "object",
"default": {},
"properties": {
"extensionsPath": {
"description": "Override the default value of MSBuildExtensionsPath. You will need to close and reopen your project file for this setting to take effect.",
"type": "string",
"default": null
},
"extensionsPath32": {
"description": "Override the default value of MSBuildExtensionsPath32. You will need to close and reopen your project file for this setting to take effect.",
"type": "string",
"default": null
}
}
},
"nuget": {
"description": "NuGet configuration for the MSBuild language service.",
"type": "object",
Expand Down

0 comments on commit a05fa2a

Please sign in to comment.