mirror of
https://github.com/fbarresi/Sharp7.git
synced 2026-02-04 08:42:51 +00:00
- added nuget pack script
This commit is contained in:
11
_nuspec/pack.ps1
Normal file
11
_nuspec/pack.ps1
Normal file
@@ -0,0 +1,11 @@
|
||||
$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 Sharp7.compiled.nuspec
|
||||
|
||||
& NuGet.exe pack Sharp7.compiled.nuspec
|
||||
Reference in New Issue
Block a user