Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What build tool do you use professionally?

At home, I use CTRL+SHIFT+B or F7 or whatever key sequence initiates the build for my build tool. At work, this doesn't quite cut it.

At my first job (an internship) we used a product called Visual Build, which I have come to like very much. It's the best build tool I've ever worked with. The down side here is that it's not free.

At my latest job, I came in knowing literally nothing about Ant. Now, unfortunately, I've become deeply involved in our build processes, and cannot extricate myself. It works, yes, but after coming from Visual build, it seems like it's fighting me every step of the way. Yes, it's free, but we're not trying to be a free-software-only development company or anything.

I've never looked in to make or any other build tools, so I don't really know what else is out there.

Has anybody ever seen or had experience with Visual Build? Mostly I'm fond of a few key things:

  1. it has a GUI
  2. it runs arbitrary VBScript without the need of a compiled class
  3. you can step through the build process, or start from anywhere in the middle.

Are there any free build tools that have this? Is there any way to convince people that it's worth it to move on? It's 2008. We use IDEs to develop, why not (IBEs) to build?

Edit: I'm mostly looking for an answer to my last questions; Is there a solution with a built-in GUI that I can use for free?

like image 363
Ed Marty Avatar asked Dec 14 '22 05:12

Ed Marty


2 Answers

Not very sophisticated, but we use a set of batch files. And that works great.

like image 98
Toon Krijthe Avatar answered Dec 21 '22 02:12

Toon Krijthe


We use FinalBuilder - I think it's very similar to VisualBuild, though I've not used the latter.

It does run from the command line, and you can integrate it with CC.Net if you want.

like image 20
Will Dean Avatar answered Dec 21 '22 02:12

Will Dean