Error compiling V10 extensibility project

1

I have a dll in VB.Net (migration from V9 to V10) that inherits from Custom Code. When compiling gives the following error.

  

Can not register assembly "C: \ Projects ...... \ Test.dll". Could not   load file or assembly 'Spring.Extensibility.Integration,   Version = 10.0.0.0, Culture = neutral, PublicKeyToken = 11cd844aca152173 'or   one of its dependencies. The system can not find the specified file.

I have the AssemblyResolve and all references are false in CopyLocal and Embed Interop Types

    
asked by anonymous 09.10.2018 / 14:07

1 answer

1

Passing the comment to answer, the problem is in the project build configuration, where we must disable the Register for COM interop option:

    
09.10.2018 / 20:07