2017-03-01 79 views
0

我目前正在Visual Studio擴展項目中,我需要閱讀C++代碼中的CurrentTheme註冊表值。對於我寫了下面的代碼如何在cpp中爲擴展項目獲取當前版本的Visual Studio?

CRegKey RegKey; 
LPCTSTR keyName; // Software\Microsoft\VisualStudio\{0}\General 
//LPTSTR keyValue; 

#if _MSC_VER >= 1600 && _MSC_VER < 1700 // VS 2010 
keyName = _T("Software\\Microsoft\\VisualStudio\\10.0\\General"); 
#elif _MSC_VER >= 1700 && _MSC_VER < 1800 // VS 2012 
keyName = _T("Software\\Microsoft\\VisualStudio\\11.0\\General"); 
#elif _MSC_VER >= 1800 && _MSC_VER < 1900 // VS 2013 
keyName = _T("Software\\Microsoft\\VisualStudio\\12.0\\General"); 
#elif _MSC_VER >= 1900 && _MSC_VER < 2000 // VS 2015 
keyName = _T("Software\\Microsoft\\VisualStudio\\14.0\\General"); 
#endif 

LONG lResult = RegKey.Open(HKEY_CURRENT_USER, keyName, KEY_READ); 
MessageBox(NULL, _MSC_VER , _T("Msg"), MB_OK | MB_ICONERROR); 
if(ERROR_SUCCESS != lResult) 
{ 
    return false; 
} 

ULONG chars; 
CString keyValue; 

if (RegKey.QueryStringValue(L"CurrentTheme", 0, &chars) == ERROR_SUCCESS) 
{ 
    RegKey.QueryStringValue(L"CurrentTheme", keyValue.GetBuffer(chars), &chars); 
    keyValue.ReleaseBuffer(); 
    MessageBox(NULL, keyValue , _T("Msg"), MB_OK | MB_ICONERROR); 
} 
RegKey.Close(); 

_MSC_VER似乎在編譯時產生價值。我需要動態創建Software\Microsoft\VisualStudio\{0}\General值,以便我瞭解我的插件項目在哪個版本的VisualStudio中運行。任何人都可以幫助我嗎?

+0

使用dte.Version並查看http://stackoverflow.com/questions/15920572/how-to-get-current-used-color-theme-of-visual-studio2012 –

回答

0

我找到了解決方法。我使用當前運行的devenv.exe的處理程序,並導航到它的程序包定義文件devenv.pkgdef並讀取該文件中寫入的值RegistryRoot。這給我正在尋找的Software\Microsoft\VisualStudio\xx.0值。

相關問題