在MSBuild中使用通用引導程序時如何確定安裝先決條件的順序?引導程序先決條件訂購
例如,給定:
<Project ToolsVersion="3.5" xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
<ItemGroup>
<BootstrapperFile Include='A' />
<BootstrapperFile Include='B' />
<BootstrapperFile Include='C' />
<BootstrapperFile Include='D' />
</ItemGroup>
<Target Name='MySetup'>
<GenerateBootstrapper
Path='C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper'
ApplicationName='My Program'
ApplicationFile='MyProgram.msi'
BootstrapperItems='@(BootstrapperFile)'
Culture='en'
CopyComponents='true'
ComponentsLocation='HomeSite'
OutputPath='.\' />
</Target>
</Project>
那是什麼A,B,C,和d得到安裝順序?我如何控制該訂單?
你最近的陳述倒退了。產品A取決於B,所以B先安裝。如果你修復它,你會得到+1。 – 2009-06-29 15:47:15