From d8fd6811b11d196c3984089f27223cd663547ba3 Mon Sep 17 00:00:00 2001 From: BWiegell Date: Mon, 21 Nov 2022 11:24:41 +0100 Subject: [PATCH] more cli changes --- AstroWall/Info.plist | 4 ++-- cli5/Program.cs | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/AstroWall/Info.plist b/AstroWall/Info.plist index 4e0dc40..5e34195 100644 --- a/AstroWall/Info.plist +++ b/AstroWall/Info.plist @@ -7,9 +7,9 @@ CFBundleIdentifier com.astro.wall.Astro-Wall CFBundleShortVersionString - 0.0.40 + 0.0.41 CFBundleVersion - 0.0.40-alpha-1-g10cf671 + 0.0.41-alpha-1-gae7d47d LSMinimumSystemVersion 11 CFBundleDevelopmentRegion diff --git a/cli5/Program.cs b/cli5/Program.cs index ed408f8..a2ba0ee 100644 --- a/cli5/Program.cs +++ b/cli5/Program.cs @@ -51,8 +51,9 @@ static void regPreRelease(UpdateManifest manifest) // Build binaries Console.WriteLine("Building binaries..."); - runCommand("msbuild ./AstroWall.sln /property:Configuration=Release"); - Console.WriteLine("Binaries built"); + string buildOutput = runCommand("msbuild ./AstroWall.sln /property:Configuration=Release"); + Console.WriteLine(buildOutput.Split("\n").Last()); + Console.WriteLine("Binaries built."); // Create pkgs Console.WriteLine("Creating pkg");