From fbda090accbe78fa3b836d5476ec76beaa507bf7 Mon Sep 17 00:00:00 2001 From: discosultan Date: Thu, 22 Jun 2017 18:54:51 +0300 Subject: [PATCH] Fix nuget path in publish script --- Tools/MonoGame.Penumbra.DesktopGL.nuspec | Bin 2876 -> 2876 bytes Tools/MonoGame.Penumbra.WindowsDX.nuspec | Bin 2876 -> 2876 bytes Tools/PublishNuget.ps1 | 8 ++++---- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Tools/MonoGame.Penumbra.DesktopGL.nuspec b/Tools/MonoGame.Penumbra.DesktopGL.nuspec index 6176f5704499b1abc0cacd4e22987e6c18cc5927..546cf5bcc30f1db118b2697e64e02c9104e941f0 100644 GIT binary patch delta 18 ZcmdlZwnuEkF-BGs20aFY&8Ha)IRQKD1*`x7 delta 18 ZcmdlZwnuEkF-BHn20aF&&8Ha)IRQKF1+4%8 diff --git a/Tools/MonoGame.Penumbra.WindowsDX.nuspec b/Tools/MonoGame.Penumbra.WindowsDX.nuspec index c12140da376e62b1a1df112c4768ee8ff6a183ff..4b5a2329882820eda7fae85f46a43495cb07dd8f 100644 GIT binary patch delta 18 ZcmdlZwnuEkF-BGs20aFY&8Ha)IRQKD1*`x7 delta 18 ZcmdlZwnuEkF-BHn20aF&&8Ha)IRQKF1+4%8 diff --git a/Tools/PublishNuget.ps1 b/Tools/PublishNuget.ps1 index 758cd51..9f4ad23 100644 --- a/Tools/PublishNuget.ps1 +++ b/Tools/PublishNuget.ps1 @@ -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 \ No newline at end of file +nuget push (GetNupkgFilename $idWindowsDX) -Source https://www.nuget.org/api/v2/package +nuget push (GetNupkgFilename $idDesktopGL) -Source https://www.nuget.org/api/v2/package \ No newline at end of file