2

Following up from my last question: I did all the steps provided by Steve, the SxS Parse log is empty, but I still get a "Class Not Registered" error.

I know my .exe is using my custom .manifest, because if I change the Version of my assembly to something incorrect, I get the "Side-by-side configuration" error, however when everything matches, I get the Class Not Registered error.

The .manifests I use are found in my last question.

Thanks!

Community
  • 1
  • 1
Jeff
  • 12,085
  • 12
  • 82
  • 152

1 Answers1

1

try this and skip side by side manifests. my findings are they don't work.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
    <ms_asmv2:trustInfo xmlns:ms_asmv2="urn:schemas-microsoft-com:asm.v2">
        <ms_asmv2:security>
            <ms_asmv2:requestedPrivileges>
                <ms_asmv2:requestedExecutionLevel level="asInvoker">
                </ms_asmv2:requestedExecutionLevel>
            </ms_asmv2:requestedPrivileges>
        </ms_asmv2:security>
    </ms_asmv2:trustInfo>
</assembly>
Jim Michaels
  • 669
  • 5
  • 9
  • Thanks for your answer, however this question is very old, and so I cannot try this out, since I am no longer working on the project the question was meant for. :) – Jeff May 04 '12 at 09:10