Its back. Attaching files.. please help.

add.cs - library
add.snk - key
             csc /target:library /keyfile:add.snk add.cs

adder.cs - console app making use of GACed add.dll
             csc /r:add.dll adder.cs

GACTest.wxs - wix source
             candle GACTest.wxs
             light GACTest.wixobj
Part of verbose log file

MSI (s) (A4:D0) [16:11:01:623]: Executing op:
End(Checksum=0,ProgressTotalHDWord=0,ProgressTotalLDWord=24000)
MSI (s) (A4:D0) [16:11:01:624]: Note: 1: 1935 2:
{6A3E31E7-5053-497C-A057-3837C6C7ED5F} 3: 0x80131043 4: IAssemblyCacheItem
5: Commit 6: 
add,version="1.0.0.0",culture="neutral",publicKeyToken="0D7DC61DB0CCECEB",processorArchitecture="MSIL"

MSI (s) (A4:D0) [16:11:01:624]: Note: 1: 2205 2:  3: Error
MSI (s) (A4:D0) [16:11:01:624]: Note: 1: 2228 2:  3: Error 4: SELECT
`Message` FROM `Error` WHERE `Error` = 1935
MSI (c) (F0:34) [16:11:01:626]: Font created.  Charset: Req=0, Ret=0, Font:
Req=MS Shell Dlg, Ret=MS Shell Dlg
Error 1935. An error occurred during the installation of assembly
'add,version="1.0.0.0",culture="neutral",publicKeyToken="0D7DC61DB0CCECEB",processorArchitecture="MSIL"'.
Please refer to Help and Support for more information. HRESULT: 0x80131043.
assembly interface: IAssemblyCacheItem, function: Commit, component:
{6A3E31E7-5053-497C-A057-3837C6C7ED5F}
MSI (s) (A4:D0) [16:11:03:445]: Note: 1: 2205 2:  3: Error
MSI (s) (A4:D0) [16:11:03:445]: Note: 1: 2228 2:  3: Error 4: SELECT
`Message` FROM `Error` WHERE `Error` = 1709
MSI (s) (A4:D0) [16:11:03:445]: Product: GAC Test -- Error 1935. An error
occurred during the installation of assembly
'add,version="1.0.0.0",culture="neutral",publicKeyToken="0D7DC61DB0CCECEB",processorArchitecture="MSIL"'.
Please refer to Help and Support for more information. HRESULT: 0x80131043.
assembly interface: IAssemblyCacheItem, function: Commit, component:
{6A3E31E7-5053-497C-A057-3837C6C7ED5F}
Action ended 16:11:03: InstallFinalize. Return value 3.

On Wed, Jul 30, 2008 at 3:01 PM, Harshal Pachpande <
[EMAIL PROTECTED]> wrote:

>  deep regrets for sending incomplete message. I think setting
> Compressed="no" for package might help. I havent got any failure yet, tried
> twice. If I see this again I will notify.
>
> Any comments/suggestions is greatly appreciated.
>   On Wed, Jul 30, 2008 at 2:58 PM, Harshal Pachpande <
> [EMAIL PROTECTED]> wrote:
>
>>  Hello WIXers,
>> I know this issue has been floating around, I would like few pointers to
>> help diagnose the error.
>> http://www.mail-archive.com/wix-users@lists.sourceforge.net/msg03238.html 
>> mentions
>> that hash of each module (/stream?) is checked against that of file and for
>> some reason if there is a mismatch this error is returned and installation
>> fails.
>>
>> Attaching everything.
>>
>
>
using System;
using System.Reflection;

[assembly: AssemblyVersion("1.0.0.0")]

namespace MyNamespace
{
    public class MyClass
    {
        public int CustomAdd(int a, int b)
        {
            return a+b;
        }
    }
}
using System;
using MyNamespace;

namespace GACTesterNamespace
{
    class Adder
    {
        public static void Main(string[] args)
        {
            MyClass a = new MyClass();
            Console.WriteLine(a.CustomAdd(5, 4));
        }
    }
}
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to