mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
13 lines
444 B
Makefile
13 lines
444 B
Makefile
all: doc-update yaml
|
|
|
|
# Used to fetch XML doc updates from the C# compiler into the ECMA docs
|
|
doc-update:
|
|
msbuild /p:Configuration=Release
|
|
mdoc update -i Terminal.Gui/bin/Release/Terminal.Gui.xml -o ecmadocs/en bin/Release/Terminal.Gui.dll
|
|
|
|
yaml:
|
|
-rm ecmadocs/en/ns-.xml
|
|
mono /cvs/ECMA2Yaml/ECMA2Yaml/ECMA2Yaml/bin/Debug/ECMA2Yaml.exe --source=`pwd`/ecmadocs/en --output=`pwd`/docfx/api
|
|
(cd docfx; mono ~/Downloads/docfx/docfx.exe build)
|
|
|