Frank Rocco
|
| Posted: 10/06/2002, 6:01 PM |
|
Hello,
In CCS, how do I update the Assembly.cs file?
I have an external DLL file that needs to be referenced and CCS will not
compile the .NET
app without referencing the DLL file.
I can load the project in vs.net and add the reference DLL to the Assembly,
but how is this done in CCS?
Thanks
Frank
|
|
|
 |
chucha
|
| Posted: 10/07/2002, 12:09 AM |
|
Hi Frank
For referencing on your DLL, you should open Common Files in CCS and
find MakeAll.bat. Then you should add the reference on your DLL into CSC
command string.
For example
C:\WINNT\Microsoft.NET\Framework\v1.0.3705\csc /w:2 /t:library
/out:bin\kb.dll /r:System.dll /r:System.Web.dll /r:System.Xml.dll
/r:System.Data.dll /r:<YOUR_DLL_NAME> /recurse:*.cs
b.r.
Stan Skorobogach
Frank Rocco wrote:
> Hello,
>
> In CCS, how do I update the Assembly.cs file?
> I have an external DLL file that needs to be referenced and CCS will not
> compile the .NET
> app without referencing the DLL file.
>
> I can load the project in vs.net and add the reference DLL to the Assembly,
> but how is this done in CCS?
>
> Thanks
> Frank
>
>
|
|
|
 |
|