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

  1. all: ProxyWithReturnMessage.exe ProxyWithCustomCasting.exe ProxyWiredToHttpChannel.exe
  2.  
  3. ProxyWithReturnMessage.exe: ProxyWithReturnMessage.cs
  4.     csc /debug+ ProxyWithReturnMessage.cs
  5.  
  6. ProxyWithCustomCasting.exe: ProxyWithCustomCasting.cs
  7.     csc /debug+ ProxyWithCustomCasting.cs
  8.  
  9. Hello.dll:
  10.   cd ..\..\Basic\RemotingHello\Service
  11.   nmake
  12.   cd ..\..\..\advanced\CustomProxies
  13.   copy ..\..\basic\RemotingHello\bin\Hello.dll
  14.  
  15. ProxyWiredToHttpChannel.exe: Hello.dll ProxyWiredToHttpChannel.cs
  16.     csc /debug+ /r:Hello.dll /r:System.Runtime.Remoting.dll ProxyWiredToHttpChannel.cs
  17.  
  18. run:
  19.     ProxyWithReturnMessage.exe 
  20.     ProxyWithCustomCasting.exe 
  21.     ProxyWiredToHttpChannel.exe