B
Brian Hman
I'm am building a C# assembly using csc.exe, and I'm getting the following
error:
XmlResponder.cs(5,23): error CS0234: The type or namespace name 'VB' does not
exist in the namespace 'Regulatory.Data' (are you missing an assembly
reference?)
Now this appears to indicate that I need to add a reference to the command
line arguments. The confusing part here is that I have two assemblies with
almost the same name: Regulatory.Data.dll and Regulatory.Data.VB.dll, and I
call the both with the /reference argument to the compiler like this:
/reference:d:\builds\output\Regulatory.Data.dll
/reference:d:\builds\output\Regulatory.Data.VB.dll
Since I reference both here, why do I get the error? Do I need to add an
argument to tell the compiler about the similar but seperate names? Does the
have to do with the order?
Any direction is appreciated!
Thanks,
Brian Hman
error:
XmlResponder.cs(5,23): error CS0234: The type or namespace name 'VB' does not
exist in the namespace 'Regulatory.Data' (are you missing an assembly
reference?)
Now this appears to indicate that I need to add a reference to the command
line arguments. The confusing part here is that I have two assemblies with
almost the same name: Regulatory.Data.dll and Regulatory.Data.VB.dll, and I
call the both with the /reference argument to the compiler like this:
/reference:d:\builds\output\Regulatory.Data.dll
/reference:d:\builds\output\Regulatory.Data.VB.dll
Since I reference both here, why do I get the error? Do I need to add an
argument to tell the compiler about the similar but seperate names? Does the
have to do with the order?
Any direction is appreciated!
Thanks,
Brian Hman