Dear all,

Maybe someone has already found out this bug and workaround.

If you want to create a new Project based on the Windows Installer XML - C# 
Custom Action Project template (v3.5.0710.0) in Visual Studio you may receive 
some path errors.
This is because of some old path references to WiX v3.0 within the project 
template and also within the wix.ca.targets file.

Change the content of the wix.ca.targets file [Program 
files]\MSBuild\Microsoft\WiX\v3.5:
Search for 3.0 -> Change all to 3.5 (don't forget the InstallRegKey-properties!)

Change the content of the CustomAction.csproj file ([Program files]\Microsoft 
Visual Studio 9.0\Common7\IDE\ProjectTemplatesCache\WiX\CustomActionCS.zip):
<WixCATargetsPath Condition=" '$(WixCATargetsPath)' == '' 
">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.0\Wix.CA.targets</WixCATargetsPath>
To
<WixCATargetsPath Condition=" '$(WixCATargetsPath)' == '' 
">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.5\Wix.CA.targets</WixCATargetsPath>

Kind regards,
Uwe
------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to