From d25ff2bddd44b9dac1ceb248424109d1782dd211 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sat, 25 Mar 2017 13:13:57 +0100 Subject: add minionlivesmatter as submodule --- .../templates/assets/bootstrap/nuget/MyGet.ps1 | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 minionlivesmatter/templates/assets/bootstrap/nuget/MyGet.ps1 (limited to 'minionlivesmatter/templates/assets/bootstrap/nuget/MyGet.ps1') diff --git a/minionlivesmatter/templates/assets/bootstrap/nuget/MyGet.ps1 b/minionlivesmatter/templates/assets/bootstrap/nuget/MyGet.ps1 deleted file mode 100644 index 71110b5..0000000 --- a/minionlivesmatter/templates/assets/bootstrap/nuget/MyGet.ps1 +++ /dev/null @@ -1,18 +0,0 @@ -# set env vars usually set by MyGet (enable for local testing) -#$env:SourcesPath = '..' -#$env:NuGet = "./nuget.exe" #https://dist.nuget.org/win-x86-commandline/latest/nuget.exe - -$nuget = $env:NuGet - -# parse the version number out of package.json -$bsversionParts = ((Get-Content $env:SourcesPath\package.json) -join "`n" | ConvertFrom-Json).version.split('-', 2) # split the version on the '-' -$bsversion = $bsversionParts[0] - -if ($bsversionParts.Length -gt 1) -{ - $bsversion += '-' + $bsversionParts[1].replace('.', '').replace('-', '_') # strip out invalid chars from the PreRelease part -} - -# create packages -& $nuget pack "$env:SourcesPath\nuget\bootstrap.nuspec" -Verbosity detailed -NonInteractive -NoPackageAnalysis -BasePath $env:SourcesPath -Version $bsversion -& $nuget pack "$env:SourcesPath\nuget\bootstrap.sass.nuspec" -Verbosity detailed -NonInteractive -NoPackageAnalysis -BasePath $env:SourcesPath -Version $bsversion -- cgit v1.3.1