Nuget package, trying to put into WiX installer

I have desktop project we are using this library for licensing going forward. Everything works debugging, etc. When I attempt to put into our WiX installer, adding the files via these lines

<Component Id="CryptlexLexActivator" Guid="D30537DA-3A6F-4BCD-8D59-EB45C8515EA6">
        <File Id="Cryptlex.LexActivator.dll"
          Source="..\..\Binaries\x86\Cryptlex.LexActivator.dll"
          AssemblyApplication="Cryptlex.LexActivator.dll"
          AssemblyManifest="Cryptlex.LexActivator.dll"
          Assembly=".net"
          KeyPath="yes" />
      </Component>

      <Component Id="LexActivator32" Guid="0CDF4532-630F-4AAC-859A-7ECF036A06C3">
        <File Id="LexActivator32.dll"
          Source="..\..\Binaries\x86\LexActivator32.dll"
          AssemblyApplication="LexActivator32.dll"
          AssemblyManifest="LexActivator32.dll"
          Assembly=".net"
          KeyPath="yes" />
      </Component>

Cryptlex.LexActivator.dll appears to work fine, but the LexActviator throws this error:

 Error LGHT0132: The assembly file 'Binaries\x86\LexActivator32.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.  More information: HRESULT: 0x80131018

I am using version 3.30.6

I have manage to fix the problem by changing the LexActivator32.dll line to this

 <Component Id="LexActivator32" Guid="0CDF4532-630F-4AAC-859A-7ECF036A06C3">
  <File Id="LexActivator32.dll" Source="..\..\Binaries\x86\LexActivator32.dll" />
 </Component>

Hi @bk_broiler_730,

Thank you for reaching out!

Glad to know that the issue is resolved. However we would recommend updating the Nuget LexActivator version to latest i.e. 3.31.1