mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
12 lines
183 B
C#
12 lines
183 B
C#
namespace Daybreak.API.Configuration;
|
|
|
|
public static class BuildInfo
|
|
{
|
|
public const string Configuration =
|
|
#if DEBUG
|
|
"Debug";
|
|
#else
|
|
"Release";
|
|
#endif
|
|
}
|