Removing Intermediate Files (obj's, etc.)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi there.
In the old Visual Studio, there's an option for "Build Clean" which, as I understand it, will clean up the object files, exe's, etc. (without re-building them afterwards).
Is there a similar option in VB .NET 2002? I can't seem to find one, other than manually cleaning up all those filesmyself.

Thanks,
Pete
 
* =?Utf-8?B?UGV0ZSBKb2huc29u?= said:
In the old Visual Studio, there's an option for "Build Clean" which,
as I understand it, will clean up the object files, exe's, etc. (without
re-building them afterwards).
Is there a similar option in VB .NET 2002? I can't seem to find one,
other than manually cleaning up all those filesmyself.

AFAIK, no. You will have to write a batch file, for example, that
performs the cleanup. As an alternative, you could write an add-in for
the IDE that deletes the files after the build process has been finished.
 
Back
Top