PowerToys/Deploy/Nuget/pack.ps1

14 lines
568 B
PowerShell
Raw Normal View History

2014-12-12 19:12:30 +08:00
$root = (split-path -parent $MyInvocation.MyCommand.Definition) + '\..\..'
Write-Host $root
2014-12-12 18:22:17 +08:00
$version = [System.Reflection.Assembly]::LoadFile("$root\Output\Release\Wox.Plugin.dll").GetName().Version
$versionStr = "{0}.{1}.{2}" -f ($version.Major, $version.Minor, $version.Build)
Write-Host "Setting .nuspec version tag to $versionStr"
2014-12-12 18:59:44 +08:00
$content = (Get-Content $root\Deploy\NuGet\wox.plugin.nuspec)
2014-12-12 18:22:17 +08:00
$content = $content -replace '\$version\$',$versionStr
$content | Out-File $root\wox.plugin.nuspec
2014-12-12 18:32:21 +08:00
& $root\.nuget\NuGet.exe pack $root\deploy\nuget\wox.plugin.nuspec