Added a CI helper argument.
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 36s
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 36s
This commit is contained in:
parent
7c38d20010
commit
0a0d1e4afb
@ -81,8 +81,18 @@ namespace skyscraper5
|
|||||||
|
|
||||||
static void Main(string[] args)
|
static void Main(string[] args)
|
||||||
{
|
{
|
||||||
|
|
||||||
IntegrationTest();
|
IntegrationTest();
|
||||||
|
|
||||||
|
if (args.Length == 1)
|
||||||
|
{
|
||||||
|
if (args[0].Equals("cicd-version"))
|
||||||
|
{
|
||||||
|
Console.WriteLine(VersionInfo.GetPublicReleaseNumber());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
logger.InfoFormat(String.Format("Hello! This is skyscraper8, public release #{0}, code version {1}", VersionInfo.GetPublicReleaseNumber(), VersionInfo.GetCurrentAssemblyDisplayVersion()));
|
logger.InfoFormat(String.Format("Hello! This is skyscraper8, public release #{0}, code version {1}", VersionInfo.GetPublicReleaseNumber(), VersionInfo.GetCurrentAssemblyDisplayVersion()));
|
||||||
|
|
||||||
logger.DebugFormat("Found {0}-bit Operating system.", Environment.Is64BitOperatingSystem ? 64 : 32);
|
logger.DebugFormat("Found {0}-bit Operating system.", Environment.Is64BitOperatingSystem ? 64 : 32);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user