https://visualstudio.microsoft.com/downloads/
Use Visual Studio 2019 to vissualy inspect code, and to write and debug code. The syntax tree debugging experience is much better in Visual Studio 2019 compared to Visual Studio Code.
Use these tools to visually inspect syntax trees in Visual Studio.
- Install the .NET Compiler Platform SDK workload.
- Add the DGML editor under individual components (Code tools section)
- Add the .NET Compiler Platform SDK (Compilers, build tools, and runtimes section)
- Add the DGML editor under individual components (Code tools section)
More information about these tools can be found in the article Explore code with the Roslyn syntax visualizer in Visual Studio.
https://code.visualstudio.com/Download
Use Visual Studio Code to write Markdown, PlantUML and AsciiDoc files.
ext install jebbs.plantuml
https://marketplace.visualstudio.com/items?itemName=jebbs.plantuml
"plantuml.render": "PlantUMLServer",
"plantuml.server": "https://www.plantuml.com/plantuml",
For example code it's fine to use the plublic renderer. You can render locally by running a PlantUML server locally. For example using Docker:
❯ docker run -d -p 8080:8080 plantuml/plantuml-server:jetty
Optional, but can replace remote or local dependencies like PlantUML Server.