From dev-return-70876-apmail-ant-dev-archive=ant.apache.org@ant.apache.org Thu Jan 26 05:22:01 2006 Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 74996 invoked from network); 26 Jan 2006 05:22:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 26 Jan 2006 05:22:00 -0000 Received: (qmail 39378 invoked by uid 500); 26 Jan 2006 05:22:00 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 39044 invoked by uid 500); 26 Jan 2006 05:21:58 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 39033 invoked by uid 500); 26 Jan 2006 05:21:58 -0000 Received: (qmail 39030 invoked by uid 99); 26 Jan 2006 05:21:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Jan 2006 21:21:58 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 25 Jan 2006 21:21:58 -0800 Received: (qmail 74845 invoked by uid 65534); 26 Jan 2006 05:21:37 -0000 Message-ID: <20060126052137.74844.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r372448 - in /ant/antlibs/dotnet/trunk: CONTRIBUTORS src/main/org/apache/ant/dotnet/MSBuildTask.java Date: Thu, 26 Jan 2006 05:21:37 -0000 To: ant-cvs@apache.org From: bodewig@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: bodewig Date: Wed Jan 25 21:21:32 2006 New Revision: 372448 URL: http://svn.apache.org/viewcvs?rev=372448&view=rev Log: fix command line building of , PR 38392, contributed by Brian Watson Added: ant/antlibs/dotnet/trunk/CONTRIBUTORS Modified: ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/MSBuildTask.java Added: ant/antlibs/dotnet/trunk/CONTRIBUTORS URL: http://svn.apache.org/viewcvs/ant/antlibs/dotnet/trunk/CONTRIBUTORS?rev=372448&view=auto ============================================================================== --- ant/antlibs/dotnet/trunk/CONTRIBUTORS (added) +++ ant/antlibs/dotnet/trunk/CONTRIBUTORS Wed Jan 25 21:21:32 2006 @@ -0,0 +1 @@ +Brian Watson Modified: ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/MSBuildTask.java URL: http://svn.apache.org/viewcvs/ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/MSBuildTask.java?rev=372448&r1=372447&r2=372448&view=diff ============================================================================== --- ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/MSBuildTask.java (original) +++ ant/antlibs/dotnet/trunk/src/main/org/apache/ant/dotnet/MSBuildTask.java Wed Jan 25 21:21:32 2006 @@ -1,5 +1,5 @@ /* - * Copyright 2003-2005 The Apache Software Foundation + * Copyright 2003-2006 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -64,6 +64,8 @@ (AbstractBuildTask.Target) iter.next(); if (!first) { sb.append(";"); + } else { + first = false; } sb.append(t.getName()); } @@ -83,6 +85,8 @@ (AbstractBuildTask.Property) iter.next(); if (!first) { sb.append(";"); + } else { + first = false; } sb.append(p.getName()).append("=").append(p.getValue()); } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org