Programming the VS .NET Command Prompt

  • Thread starter Thread starter Howard Kaikow
  • Start date Start date
* "Howard Kaikow said:
Is it possible to program the use of the VS .NET Command Prompt?

I am not sure what you want to do. Can you provide more details?
 
* "Howard Kaikow said:
I want to programmatically use, e.g., regasm.

You will have to make sure the appropriate environment variables are set
and then call 'regasm' using 'Process.Start', for example. AFAIR
VS.NET's command prompt simply calls a batch file that does this stuff.
 
Where do I get info on the appropriate environment variables?
It would seem that not all would be needed just to execute regasm.
 
* "Howard Kaikow said:
Where do I get info on the appropriate environment variables?
It would seem that not all would be needed just to execute regasm.

I think there are none needed to execute "regasm", if you have the path
to the "regasm.exe" file.
 
Back
Top