-
Clean Visual Studio Workspaces컴퓨터 2016. 12. 19. 09:30반응형
비주얼스투디오로 개발하다 보면 소스 전달이나 백업을 할때 쓸데없이 용량이 큰 불필요한 파일들이 많다
Bat 파일을 만들어 제거하면 되는데 문제는 어떤 파일들을 제거해도 되느냐가 문제
del /f /q /s /a rhsa *.bak *.ncb *.obj *.pdb *.idb *.ilk *.pch *.suo *.aps *.opt *.sbr *.bsc *.user
pause
인터넷 검색 결과 이같은 파일은 제거해도 무방하다는 결론
File extension Source Contents
.pch Debug Precompiled header file.
.pdb Debug The program debug database file.
Intermediate files generated by the compiler:
File extension Source Contents
.bsc Compiling The browser code file.
.idb Compiling The state file, containing dependency information between source files and class definitions.
.sbr Compiling Source browser intermediate file. The input file for BSCMAKE.
Intermediate files generated by the linker:
File extension Source Contents
.ilk Linking Incremental link file. See /INCREMENTAL for more information.
.map Linking A text file containing linker information. Use the /Fm compiler option to name the map file. See /MAP for more information.
Intermediate files generated by Visual Studio:
File extension Source Contents
.aps Resource Binary version of the current resource script file; used for quick loading.
.ncb Solution This file is a binary file used by ClassView and is specific to the local machine.
.o Object files, compiled but not linked.
.obj Object files, compiled but not linked.
.opt This is a binary file that is the workspace options file for the local computer.
.plg build log file. It is an HTML file which you can view in i.e. or other browsers.
Output files (most often they are our products):
File extension Source Contents
.exe Output your product.
.dll Output your DLL product.
.lib Output the library file which stores information about your .dll file.
.ocx Output our ActiveX controls.
Other files:
File extension Source Contents
.scc Other source safe file (contribution from Indivara in this forum.)
반응형'컴퓨터' 카테고리의 다른 글
Grep (0) 2017.01.19 네이버 Whale 브라우저 0.5.15.0 (0) 2017.01.11 네이버 Whale 초대 코드 없이 사용하기 (0) 2016.12.06 네이버의 새 브라우저 Whale (0) 2016.12.04 엑셀에서 리스트중 존재유무 확인하는 함수 (2) 2016.11.22