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\""

  • 相关阅读:
    一些至理名言
    移除快捷方式上面那个丑陋的小箭头
    一些浏览器插件
    yahoo给出的关于网站优化的建议
    javascript 事件流
    关于mongodb的一些笔记
    WebStorm
    给go添加各种package
    工具类 util.Date 日期类
    几种简单排序算法
  • 原文地址:https://www.cnblogs.com/wangp2012/p/2770961.html
Copyright © 2011-2022 走看看