How to run Ant inside Visual Studio 2008?

I am wondering if anyone has any ideas on how to run Ant inside Visual Studio 2008. I want to perform some fairly common Ant tasks, such as choosing a target to run inside the build file,

I came across, and I know that NANT, as well as MSBUILD, are the preferred build tools for ASP.NET projects, but I'm only interested in some ideas about running Ant in the IDE.

Thanks in advance!

+3
source share
1 answer

As a quick and dirty solution, you can add it using the "External Tools ..." option in the "Tools" menu.

Ant , , Project .

Tools.ExternalCommandXX, "".

+4

Source: https://habr.com/ru/post/1723245/


All Articles