製品のバージョン番号を変数「PRODUCTVERSION」に取得するスクリプトがあります。
PRODUCTVERSION= subprocess.check_output('svnversion c:\sandbox -n', shell=False)
この変数「PRODUCTVERSION」をmsbuildプロパティとしてwixに渡したい。以下は私が試したコードですが、エラーが発生してしまいます、
light.exe : error LGHT0001: Illegal characters in path.
これが私のスクリプトです、
def build(self,projpath):
PRODUCTVERSION= subprocess.check_output('svnversion c:\sandbox -n', shell=False)
arg1 = '/t:Rebuild'
arg2 = '/p:Configuration=Release'
arg3 = '/p:Platform=x86'
arg4 = '/p:ProductVersion=%PRODUCTVERSION%'
p = subprocess.call([self.msbuild,projpath,arg1,arg2,arg3])
私のwixプロジェクトのプロパティはどこにありますか
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>$(ProductVersion)</ProductVersion>
<ProjectGuid>{d559ac98-4dc7-4078-b054-fe0da8363ad0}</ProjectGuid>
<SchemaVersion>2.0</SchemaVersion>
<OutputName>myapp.$(ProductVersion)</OutputName>
<OutputType>Package</OutputType>
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
<WixVariables>Version=$(ProductVersion)</WixVariables>
</PropertyGroup>
出力名を「myapp-2.0.PRODUCTVERSION」と表示したいのですが、PRODUCTVERSIONはPythonスクリプトから取得したバージョン番号です。これに対する解決策を見つけるのを手伝ってください。