1 <?xml version="1.0" encoding="utf-8"?> 2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <ItemGroup Label="ProjectConfigurations"> 4 <ProjectConfiguration Include="Debug|Win32"> 5 <Configuration>Debug</Configuration> 6 <Platform>Win32</Platform> 7 </ProjectConfiguration> 8 <ProjectConfiguration Include="Release|Win32"> 9 <Configuration>Release</Configuration> 10 <Platform>Win32</Platform> 11 </ProjectConfiguration> 12 </ItemGroup> 13 <PropertyGroup Label="Globals"> 14 <VCTargetsPath Condition="'$(VCTargetsPath11)' != '' and '$(VSVersion)' == '' and '$(VisualStudioVersion)' == ''">$(VCTargetsPath11)</VCTargetsPath> 15 </PropertyGroup> 16 <PropertyGroup Label="Globals"> 17 <ProjectGuid>{B65551BA-E1BA-4735-BA51-FFA83D64823E}</ProjectGuid> 18 <Keyword>Win32Proj</Keyword> 19 <RootNamespace>SampleCppLinq</RootNamespace> 20 </PropertyGroup> 21 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 22 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 23 <ConfigurationType>Application</ConfigurationType> 24 <UseDebugLibraries>true</UseDebugLibraries> 25 <PlatformToolset>v110</PlatformToolset> 26 <CharacterSet>Unicode</CharacterSet> 27 </PropertyGroup> 28 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 29 <ConfigurationType>Application</ConfigurationType> 30 <UseDebugLibraries>false</UseDebugLibraries> 31 <PlatformToolset>v110</PlatformToolset> 32 <WholeProgramOptimization>true</WholeProgramOptimization> 33 <CharacterSet>Unicode</CharacterSet> 34 </PropertyGroup> 35 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 36 <ImportGroup Label="ExtensionSettings"> 37 </ImportGroup> 38 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 39 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 40 </ImportGroup> 41 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 42 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 43 </ImportGroup> 44 <PropertyGroup Label="UserMacros" /> 45 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 46 <LinkIncremental>true</LinkIncremental> 47 <IncludePath>d:\work\CppLinq Project\src;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath> 48 </PropertyGroup> 49 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 50 <LinkIncremental>false</LinkIncremental> 51 <IncludePath>d:\work\CppLinq Project\src;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath> 52 </PropertyGroup> 53 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 54 <ClCompile> 55 <PrecompiledHeader> 56 </PrecompiledHeader> 57 <WarningLevel>Level3</WarningLevel> 58 <Optimization>Disabled</Optimization> 59 <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 60 </ClCompile> 61 <Link> 62 <SubSystem>Console</SubSystem> 63 <GenerateDebugInformation>true</GenerateDebugInformation> 64 </Link> 65 </ItemDefinitionGroup> 66 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 67 <ClCompile> 68 <WarningLevel>Level3</WarningLevel> 69 <PrecompiledHeader> 70 </PrecompiledHeader> 71 <Optimization>MaxSpeed</Optimization> 72 <FunctionLevelLinking>true</FunctionLevelLinking> 73 <IntrinsicFunctions>true</IntrinsicFunctions> 74 <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 75 </ClCompile> 76 <Link> 77 <SubSystem>Console</SubSystem> 78 <GenerateDebugInformation>true</GenerateDebugInformation> 79 <EnableCOMDATFolding>true</EnableCOMDATFolding> 80 <OptimizeReferences>true</OptimizeReferences> 81 </Link> 82 </ItemDefinitionGroup> 83 <ItemGroup> 84 <ClCompile Include="SampleCppLinq.cpp" /> 85 </ItemGroup> 86 <ItemGroup> 87 <Text Include="data.txt" /> 88 </ItemGroup> 89 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 90 <ImportGroup Label="ExtensionTargets"> 91 </ImportGroup> 92 </Project>