Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update NuGetPack.cs #251

Merged
merged 1 commit into from
Jan 19, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}
}
}
}