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
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
> 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?