Visual Studio 2008에서 생성한 프로젝트를 2005 버젼에서 인식하지 못하는 문제에 대한 해결 방법
sln파일과 vcproj 파일을 열어 아래의 붉은 부분(3 군데)을 변경한다.

testProject.sln
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FileLabeler", "FileLabeler.vcproj", "{32FA32A4-FF32-4E52-9F32-78085780CBF3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Release|Win32 = Release|Win32
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{32FA32A4-FF32-4E52-9F32-78085780CBF3}.Debug|Win32.ActiveCfg = Debug|Win32
{32FA32A4-FF32-4E52-9F32-78085780CBF3}.Debug|Win32.Build.0 = Debug|Win32
{32FA32A4-FF32-4E52-9F32-78085780CBF3}.Release|Win32.ActiveCfg = Release|Win32
{32FA32A4-FF32-4E52-9F32-78085780CBF3}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

-----------------------------------------------------------------------
testProject.vcproj
<?xml version="1.0" encoding="ks_c_5601-1987"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="8.00"
Name="testProject"
ProjectGUID="{32FA32A4-FF32-4E52-9F32-78085780CBF3}"
RootNamespace="FileLabeler"
Keyword="MFCProj"
TargetFrameworkVersion="196613"
>
<Platforms>
<Platform
Name="Win32"
/>
</Platforms>

'programmer > mfc' 카테고리의 다른 글

String에서 한글/영어/숫자 구분하기  (0) 2011.08.16

+ Recent posts