https://github.com/tintoy/msbuild-project-tools-server
Language server for MSBuild intellisense (including PackageReference completion).
https://github.com/tintoy/msbuild-project-tools-server
dotnet-core language-server-protocol language-service msbuild
Last synced: about 1 year ago
JSON representation
Language server for MSBuild intellisense (including PackageReference completion).
- Host: GitHub
- URL: https://github.com/tintoy/msbuild-project-tools-server
- Owner: tintoy
- License: mit
- Created: 2017-11-09T18:59:53.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-30T01:00:12.000Z (about 1 year ago)
- Last Synced: 2025-04-02T06:08:16.741Z (about 1 year ago)
- Topics: dotnet-core, language-server-protocol, language-service, msbuild
- Language: C#
- Size: 1.08 MB
- Stars: 63
- Watchers: 3
- Forks: 17
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MSBuild project file tools
An [LSP](https://github.com/Microsoft/language-server-protocol)-compatible language service that provides intellisense for MSBuild project files, including auto-complete for `` elements.
For more information, see [msbuild-project-tools-vscode](https://github.com/tintoy/msbuild-project-tools-vscode).
## Building from source
See [BUILDING.md](docs/BUILDING.md).
## Design
See [architectural overview](docs/architecture/overview.md) for details (this is a work-in-progress; if you have questions, feel free to create an issue).
## Limitations
* Limited intellisense is available for dynamic `PropertyGroup` / `ItemGroup` declarations (i.e. those appearing inside a `Target` element); these are only evaluated when the project is built and so very little information about them is available to us when statically evaluating the project (see [tintoy/msbuild-project-tools-server#5](https://github.com/tintoy/msbuild-project-tools-server/issues/5#issuecomment-383352512) for details).
* Support for task completions is experimental; if you find a problem with it, please [create an issue](https://github.com/tintoy/msbuild-project-tools-server/issues/new).
* Support for MSBuild expressions is experimental; if you find a problem with it, please [create an issue](https://github.com/tintoy/msbuild-project-tools-server/issues/new).
* 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 :-)