markus / VersionChange.ps1 @ 935687cb
이력 | 보기 | 이력해설 | 다운로드 (324 Bytes)
1 |
$file=$args[0] |
---|---|
2 |
$version=$args[1] |
3 |
|
4 |
$doc = [xml](Get-Content (Resolve-Path $file)) |
5 |
|
6 |
Write-Output $doc.Wix.Product.GetAttribute("Version") |
7 |
|
8 |
$doc.Wix.Product.SetAttribute("Version",$version) |
9 |
$doc.Wix.Product.SetAttribute("UpgradeCode",[GUID]::NewGuid().ToString('B')) |
10 |
# write results to disk |
11 |
|
12 |
|
13 |
$doc.save((Resolve-Path $file)) |