Skip to content

Commit

Permalink
Merge pull request #251 from jntmp/master
Browse files Browse the repository at this point in the history
Update NuGetPack.cs
  • Loading branch information
pwelter34 committed Jan 19, 2017
2 parents 3a17548 + 48edcbc commit abaab03
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Source/MSBuild.Community.Tasks/NuGet/NuGetPack.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#region Copyright © 2011 Paul Welter. All rights reserved.
#region Copyright © 2011 Paul Welter. All rights reserved.
/*
Copyright © 2005 Paul Welter. All rights reserved.
Copyright © 2005 Paul Welter. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -221,7 +221,7 @@ protected override string GenerateCommandLineCommands()
if (ForceEnglishOutput)
builder.AppendSwitch("-ForceEnglishOutput");

builder.AppendSwitchIfNotNull("-Exclude", Exclude);
builder.AppendSwitchIfNotNull("-Exclude ", Exclude);
builder.AppendSwitchIfNotNull("-Properties ", Properties);

return builder.ToString();
Expand Down Expand Up @@ -250,4 +250,4 @@ protected override void LogEventsFromTextOutput(string singleLine, MessageImport
OutputFilePath = outputFilePathMatch.Groups["filename"].Value;
}
}
}
}

0 comments on commit abaab03

Please sign in to comment.