View previous topic :: View next topic |
Author |
Message |
soltecllc Guest
|
Posted: Fri Aug 04, 2006 8:11 pm Post subject: Error: Unable to emit assembly: Referenced assembly |
|
|
Error 1 Unable to emit assembly: Referenced assembly 'Infralution.Licensing' does not have a strong name
VB.NET 2005
ClickOnce Install
Enable ClickOnce Security Settings
References:
Infralution.Licensing
Microsoft WMI Scripting
System
System.Data
System.Deployment
System.Drawing
System.Management
System.ServiceProcess
System.Windows.Forms
System.XML
Imports:
Imports System
Imports Microsoft.Win32
Imports System.ServiceProcess
Imports System.Threading
Imports System.net
Imports System.IO
Imports System.Text.RegularExpressions
Imports System.Drawing
Imports System.Collections
Imports System.ComponentModel
Imports System.Windows.Forms
Imports Infralution.Licensing |
|
Back to top |
|
|
Infralution
Joined: 28 Feb 2005 Posts: 5027
|
Posted: Sat Aug 05, 2006 12:30 am Post subject: |
|
|
The Infralution.Licensing.dll binary that we ship does have a strong name - and so if you are referencing it you should not get an error.
I think you have probably recompiled the Infralution.Licensing.dll from the source code we provided and are referencing the recompiled DLL. Since we can't provide you with our private signing key this won't have a strong name - unless you modify it to include your own. We don't recommend using the DLL in production code. Generally you just copy the licensing classes contained in the DLL (EncryptedLicense, EncryptedLicenseProvider and LicenseInstallForm) into your own project to eliminate the need for a separate DLL.
If for some reason you need/want to use the DLL then we would recommend using the binary included in our installer. _________________ Infralution Support |
|
Back to top |
|
|
|