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");