mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
13 lines
547 B
PowerShell
13 lines
547 B
PowerShell
|
$root = (split-path -parent $MyInvocation.MyCommand.Definition) + '\..'
|
||
|
$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"
|
||
|
|
||
|
$content = (Get-Content $root\Deploy\NuGet\wox.nuspec)
|
||
|
$content = $content -replace '\$version\$',$versionStr
|
||
|
|
||
|
$content | Out-File $root\wox.plugin.nuspec
|
||
|
|
||
|
& $root\deploy\NuGet\NuGet.exe pack $root\deploy\nuget\wox.plugin.nuspec
|