T
tshad
I am running make files to build my dlls. I have a web site where my dlls
are in my bin folder and my classes are in a Class folder as are the make
files.
If I run the following from my Classes file
(c:\inetpub\wwwroot\stw\classes), it works fine
vbc /t:library email.vb /r:system.web.dll /r:system.data.dll /r:system.dll
/r:Microsoft.VisualBasic.dll /rosition.Dll /r:StripHtml.Dll
/rBObject.dll
For some reason, I have to put the whole path in from my csc file if my
class is in c#. But I can't find the StripHtml.dll file which is in the
c:\inetpub\wwwroot\stw\bin folder
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\csc /t:library Position.cs
/r:system.data.dll /r:system.dll /r:nullHandler.dll /rBTypes.dll
/rBObject.dll /r:StripHtml.dll
It gets the error:
error CS0006: Metadata file 'StripHtml.dll' could not be found
Why does this work for the vbc.exe program but not the csc.exe? Obviously
the StripHtml.dll file is in the bin folder since the vbc.exe program can
find it fine.
Thanks,
Tom
are in my bin folder and my classes are in a Class folder as are the make
files.
If I run the following from my Classes file
(c:\inetpub\wwwroot\stw\classes), it works fine
vbc /t:library email.vb /r:system.web.dll /r:system.data.dll /r:system.dll
/r:Microsoft.VisualBasic.dll /rosition.Dll /r:StripHtml.Dll
/rBObject.dll
For some reason, I have to put the whole path in from my csc file if my
class is in c#. But I can't find the StripHtml.dll file which is in the
c:\inetpub\wwwroot\stw\bin folder
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\csc /t:library Position.cs
/r:system.data.dll /r:system.dll /r:nullHandler.dll /rBTypes.dll
/rBObject.dll /r:StripHtml.dll
It gets the error:
error CS0006: Metadata file 'StripHtml.dll' could not be found
Why does this work for the vbc.exe program but not the csc.exe? Obviously
the StripHtml.dll file is in the bin folder since the vbc.exe program can
find it fine.
Thanks,
Tom