• [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.

     

  • 相关阅读:
    c# 启动线程的方式
    c# 打开文件夹获取所有文件
    windows server 2008 R2 SP1 安装SQL Server 2008 R2时提示 "此操作系统不支持此版本的 SQL Server 版本"
    mongodb 备份 指定用户名密码
    c# 线程启动的两种方式与传参
    vs 2015 密钥
    c# 时间格式yyyy-MM-ddTHH:mm:ss
    c# oledb sql 报错 标准表达式中数据类型不匹配
    CentOS下yum安装dnsmasq,并强制替换为最新版
    使用QUOTA(磁盘配额)来限制用户空间
  • 原文地址:https://www.cnblogs.com/taoxu0903/p/1708681.html
Copyright © 2020-2023  润新知