From 74ce99b2070dd45d1bb98f1ee1c89196429d5047 Mon Sep 17 00:00:00 2001 From: icedream Date: Mon, 12 Jan 2015 05:35:28 +0100 Subject: [PATCH] More precise status text. --- src/updater/Program.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/updater/Program.cs b/src/updater/Program.cs index 318383c..e087798 100644 --- a/src/updater/Program.cs +++ b/src/updater/Program.cs @@ -193,7 +193,7 @@ namespace CitizenMP.Server.Installer // Build project - Console.WriteLine("Building server binaries..."); + //Console.WriteLine("Building server binaries..."); var slnPath = sourceDirectory.EnumerateFiles("*.sln", SearchOption.TopDirectoryOnly) .First().FullName; outputDirectory.Create(); @@ -334,6 +334,7 @@ namespace CitizenMP.Server.Installer Run("sh", "-c \"yes y 2>NUL | certmgr -ssl https://go.microsoft.com\""); Run("sh", "-c \"yes y 2>NUL | certmgr -ssl https://nugetgallery.blob.core.windows.net\""); Run("sh", "-c \"yes y 2>NUL | certmgr -ssl https://nuget.org\""); + Console.WriteLine("Updating SSL certificates for NuGet..."); } catch (Exception error) { @@ -342,6 +343,7 @@ namespace CitizenMP.Server.Installer } // Build doesn't work with the new API on Mono, use the deprecated api + Console.WriteLine("Building server binaries..."); #pragma warning disable 618 foreach (var logger in loggers) Engine.GlobalEngine.RegisterLogger(logger); @@ -356,6 +358,8 @@ namespace CitizenMP.Server.Installer // Windows build can make use of the new API which is more efficient { + Console.WriteLine("Building server binaries..."); + var buildReq = new BuildRequestData(projectFilePath, buildProperties, null, new[] {"Build"}, null); var result = BuildManager.DefaultBuildManager.Build(