Reputation: 61
I need create makefile for my C# project. Solution contains two projects (class library and tests). I am using Visual Studio 2013.
Is there any tool for creating makefile? Or can I create makefile manually?
Project need to be compiled in Mono and project also need makefile for GNU make.
Upvotes: 2
Views: 990
Reputation: 2929
It depends which Build System you want to use. Actually you already have your make file.. it's the .sln
and the .csproj
Files. You can make it by calling msbuild.exe YourSolution.sln
or msbuild.exe YourProjectFile.csproj
. In Visual Studio you can right click then Project File, Unload it and edit it to extend the build process.
Upvotes: 1