Visual Build Tool

  • Thread starter Thread starter BuddyWork
  • Start date Start date
B

BuddyWork

Hello,

Done anyone know of any good or free .Net build tools. I want to build
multiple solutions but want to automate the build process, I know in
Whidbey there is MSBuild but that does not help as yet.

Thanks
 
Yes, but I don't want to generate any new format project files, I want
to use my existing csproj, vbproj and vcproj. Do you know of any tools
that will build them just like the IDE does but I want a visual
interface just around building.
 
BuddyWork said:
Yes, but I don't want to generate any new format project files, I want
to use my existing csproj, vbproj and vcproj. Do you know of any tools
that will build them just like the IDE does but I want a visual
interface just around building.

You can use the <solution> task of NAnt to build VS.NET solutions.

I'm afraid if that doesn't help you, I don't know of any other options.

I know that at work I wrote my own little build GUI which ran the
existing build script and filtered the results appropriately, but
whether that would suit your environment or not entirely depends on the
rest of your setup.
 
Back
Top