Skip to content

Commit

Permalink
Fix nuget path in publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
discosultan committed Jun 22, 2017
1 parent 33a1377 commit fbda090
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file modified Tools/MonoGame.Penumbra.DesktopGL.nuspec
Binary file not shown.
Binary file modified Tools/MonoGame.Penumbra.WindowsDX.nuspec
Binary file not shown.
8 changes: 4 additions & 4 deletions Tools/PublishNuget.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ UpdateVersionInFile (GetNuspecFilename $idDesktopGL) $versionRegex $newVersion

# Create nuget packages with symbol packages.
Write-Host Creating packages
.\nuget pack (GetNuspecFilename $idWindowsDX) -symbols
.\nuget pack (GetNuspecFilename $idDesktopGL) -symbols
nuget pack (GetNuspecFilename $idWindowsDX) -symbols
nuget pack (GetNuspecFilename $idDesktopGL) -symbols

# Publish nuget packages to nuget.org and symbol packages to symbolsource.org
Write-Host Publishing packages
.\nuget push (GetNupkgFilename $idWindowsDX) -Source https://www.nuget.org/api/v2/package
.\nuget push (GetNupkgFilename $idDesktopGL) -Source https://www.nuget.org/api/v2/package
nuget push (GetNupkgFilename $idWindowsDX) -Source https://www.nuget.org/api/v2/package
nuget push (GetNupkgFilename $idDesktopGL) -Source https://www.nuget.org/api/v2/package

0 comments on commit fbda090

Please sign in to comment.