Improving Build.bat and appveyor build output

Moving all Console.Write* to Debug.Print
This commit is contained in:
Sebastiaan Janssen
2016-07-08 14:51:02 +02:00
parent 5ebcdce557
commit de0bb494a5
55 changed files with 218 additions and 130 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.Diagnostics;
using System.Web;
using NUnit.Framework;
using Umbraco.Core.Cache;
@@ -49,7 +50,7 @@ namespace Umbraco.Tests.Cache
private static string GetValue(int i)
{
Console.WriteLine("get" + i);
Debug.Print("get" + i);
if (i < 3)
throw new Exception("fail");
return "succ" + i;