Is there a Visual Studio C# equivalent of the Visual Studio C++ Makefile project - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T03:14:55Z http://stackoverflow.com/feeds/question/664242 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/664242/is-there-a-visual-studio-c-equivalent-of-the-visual-studio-c-makefile-project 2 Is there a Visual Studio C# equivalent of the Visual Studio C++ Makefile project nzpcmad 2009-03-19T22:02:45Z 2009-08-03T16:28:09Z <p>In Visual C++ inside Visual Studio, one of the project subtypes is a "Makefile" Project.</p> <p>But there doesn't seem to be an equivalent for Visual C# inside Visual Studio?</p> <p><hr /></p> <p>BTW, a Makefile project is:</p> <p>"If you have a project that you build from the command line with a makefile, then the Visual Studio development environment will not recognize your project. To open and build your project using Visual Studio, first create an empty project containing the appropriate build settings using the Makefile Project Wizard. You can then use this project to build your project from the Visual Studio development environment. </p> <p>The project displays no files in Solution Explorer. The project specifies the build settings, which are reflected in the project's property page."</p> http://stackoverflow.com/questions/664242/is-there-a-visual-studio-c-equivalent-of-the-visual-studio-c-makefile-project/664252#664252 5 Answer by Anton Tykhyy for Is there a Visual Studio C# equivalent of the Visual Studio C++ Makefile project Anton Tykhyy 2009-03-19T22:05:43Z 2009-03-19T22:07:24Z <p>The equivalent of <code>make</code> in Visual Studio world is <code>msbuild</code>. Visual Studio does not use <code>make</code>. <code>.csproj</code>, <code>.vbproj</code> etc. are input files for <code>msbuild</code>. You can do pretty much the same stuff in them as in conventional makefiles, including command line building, custom targets etc.</p> http://stackoverflow.com/questions/664242/is-there-a-visual-studio-c-equivalent-of-the-visual-studio-c-makefile-project/854661#854661 2 Answer by Roger Lipscombe for Is there a Visual Studio C# equivalent of the Visual Studio C++ Makefile project Roger Lipscombe 2009-05-12T20:16:48Z 2009-05-12T20:16:48Z <p>There's nothing C++-specific about the Makefile project type; it just runs a command line. It's just that it's listed along with the Visual C++ project types. You can add one to a solution that otherwise contains nothing but C# projects.</p> <p>Alternatively, you could set up a pre-build step in your C# project that directly runs nmake, msbuild or even NAnt.</p> http://stackoverflow.com/questions/664242/is-there-a-visual-studio-c-equivalent-of-the-visual-studio-c-makefile-project/854695#854695 0 Answer by majkinetor for Is there a Visual Studio C# equivalent of the Visual Studio C++ Makefile project majkinetor 2009-05-12T20:22:47Z 2009-05-12T20:22:47Z <p>Keep in mind that Visual C++ 2010 will use msbuild format as native.</p> <p>Read more about it <a href="http://local.developer.com/MSBuild%5FFeatures%5Ffor%5FVisual%5FC-a1118621.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/664242/is-there-a-visual-studio-c-equivalent-of-the-visual-studio-c-makefile-project/1223278#1223278 0 Answer by Aaron for Is there a Visual Studio C# equivalent of the Visual Studio C++ Makefile project Aaron 2009-08-03T16:28:09Z 2009-08-03T16:28:09Z <p>Msbuild is what is used to build your projects when you hit the Play button. Personally I like <a href="http://nant.sourceforge.net/" rel="nofollow">NAnt</a> + <a href="http://nantcontrib.sourceforge.net/" rel="nofollow">NantContrib</a> it was easier for me to pick up and start using right away. For all new projects I use <a href="http://www.codeplex.com/treesurgeon" rel="nofollow">tree surgeon</a> this tool creates a default build script and proper build tree with testing project and code coverage report.</p>