2017-05-29 29 views
0

PowerShellスクリプトを実行しようとしていますが、すべての引数がすべて機能していますが、setParameters.xmlファイルはRealese定義から変数を変更しません私のRelease.pubxmlファイル。 .pubxmlファイルを変更して、powershellスクリプトを使用して変数/パラメータを変更できるようにするにはどうすればよいですか。.pubxml - リリース定義変数を使用して変数を変更する

答えて

1

変数ParamToReplace

# read the setParameters.xml file 
$contents = Get-Content -Path $paramsFilePath 

# Replease all environment variables with mathing token 
Get-ChildItem -path env:* | % {$contents = $contents -replace ('__{0}__' -f $_.Name),$_.Value} 

# save the new content of the setParameters.xml 
Set-Content $paramsFilePath -Value $contents 
+0

ああ環境を作成し、このフォームであなたが交換する習慣すべてのパラメータParamToReplace を持参、私は今を取得、これは正常に動作する必要があり、私はちょうど私のリリースを整理する必要があります。 pubxmlファイルとそれは動作するはずです! –

関連する問題