From e5a3f4e4f6ce52a7af10e71bc857f2aee642d6de Mon Sep 17 00:00:00 2001 From: yubaolee Date: Fri, 13 May 2016 16:58:56 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E6=8E=89c#=206.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OpenAuth.UnitTest/OpenAuth.UnitTest.csproj | 2 +- OpenAuth.UnitTest/TestUnitWork.cs | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/OpenAuth.UnitTest/OpenAuth.UnitTest.csproj b/OpenAuth.UnitTest/OpenAuth.UnitTest.csproj index 76a6122c..801f8851 100644 --- a/OpenAuth.UnitTest/OpenAuth.UnitTest.csproj +++ b/OpenAuth.UnitTest/OpenAuth.UnitTest.csproj @@ -29,7 +29,7 @@ prompt 4 false - 6 + default pdbonly diff --git a/OpenAuth.UnitTest/TestUnitWork.cs b/OpenAuth.UnitTest/TestUnitWork.cs index 16b1e4ac..9fc58bee 100644 --- a/OpenAuth.UnitTest/TestUnitWork.cs +++ b/OpenAuth.UnitTest/TestUnitWork.cs @@ -1,4 +1,5 @@ -using System.Diagnostics; +using System; +using System.Diagnostics; using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; using OpenAuth.Domain; @@ -31,7 +32,7 @@ namespace OpenAuth.UnitTest foreach (var user in usersInOrg) { - Debug.WriteLine($"{user.Name} :{user.OrgName}"); + Debug.WriteLine("{0} :{1}", user.Name, user.OrgName); } } }