IfYouSaySo
Well-known member
Ok, so I've written a library in VB.NET (.NET data provider), I have the .dll. I gave it a strong name via sn.exe -k key.snk and then referenced the key file in the assemblyinfo.vb file. I ran gacutil i/ MyCompany.CsvProvider.dll and it says it installed properly in the gac, I verified that there is an entry for my dll in C:\Windows\assembly\ which is I assume the location of the GAC. At this point I thought I should be able to reference the .dll from another project(?), so I start another project and do:
and Visual studio complains: Module1.vb(1): Namespace or type 'CsvProvider' for the Imports 'MyCompany.CsvProvider' cannot be found.
Any ideas on what I'm missing?
Thanks...
VB.NET:
Imports MyCompany.CsvProvider
Module Module1
Public Sub Main
Dim x As New CsvConnection
' etc.
End Sub
End Module
and Visual studio complains: Module1.vb(1): Namespace or type 'CsvProvider' for the Imports 'MyCompany.CsvProvider' cannot be found.
Any ideas on what I'm missing?
Thanks...