Is devenv part of the Microsoft .NET Framework?

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

Guest

Hi,

I was just wondering if devenv comes with the .NET framework. Or does it come with the Visual Studio IDE?

I am trying to write an automated build process for the deployment of my company's software. I want to use devenv in the makefile. It would make sense to include it in the framework, but then again, typing just devenv launches VS IDE. Thus my confusion

Of course, when the software is deployed on the client computer, they will not have VS installed... only the .NET framework

Thank

Petey
 
petey said:
I was just wondering if devenv comes with the .NET framework. Or does
it come with the Visual Studio IDE?

The latter.
I am trying to write an automated build process for the deployment of
my company's software. I want to use devenv in the makefile. It would
make sense to include it in the framework, but then again, typing
just devenv launches VS IDE. Thus my confusion.

Type devenv /? and you'll get a list of command line options to use.
Of course, when the software is deployed on the client computer, they
will not have VS installed... only the .NET framework.

In that case I suggest you use NAnt instead - http://nant.sf.net
 
Back
Top