mirror of
https://github.com/fbarresi/Sharp7.git
synced 2026-02-04 08:42:51 +00:00
11 lines
435 B
PowerShell
11 lines
435 B
PowerShell
$version = [System.Reflection.Assembly]::LoadFile("out\Release\Sharp7.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 Sharp7.nuspec)
|
|
$content = $content -replace '\$version\$',$versionStr
|
|
|
|
$content | Out-File _nuspec\Sharp7.compiled.nuspec
|
|
|
|
& _nuspec\NuGet.exe pack _nuspec\Sharp7.compiled.nuspec |