用資源管理員右鍵編譯 Visual Studio 解決方案檔案

來源:互聯網
上載者:User

標籤:

每次改動 VC 工程之後都要重新編譯,每次 VS 又會產生調試資料庫檔案,很費時間,於是研究了一下如何在資源管理員中直接編譯,還真發現瞭解決辦法。

以下是適用 Visual Studio 2008 的註冊表檔案,匯入系統之後右鍵點 .sln 檔案就會出來編譯的菜單了:

Windows Registry Editor Version 5.00[HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell][HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\Build Debug]@="使用 VCBuild 編譯 Debug(&D)"[HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\Build Debug\Command]@="cmd.exe /K \"\"C:\\Program Files\\Microsoft Visual Studio 9.0\\VC\\vcpackages\\vcbuild.exe\" \"%1\" \"Debug|Win32\"\""[HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\Bulild Release]@="使用 VCBuild 編譯 Release(&R)"[HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\Bulild Release\Command]@="cmd.exe /K \"\"C:\\Program Files\\Microsoft Visual Studio 9.0\\VC\\vcpackages\\vcbuild.exe\" \"%1\" \"Release|Win32\"\""

自 Visual Studio 2010 開始,微軟使用 MSBuild 取代了 Visual C++ 的 VCBuild,所以方法有些不同:

Windows Registry Editor Version 5.00[HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell][HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\Build Debug]@="使用 MSBuild 編譯 Debug(&D)"[HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\Build Debug\Command]@="cmd.exe /K \"C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\MSBuild.exe /m \"%1\" /p:Configuration=Debug /t:Build\""[HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\Bulild Release]@="使用 MSBuild 編譯 Release(&R)"[HKEY_CLASSES_ROOT\VisualStudio.Launcher.sln\Shell\Bulild Release\Command]@="cmd.exe /K \"C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\MSBuild.exe /m \"%1\" /p:Configuration=Release /t:Build\""

 

VS2013中右鍵編譯CSharp項目

Windows Registry Editor Version 5.00[HKEY_CLASSES_ROOT\VisualStudio.Launcher.csproj.12.0\Shell][HKEY_CLASSES_ROOT\VisualStudio.Launcher.csproj.12.0\Shell\Build Debug]@="使用 MSBuild 編譯 Debug(&D)"[HKEY_CLASSES_ROOT\VisualStudio.Launcher.csproj.12.0\Shell\Build Debug\Command]@="cmd.exe /K \"C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\MSBuild.exe /m \"%1\" /p:Configuration=Debug /t:Build\""[HKEY_CLASSES_ROOT\VisualStudio.Launcher.csproj.12.0\Shell\Bulild Release]@="使用 MSBuild 編譯 Release(&R)"[HKEY_CLASSES_ROOT\VisualStudio.Launcher.csproj.12.0\Shell\Bulild Release\Command]@="cmd.exe /K \"C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\MSBuild.exe /m \"%1\" /p:Configuration=Release /t:Build\""

 

VS2013中右鍵編譯CPP項目

Windows Registry Editor Version 5.00[HKEY_CLASSES_ROOT\VisualStudio.Launcher.vcxproj.12.0\Shell][HKEY_CLASSES_ROOT\VisualStudio.Launcher.vcxproj.12.0\Shell\Build Debug]@="使用 MSBuild 編譯 Debug(&D)"[HKEY_CLASSES_ROOT\VisualStudio.Launcher.vcxproj.12.0\Shell\Build Debug\Command]@="cmd.exe /K \"C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\MSBuild.exe /m \"%1\" /p:Configuration=Debug /t:Build\""[HKEY_CLASSES_ROOT\VisualStudio.Launcher.vcxproj.12.0\Shell\Bulild Release]@="使用 MSBuild 編譯 Release(&R)"[HKEY_CLASSES_ROOT\VisualStudio.Launcher.vcxproj.12.0\Shell\Bulild Release\Command]@="cmd.exe /K \"C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\MSBuild.exe /m \"%1\" /p:Configuration=Release /t:Build\""

 

 其他VS版本就自己對著註冊表修改就是了,很方便。

注意:使用 MSBuild 的時候會檢查環境變數“Platform”,如果不確定配置的是否正確,建議刪除該環境變數即可(安裝完 Visual Studio 會預設該變數指為 BNB,導致 MSBuild 無法正確編譯,但若啟動 Visual Studio IDE 來編譯則不會存在此問題)。

用資源管理員右鍵編譯 Visual Studio 解決方案檔案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.