v1.3.0.1 (Epic Store release)

This commit is contained in:
Regalis11
2024-03-28 18:34:33 +02:00
parent 81ca8637be
commit 3791670c42
269 changed files with 13160 additions and 2966 deletions
+9
View File
@@ -4,6 +4,8 @@ using System.Linq;
using System.Xml.Linq;
using DeployAll;
AppDomain.CurrentDomain.ProcessExit += (_, _) => Console.WriteLine("Bye!");
while (!Directory.GetFiles(".").Any(f => f.EndsWith(".sln")))
{
Directory.SetCurrentDirectory("..");
@@ -46,6 +48,13 @@ if (string.IsNullOrWhiteSpace(configuration)) { return; }
Deployables.Generate(configuration, gameVersion, gitBranch, gitRevision);
if (Util.AskQuestion("Would you like to upload the generated builds to EGS? [y/n]")
.AnsweredYes())
{
EgsAssistant.Upload(gameVersion, configuration, gitRevision);
}
if (Util.AskQuestion("Would you like to upload the generated builds to Steam? [y/n]")
.AnsweredNo()) { return; }