compiler

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
 
P

Peter Duniho

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top