Remoting facilities on Visual Studio 2008 - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T09:26:27Zhttp://stackoverflow.com/feeds/question/78303http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/78303/remoting-facilities-on-visual-studio-20080Remoting facilities on Visual Studio 2008Vinko Vrsalovic2008-09-16T23:22:26Z2008-09-21T17:52:48Z
<p>I'm toying with my first remoting project and I need to create a RemotableType DLL. I know I can compile it by hand with csc, but I wonder if there are some facilities in place on Visual Studio to handle the Remoting case, or, more specificly, to tell it that a specific file should be compiled as a .dll without having to add another project to a solution exclusively to compile a class or two into DLLs. </p>
<p>NOTE: I know I should toy with my first WCF project, but this has to run on 2.0.</p>
http://stackoverflow.com/questions/78303/remoting-facilities-on-visual-studio-2008/78311#783110Answer by chakrit for Remoting facilities on Visual Studio 2008chakrit2008-09-16T23:24:21Z2008-09-16T23:24:21Z<p>None that I know of using VS 2008 at the moment.</p>
<p>But you might want to check out <strong><a href="http://nant.sourceforge.net/" rel="nofollow">NAnt</a></strong>. It is made for this kind of work.</p>
http://stackoverflow.com/questions/78303/remoting-facilities-on-visual-studio-2008/78677#786770Answer by Min for Remoting facilities on Visual Studio 2008Min2008-09-17T00:33:37Z2008-09-17T00:33:37Z<p>You can get away with just calling csc.exe on the pre-build event if you don't want to mess with the .proj file directly and add build events.</p>