Adds a Wikidown project type to Visual Studio. Drop a .wikidownproj file in your solution to surface your docs/ wiki in Solution Explorer without participating in the build. Compatible with Azure DevO
Surface your Wikidowndocs/ wiki folder directly in Visual Studio's Solution Explorer — without it participating in the build.
Features
Adds a Wikidown project type (.wikidownproj) to Visual Studio 2022+.
Recursively shows all .md pages and .order files under your configured wiki root.
Double-clicking a .md file opens it in VS's built-in markdown editor.
The project node never appears in Build / Rebuild / Clean — it is display-only.
Getting started
Install the extension from the Visual Studio Marketplace (or double-click the .vsix).
In your solution, choose Add → New Project, search for Wikidown, and select Wikidown Wiki.
Name the project (default: wiki) and place it alongside your .sln file, then click Create.
A wiki.wikidownproj file is created and the docs/ folder appears under the new project node.
Double-click any .md file in Solution Explorer to open it in VS's built-in markdown editor.
Configuring the wiki root
Edit wiki.wikidownproj to point to a different folder:
<WikidownProject>
<WikiRoot>my-wiki</WikiRoot> <!-- relative to the .wikidownproj file -->
</WikidownProject>