>I have been looking through the Framework SDK and cannot work out how
>to add a web reference when I run CSC. Could someone point me in the
>right direction?
All that happens when you add a web reference in VS is that it
generates a source file with proxy code. As long as you compile with
that file it should work. If you don't have it, you can generate it
with Wsdl.exe.
Mattias

Signature
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
gbagshaw@gmail.com - 10 Mar 2006 14:17 GMT
Thanks Mattias,
I understand now and got it to compile using:-
csc /target:library /out:Demo.dll /debug
/recurse:C:\Inetpub\wwwroot\Demo\*.cs
Thanks again
Baggy