Is there a Visual Studio C# equivalent of the Visual Studio C++ Makefile project - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T03:14:55Zhttp://stackoverflow.com/feeds/question/664242http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/664242/is-there-a-visual-studio-c-equivalent-of-the-visual-studio-c-makefile-project2Is there a Visual Studio C# equivalent of the Visual Studio C++ Makefile projectnzpcmad2009-03-19T22:02:45Z2009-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#6642525Answer by Anton Tykhyy for Is there a Visual Studio C# equivalent of the Visual Studio C++ Makefile projectAnton Tykhyy2009-03-19T22:05:43Z2009-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#8546612Answer by Roger Lipscombe for Is there a Visual Studio C# equivalent of the Visual Studio C++ Makefile projectRoger Lipscombe2009-05-12T20:16:48Z2009-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#8546950Answer by majkinetor for Is there a Visual Studio C# equivalent of the Visual Studio C++ Makefile projectmajkinetor2009-05-12T20:22:47Z2009-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#12232780Answer by Aaron for Is there a Visual Studio C# equivalent of the Visual Studio C++ Makefile projectAaron2009-08-03T16:28:09Z2009-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>