error LGHT0132: The assembly file 'somedll.dll' appears to be invalid. Please ensure this is a valid assembly file and that the user has the appropriate access rights to this file.
It is strange cos it happens only in few machines. Following below steps might resolve the error
1. Open your *.wixproj file for editing.
2. Add <SuppressAssemblies>True<SuppressAssemblies> under a 'PropertyGroup' that has relevant 'Light' settings.
example:
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
I identified above as my relevant PropertyGroup becauase it contains 'WixVariables'(LIGHT related task), so i just need to insert <SuppressAssemblies>True<SuppressAssemblies> into this PropertyGroup.
No comments:
Post a Comment