[Tip]Add VS Command Prompt As External Tool Into VS In Case missing it

Link from Code Project: http://www.codeproject.com/KB/dotnet/VSCPinYourIDE.aspx

How to add VSCP to your IDE

We can add the VSCP as a tool in the IDE so it will be very easy to access the VSCP from the IDE itself.

  1. In your IDE, go to Tools -> External Tools..
  2. Click on the Add button.
    1. Give a title of your own like “Command Prompt”.
    2. In the ‘Command’ area, specify the path either by typing “C:\Windows\System32\cmd.exe” or by browsing to the folder “C:\Windows\System32” and selecting cmd.exe.
    3. In the arguments area, specify the text "C:\Program Files\Microsoft Visual Studio 8\Common7\Tools\vsvars32.bat".
    4. Set the Initial Directory to the solution directory.
  3. Click on the OK button.
  4. Now, the Visual Studio Command Prompt is available in the IDE tools menu.

Whenever you need the command prompt in the IDE, you can use this tool option and the command prompt will be available.

Addition

Now, you may ask the question “what is the difference between the system command prompt and the VSCP?”

We can consider the VSCP as just a wrapper of the system command prompt. The VSCP will simply load the environment settings for the .NET framework so that you can use any of the framework tools in the command prompt and execute it without any errors like '...not recognized as an internal or external command..'. It is not necessary that we should use VSCP for using Visual Studio tools like sn.exe, gacutil.exe, etc. If you have set the environment variables properly for executing Visual Studio commands, you can use the system command prompt itself to use Visual Studio tools. Otherwise, you will get an error.

What is vsvars32.bat?

Go to step 2. c, and you can notice the argument vsvars32.bat. What is this vsvars32.bat? It is simply a batch file setting the environment variables for the .NET framework tools. You can navigate to C:\Program Files\Microsoft Visual Studio 8\Common7\Tools\ (in the case of Visual Studio 2008) and open the batch file vsvars32.bat for editing, and you will get a clear picture on the environment variable settings for the .NET Framework.

 

原文地址:https://www.cnblogs.com/taoxu0903/p/1708681.html