From 339570876bcd6b5d0cc49ee8a199856982deb0f2 Mon Sep 17 00:00:00 2001 From: blah38621_cp <36925b492f9af1e8e676baa1ba817f9639f49ec7y44YxFx5> Date: Tue, 10 Jan 2012 20:52:26 +0000 Subject: [PATCH] Fixed the missing newline when a project gets skipped. --- source2/VSIP/Cosmos.VS.Package/VSProjectNode.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source2/VSIP/Cosmos.VS.Package/VSProjectNode.cs b/source2/VSIP/Cosmos.VS.Package/VSProjectNode.cs index dc0525782..2df779508 100644 --- a/source2/VSIP/Cosmos.VS.Package/VSProjectNode.cs +++ b/source2/VSIP/Cosmos.VS.Package/VSProjectNode.cs @@ -68,7 +68,7 @@ namespace Cosmos.VS.Package if (xGuid != this.ProjectIDGuid) { uiThreadCallback(MSBuildResult.Successful, "Skipped"); - output.OutputStringThreadSafe("Project skipped, as it's not necessary for running"); + output.OutputStringThreadSafe("Project skipped, as it's not necessary for running\r\n"); return; } }