can you specify version when compiling from command line?

G

Guest

I am trying to compile two web service proxies into a dll for use in a web app. I am compiling from the command line and all I get for version is 0.0.0.0

C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\csc.exe /t:library /out:ReportsBusiness.dll UpdateProcessID.cs InsertReport.cs /r:C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.Xml.dll /r:DataReport.dll

Is there an option to specify version whenever I build
 
P

Patrice Scribe

AFAIK it is actually to specify in one of your source code file (for example
by adding an "assemblyinfo.cs" file as done automatically by VS.NET).

Patrice

--

Chris said:
I am trying to compile two web service proxies into a dll for use in a web
app. I am compiling from the command line and all I get for version is
0.0.0.0.
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\csc.exe /t:library
/out:ReportsBusiness.dll UpdateProcessID.cs InsertReport.cs
/r:C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.Xml.dll
/r:DataReport.dll
 

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