Skip to content

Build & Run

Matthew Daly edited this page Apr 1, 2022 · 2 revisions

Running

Maple can be debugged with the dotnet cli:

dotnet run -- [arguments]

It's important to note that when running maple under a debugger it will look for the properties, syntax, and themes directory within the debugging build folder (typically something like bin\Debug\net6.0\). MSBuild is configured to automatically copy these directories (and all *.xml files within them) from the project directory to the build directory on every build.

Building

Maple is pretty easy to build since it has no dependencies.

dotnet build -c Release

Clone this wiki locally