Add the presentation-free acdream-headless executable, strict no-connect configuration validation, dependency and assembly guards, and a Windows/Ubuntu CI lane that builds and tests only the portable runtime closure. Co-authored-by: Codex <noreply@openai.com>
9 lines
208 B
C#
9 lines
208 B
C#
namespace AcDream.Headless.Configuration;
|
|
|
|
internal sealed class HeadlessConfigurationException : Exception
|
|
{
|
|
internal HeadlessConfigurationException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|