Remoting facilities on Visual Studio 2008 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T09:26:27Z http://stackoverflow.com/feeds/question/78303 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/78303/remoting-facilities-on-visual-studio-2008 0 Remoting facilities on Visual Studio 2008 Vinko Vrsalovic 2008-09-16T23:22:26Z 2008-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#78311 0 Answer by chakrit for Remoting facilities on Visual Studio 2008 chakrit 2008-09-16T23:24:21Z 2008-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#78677 0 Answer by Min for Remoting facilities on Visual Studio 2008 Min 2008-09-17T00:33:37Z 2008-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>