HELP PLEASE - Delay Signing ERROR  
Author Message
numberOneFootballFan





PostPosted: .NET Base Class Library, HELP PLEASE - Delay Signing ERROR Top

When compiling, i get the following error.

Preparing resources...
Updating references...
Performing main compilation...
vbc : error BC30145: Unable to emit assembly: Referenced assembly 'Interop.THEDLLNAME' does not have a strong name
Building satellite assemblies...
Satellite assemblies could not be built because the main project output is missing.

WHEN THE LINE '<Assembly: AssemblyKeyFileAttribute("pubMYky.snk")> ' is commented out, the code compiles fine. What is the problem here what am I doing wrong Is there a problem with 'Interop.THEDLLNAME' THEDLLNAME is a windows system file. I have 'pubmyky.snk' in the project, bin, and release directories and I am still having this problem.


Imports System
Imports System.Reflection
Imports System.Reflection.Emit
Imports System.Resources

<Assembly: AssemblyKeyFileAttribute("pubMYky.snk")>
<Assembly: AssemblyDelaySignAttribute(True)>



.NET Development13