VisualStudio
-
비주얼 스튜디오2013(vs2013) 도킹상태 변경시 죽는 현상VisualStudio 2022. 3. 4. 11:22
Visual Studio 2013에서 각각의 창들의 위치를 바꾸거나 도킹 상태를 변경할 때 비정상 종료되는 현상의 해결방법입니다. 여러 가지 해결방법이 떠돌아다니는데요, 저의 경우에는 다음 방법으로 해결이 됐습니다. 아래 경로의 파일을 편집기로 엽니다. C:/Program Files (x86)/Microsoft Visual Studio 12.0/Common7/IDE/devenv.exe.config configuration > relativeBindForResources 태그 안에 아래 값을 넣어주세요 만약 AppContextSwitchOverrides 태그가 이미 존재한다면 value값만 추가로 붙여주시면 됩니다. (구분자 ; ) 다른 버전일때와 자세한 내용은 아래 주소를 참고하시면 됩니다. https:..
-
Microsoft PDB (심볼파일) 수동 다운로드 방법VisualStudio 2021. 4. 28. 16:11
! 2024년 6월 7일 현재 해당 방법은 막혀서 사용할 수 없습니다. 디버깅 시 필요한 pdb파일을 다운로드하는 방법입니다. 준비물- pdb파일이 필요한 dll, exe 파일- pdbdownloader (아래 링크 다운로드)https://github.com/rajkumar-rangaraj/PDB-Downloader/releases/download/v1.0/PDBDownloader.exe * 다운로드 방법pdbdownloader 실행 -> "Open FIles(s)" 클릭 후 dll(또는 exe) 파일 선택 -> "Start" 클릭 * github 소스github.com/rajkumar-rangaraj/PDB-Downloader rajkumar-rangaraj/PDB-DownloaderPDB Do..
-
VS Ctrl+Tab 키 바로 화면전환이 되지 않을 때VisualStudio 2020. 4. 24. 14:19
https://stackoverflow.com/questions/13622618/switching-documents-in-vs2010-with-ctrl-tab-needs-return Switching documents in VS2010 with Ctrl-Tab needs return When switching between documents in VS2010 with Ctrl-Tab, the document switch window doesn't disappear until I've pressed tab multiple times to select an entry and then hit return. I'm sure that it... stackoverflow.com Visual Studio에서 화면(탭..
-
vs2010에서 사용할 수 있는 Boost C++ Library 버전VisualStudio 2020. 2. 26. 15:34
2020. 2. 26일 현재 부스트(https://boost.org) 최신버전은 1.72이며 vs2010을 지원한다고 명시되어 있고 prebuilt 사이트(https://sourceforge.net/projects/boost/files/boost-binaries/)에서도 바이너리를 지원합니다. 하지만 실제 vs2010에서 사용하다보면 컴파일 오류가 발생하는 부분이 발견됩니다. 예를 들면 asio read, read_until 사용시 컴파일 오류가 발생합니다. https://github.com/boostorg/asio/issues/225 Visual Studio 2010 LNK2019 unresolved symbol with async_read_until · Issue #225 · boostorg/asio..
-
비주얼스튜디오2010(vs2010) lambda 사용시 주의사항VisualStudio 2020. 2. 11. 12:25
int main() { struct _s { int a; }; []() { _s val; }(); } vs2010에서 위와 같이 함수 내부에서 정의한 구조체를 람다식에서 사용하는 경우 아래와 같이 컴파일러 오류가 발생한다. main.cpp(7) : fatal error C1001: An internal error has occurred in the compiler. (compiler file 'msc1.cpp', line 1420) To work around this problem, try simplifying or change the program near the locations loisted above. Please choose the Technical Support command on the Vi..
-
LicenseHeaderManager - 소스코드에 라이선스 문구 자동 입력하기VisualStudio 2017. 2. 27. 22:09
소스코드 상단에 라이선스 또는 설명 문구 등을 추가하는 경우가 자주 있으실텐데요매번 직접 입력하기도 귀찮고 스니펫 같은 자동완성 기능을 사용하더라도빼먹는 경우도 있으실 겁니다. 이런 귀찮음을 해결해주는 비주얼스튜디오 확장프로그램이 있어 소개합니다. License Header Manager 바로가기 : https://marketplace.visualstudio.com/items?itemName=StefanWenig.LicenseHeaderManager 현재 Visual Studio 2010 ~ 2015버전까지 지원합니다. 다운로드 후 설치를 진행합니다. (설치전에 실행중인 비주얼 스튜디오를 모두 종료합니다.) 설치 후 처음 비주얼 스튜디오 프로젝트를 열면 아래와 같이 안내 문구가 표시됩니다. 프로젝트 팝업..