zoukankan      html  css  js  c++  java
  • 右键集成vs编译

    适合vs2005以上,不过我这个注册表是针对2008的,如果是其他版本自己看着修改

    如果地址不是默认的请修改找到自己的MsBuild,2005的也自己找到后修改

    Windows Registry Editor Version 5.00
    [HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell]
    [HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\build]
    @="编译(Debug)"
    [HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\build\command]
    @="cmd /K \"C:\\WINDOWS\\Microsoft.NET\\Framework\\v3.5\\MSBuild.exe \"%1\"\""

    [HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\buildRelease]
    @="编译(Release)"
    [HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\buildRelease\command]
    @="cmd /K \"C:\\WINDOWS\\Microsoft.NET\\Framework\\v3.5\\MSBuild.exe \"%1\" /p:Configuration=Release\""

    [HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\reBuild]
    @="重新编译(Debug)"
    [HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\reBuild\command]
    @="cmd /K \"C:\\WINDOWS\\Microsoft.NET\\Framework\\v3.5\\MSBuild.exe \"%1\" /t:Rebuild\""

    [HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\reBuildRelease]
    @="重新编译(Release)"
    [HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\reBuildRelease\command]
    @="cmd /K \"C:\\WINDOWS\\Microsoft.NET\\Framework\\v3.5\\MSBuild.exe \"%1\" /t:Rebuild /p:Configuration=Release\""

  • 相关阅读:
    php 二维数组索引乱序 shuffle() 函数;
    php-m 与 phpinfo 不一致的解决办法
    javascript 数组去重
    javascript 闭包实现的5种方法
    javascript 下 function 和 Function的区别
    解决ThinkPhp在nginx下404问题
    TP5.1中的验证类 validate用法
    webstrom 快捷键
    css中可以和不可以继承的属性
    封装 class 类 js
  • 原文地址:https://www.cnblogs.com/wangp2012/p/2770961.html
Copyright © 2011-2022 走看看