CSC command prompt problem

G

Guest

can anyone tell me why I may be getting a compiler limit exceeded error
(cs1034) for the following command. --- csc /t:library /out:reocs.dll
reocs.cs /r:System.dll,System.Web.dll,Microsoft.Data.Odbc.dll
 
J

Jon Skeet [C# MVP]

Kent said:
can anyone tell me why I may be getting a compiler limit exceeded error
(cs1034) for the following command. --- csc /t:library /out:reocs.dll
reocs.cs /r:System.dll,System.Web.dll,Microsoft.Data.Odbc.dll

It may well depend on the contents of reocs.cs - do you have any
particularly large lines in there?

Note that System.dll and System.Web.dll are both included automatically
from csc.rsp (in the framework directory) by default.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top