compiler

  • Thread starter Thread starter capt edgar
  • Start date Start date
C

capt edgar

Hi there
i'm writing a C sharp application which will get the changes made
to .cls files in any vbp i.e. visualbasicprojects and do the make task
i.e. compile task i.e. build .dlls. I want to automate this task
completely. can anyone advice what class methods etc i need to achieve
this please or even guide me. newbie here

regards
 
capt said:
Hi there
i'm writing a C sharp application which will get the changes made
to .cls files in any vbp i.e. visualbasicprojects and do the make task
i.e. compile task i.e. build .dlls. I want to automate this task
completely. can anyone advice what class methods etc i need to achieve
this please or even guide me. newbie here

FileSystemWatcher will help you monitor files and folders for changes.
You can use the Process class to execute builds, assuming you've got a
command-line build process that works already.

Pete
 
Back
Top