Skip to content

Latest commit

 

History

History
62 lines (41 loc) · 3.75 KB

README.md

File metadata and controls

62 lines (41 loc) · 3.75 KB

MSBuild project file tools

An extension for VS Code that provides intellisense for MSBuild project files, including auto-complete for <PackageReference> elements.

The extension in action

Note: there are features in the extension (marked "language service feature" below) that use an out-of-process language service; this is enabled by default but if all you want is PackageReference completion, you can disable the language service by setting msbuildProjectFileTools.languageService.enable to false in your VSCode preferences. You will need to reload VSCode after changing this setting.

You need .NET Core 2.0.0 or newer installed to use the language service (but your projects can target any version you have installed).

Usage

  • Completions for PackageReference and DotNetCliToolReference.
    • Completions for Include and Version attributes of these items.
    • Language service feature: Completions to create these elements.
  • Language service feature: Completions for common top-level elements (e.g. PropertyGroup, ItemGroup, Target).
  • Language service feature: Completions for property elements.
  • Language service feature: Completions for common item attributes.
  • Language service feature: Completions for common property Condition attributes.
  • Language service feature: Hover the mouse over imports, targets, items, properties, and conditions to see information about them.
  • Language service feature: Document symbols are supported for imports, targets, items, and properties.
  • Language service feature: Go-to-definition is implemented for both SDK-style and regular project imports.
  • Basic syntax highlighting of MSBuild expressions in attribute values.
    To see this highlighting, change the editor language from XML to MSBuild.

File extensions

By default, the language service is automatically available for files with the following extensions:

  • *.*proj
  • .targets
  • .props
  • .tasks

If you want to use it with additional file types:

  1. Open the desired file.
  2. Change the language mode by pressing Ctrl-Shift-P (or Cmd-Shift-P on Mac) and choosing "Change Language Mode".
    associate language with file extension
  3. Choose "configure file association".
    associate language with file extension
  4. Choose language MSBuild.

Installation

You can install this extension from the VS marketplace, or simply download the VSIX package for the latest release and install it by choosing "Install from VSIX" from the menu on the top right of the extensions panel.

Building from source

See BUILDING.md.

Limitations

  • The new language service hasn't been tested extensively on Linux / MacOS (although I've verified that it works for common use-cases).

Note: if you open more than one project at a time (or navigate to imported projects), subsequent projects will be loaded into the same MSBuild project collection as the first project. Once you have closed the last project file, the next project file you open will become the master project. The master project will become selectable in a later release.

Questions / bug reports

If you have questions, feedback, feature requests, or would like to report a bug, please feel free to reach out by creating an issue. When reporting a bug, please try to include as much information as possible about what you were doing at the time, what you expected to happen, and what actually happened.

If you're interested in collaborating that'd be great, too :-)