Files
astronomy/csdown/build
Don Cross 96288bf014 Starting to add a C# utility for generating C# documentation.
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.
2019-12-20 13:41:15 -05:00

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"