在我的 Defines.wxi 中,我有:
<?define MajorVersion="1" ?>
<?define MinorVersion="08" ?>
<?define BuildVersion="11" ?>
在我的 MyProject.Setup.wixproj 我有:
<OutputName>MyProject</OutputName>
<OutputType>Package</OutputType>
是否可以以某种方式在文件名中包含版本变量,以便我的文件可以命名为 MyProject.1.08.11.msi?
这不起作用(没有定义这样的变量):
<OutputName>MyProject-$(MajorVersion)</OutputName>
<OutputType>Package</OutputType>
这不起作用(没有定义这样的变量):
<Target Name="AfterBuild" Condition="'$(Configuration)' == 'Release'">
<Copy SourceFiles="$(OutputPath)$(OutputName).msi" DestinationFiles="C:\$(OutputName)-$(MajorVersion).msi" />
</Target>
我似乎很清楚 $(MajorVersion) 不是从 Defines.wxi 文件中获取定义的正确方法。什么是?
更新
我试图把它放在 MyProject.Setup.wixproj 中:
<InstallerMajorVersion>7</InstallerMajorVersion>
<InstallerMinorVersion>7</InstallerMinorVersion>
<InstallerBuildNumber>7</InstallerBuildNumber>
...
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<OutputPath>bin\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
<DefineConstants>PrebuildPath=..\..\obj\prebuild\web\;InstallerMajorVersion=$(InstallerMajorVersion);InstallerMinorVersion=$(InstallerMinorVersion);InstallerBuildNumber=$(InstallerBuildNumber)</DefineConstants>
</PropertyGroup>
这在Defines.wxi中:
<?define MajorVersion="$(var.InstallerMajorVersion)" ?>
<?define MinorVersion="$(var.InstallerMinorVersion)" ?>
<?define BuildVersion="$(var.InstallerBuildNumber)" ?>
<?define Revision="0" ?>
<?define VersionNumber="$(var.InstallerMajorVersion).$(var.InstallerMinorVersion).$(var.InstallerBuildNumber)" ?>
也没有用。收到以下错误消息:
- Product/@Version 属性的值“..”不是有效版本。合法版本值应类似于“xxxx”,其中 x 是 0 到 65534 之间的整数。
- 未找到 Product/@Version 属性;这是必需的。