mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-03-11 02:58:36 -04:00
I will need to use reflection into the astronomy.dll assembly, along with the generated astronomy.xml, to generate Markdown documentation. This is the start of that project.
9 lines
125 B
Bash
Executable File
9 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
Fail()
|
|
{
|
|
echo "FATAL($0): $1"
|
|
exit 1
|
|
}
|
|
|
|
dotnet build --output ${PWD}/exe || Fail "Error building csdown"
|