Skip to content

Commit

Permalink
Revert troubleshooting changes to Nuget pkg creation script
Browse files Browse the repository at this point in the history
  • Loading branch information
karolz-ms authored Nov 13, 2018
1 parent 4cab6d7 commit d7976ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/createNugetPackages.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ try
{
foreach($projectFile in $nugetProjects)
{
&"dotnet" pack "$projectFile" -c "$Configuration" -o "$destination"
&"dotnet" pack "$projectFile" --no-build -c "$Configuration" -o "$destination"
}
}
else
{
foreach($projectFile in $nugetProjects)
{
&"dotnet" pack "$projectFile" -c "$Configuration" -o "$destination" --version-suffix $Suffix
&"dotnet" pack "$projectFile" --no-build -c "$Configuration" -o "$destination" --version-suffix $Suffix
}
}
}
Expand Down

0 comments on commit d7976ef

Please sign in to comment.