Hey,
in the source code the first line is Imports Velleman.Kits
but I cannot find it.
Can somebody help me please?
Kind regards,
Christ
Hey,
in the source code the first line is Imports Velleman.Kits
but I cannot find it.
Can somebody help me please?
Kind regards,
Christ
K8101.dll is a .NET assembly file that contains the Velleman.Kits namespace. It needs to be added as a Reference in any .NET application that intends to use anything in that namespace.
Thank you for your help.
When I then tried to rebuild the solution I received the following error:
"Unable to find manifest signing certificate in the certificate store"
As I was sure that I wasn’t using any certificate to sign the assembly I couldn’t understand the reason for this error message and the integrated help system for Visual Studio wasn’t a big help either. It turned out that I had to manually go into the *.vbproj file and remove the following four lines that were apparently left over from some past experiments with signing using a certificate:
<manifestcertificatethumbprint>...</manifestcertificatethumbprint>
<manifestkeyfile>...</manifestkeyfile>
<generatemanifests>...</generatemanifests>
<signmanifests>...</signmanifests>
After I had removed those lines I reloaded the project and the solution rebuilt just fine.