-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic help content and links for well-known elements
(still need to hook this up to the hover content provider) tintoy/msbuild-project-tools-server#5
- Loading branch information
Showing
2 changed files
with
51 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"PropertyGroup": { | ||
"description": "Contains a set of user-defined `Property` elements.", | ||
"help": "https://docs.microsoft.com/en-us/visualstudio/msbuild/propertygroup-element-msbuild" | ||
}, | ||
"Item": { | ||
"description": "Contains a user-defined item and its metadata.", | ||
"help": "https://docs.microsoft.com/en-us/visualstudio/msbuild/item-element-msbuild" | ||
}, | ||
"ItemGroup": { | ||
"description": "Contains a set of user-defined `Item` elements.", | ||
"help": "https://docs.microsoft.com/en-us/visualstudio/msbuild/itemgroup-element-msbuild" | ||
}, | ||
"ItemDefinitionGroup": { | ||
"description": "The `ItemDefinitionGroup` element lets you define a set of `Item` definitions, which are metadata values that are applied to all items in the project, by default.", | ||
"help": "https://docs.microsoft.com/en-us/visualstudio/msbuild/itemdefinitiongroup-element-msbuild" | ||
}, | ||
"Choose": { | ||
"description": "Evaluates child elements to select one set of `ItemGroup` elements and/or `PropertyGroup` elements to evaluate. ", | ||
"help": "https://docs.microsoft.com/en-us/visualstudio/msbuild/choose-element-msbuild" | ||
}, | ||
"When": { | ||
"description": "Evaluates child `ItemGroup` and/or `PropertyGroup` elements when its `Condition` is true.", | ||
"help": "https://docs.microsoft.com/en-us/visualstudio/msbuild/choose-element-msbuild" | ||
}, | ||
"Otherwise": { | ||
"description": "Evaluates child `ItemGroup` and/or `PropertyGroup` elements when none of its sibling `When` elements has a `Condition` that is true.", | ||
"help": "https://docs.microsoft.com/en-us/visualstudio/msbuild/choose-element-msbuild" | ||
}, | ||
"Output": { | ||
"description": "Stores task output values in items and properties.", | ||
"help": "https://docs.microsoft.com/en-us/visualstudio/msbuild/output-element-msbuild" | ||
}, | ||
"UsingTask": { | ||
"description": "Maps the task that is referenced in a `Task` element to the assembly that contains the task implementation. ", | ||
"help": "https://docs.microsoft.com/en-us/visualstudio/msbuild/usingtask-element-msbuild" | ||
}, | ||
"Target": { | ||
"description": "Contains a set of tasks for MSBuild to execute sequentially.", | ||
"help": "https://docs.microsoft.com/en-us/visualstudio/msbuild/target-element-msbuild" | ||
}, | ||
"Import": { | ||
"description": "Imports the contents of one project file into another project file.", | ||
"help": "https://docs.microsoft.com/en-us/visualstudio/msbuild/import-element-msbuild" | ||
}, | ||
"ImportGroup": { | ||
"description": "Contains a collection of `Import` elements that are grouped under an optional `Condition`.", | ||
"help": "https://docs.microsoft.com/en-us/visualstudio/msbuild/importgroup-element" | ||
} | ||
} |
Submodule server
updated
2 files
+41 −0 | src/LanguageServer.Common/Help/ElementHelp.cs | |
+40 −0 | src/LanguageServer.SemanticModel.MSBuild/MSBuildSchemaHelp.cs |