From c4c4c4d371564ba74eb2faa4399650addcb55bf3 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Wed, 24 Apr 2019 21:14:55 +0100 Subject: [PATCH] logging --- build.cake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.cake b/build.cake index fb72fb839..acb6d0da7 100644 --- a/build.cake +++ b/build.cake @@ -267,7 +267,8 @@ Task("Run-Unit-Tests") $wc = New-Object 'System.Net.WebClient' foreach ($name in Resolve-Path .\src\**\TestResults\Test*.trx) { - $wc.UploadFile(""https://ci.appveyor.com/api/testresults/mstest/$($env:APPVEYOR_JOB_ID)\"", $name) + Write-Host ""Uploading File: "" + $name + $wc.UploadFile(""https://ci.appveyor.com/api/testresults/mstest/$($env:APPVEYOR_JOB_ID)"", $name) } "; // Upload the results