On Mac, mdtool
not in PATH, but can be found inside an MD application package, for example
/Applications/MonoDevelop.app/Contents/MacOS/mdtool build MySolution.sln
Alternatively, you can try xbuild
, which is installed as part of Mono and is in PATH. This is an implementation of MSBuild. Unfortunately, it still cannot handle all custom project types that mdtool
can handle.
xbuild MySolution.sln
Mikayla hutchinson
source share