home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 September / VPR0309.ISO / DOTNETSDK / dotNETSDK / setup.exe / netfxsd1.cab / makefile_753________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Makefile  |  2001-09-27  |  310 b   |  16 lines

  1. all: Hello.dll DirectHost.exe 
  2.  
  3. Hello.dll: 
  4.   cd ..
  5.   csc /debug+ /t:library /out:Hello.dll HelloService.cs
  6.   cd DirectHostService
  7.   copy ..\..\bin\Hello.dll 
  8.   
  9.  
  10. DirectHost.exe: DirectHost.cs
  11.   csc /debug+ /r:System.Runtime.Remoting.dll DirectHost.cs
  12.  
  13. run:
  14.   DirectHost -cfg RemotingHello.cfg
  15.  
  16.