I am working on a big project in C ++. It is built using a single Ant script that allows you to compile the same source targeting on multiple platforms and compilers.
But I should only work for the Windows platform and the Visual Studio 2005 C ++ compiler. It would be very nice if I could write code and compile in Visual Studio instead of using Notepad ++ and Ant scripts, as now.
I tried installing Nant and Nant addin for Visual Studio 2005 and using the existing Ant script, but it seems that the Ant script cannot be used as a Nant script.
Is there any way to convert Ant script to Nant? Is there any other approach to the problem at all, or should I create the solution and Visual Studio projects manually?
I will try to avoid such a solution, because I have a bunch of tests that I do not know how to use in this case.
source
share