test.vcxproj 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="15.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. <ProjectGuid>{5F43E5C6-6578-46E0-BC6D-A473C081259F}</ProjectGuid>
  15. <RootNamespace>test</RootNamespace>
  16. <Keyword>Win32Proj</Keyword>
  17. </PropertyGroup>
  18. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  20. <ConfigurationType>Application</ConfigurationType>
  21. <PlatformToolset>v142</PlatformToolset>
  22. <UseOfMfc>Dynamic</UseOfMfc>
  23. <CharacterSet>MultiByte</CharacterSet>
  24. <WholeProgramOptimization>true</WholeProgramOptimization>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  27. <ConfigurationType>Application</ConfigurationType>
  28. <PlatformToolset>v142</PlatformToolset>
  29. <UseOfMfc>Dynamic</UseOfMfc>
  30. <CharacterSet>MultiByte</CharacterSet>
  31. </PropertyGroup>
  32. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  33. <ImportGroup Label="ExtensionSettings">
  34. </ImportGroup>
  35. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  36. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  37. </ImportGroup>
  38. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
  39. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  40. </ImportGroup>
  41. <PropertyGroup Label="UserMacros" />
  42. <PropertyGroup>
  43. <_ProjectFileVersion>16.0.29124.152</_ProjectFileVersion>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  46. <OutDir>..\..\..\..\bin\$(SolutionName)\</OutDir>
  47. <IntDir>$(OutDir)$(ProjectName)\$(Configuration)\</IntDir>
  48. <LinkIncremental>true</LinkIncremental>
  49. </PropertyGroup>
  50. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  51. <OutDir>..\..\..\..\bin\$(SolutionName)\</OutDir>
  52. <IntDir>$(OutDir)$(ProjectName)\$(Configuration)\</IntDir>
  53. <LinkIncremental>false</LinkIncremental>
  54. </PropertyGroup>
  55. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  56. <ClCompile>
  57. <Optimization>Disabled</Optimization>
  58. <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  59. <MinimalRebuild>true</MinimalRebuild>
  60. <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
  61. <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
  62. <PrecompiledHeader>Use</PrecompiledHeader>
  63. <WarningLevel>Level3</WarningLevel>
  64. <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
  65. </ClCompile>
  66. <Link>
  67. <GenerateDebugInformation>true</GenerateDebugInformation>
  68. <SubSystem>Console</SubSystem>
  69. <TargetMachine>MachineX86</TargetMachine>
  70. </Link>
  71. </ItemDefinitionGroup>
  72. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  73. <ClCompile>
  74. <Optimization>MaxSpeed</Optimization>
  75. <IntrinsicFunctions>true</IntrinsicFunctions>
  76. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  77. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  78. <FunctionLevelLinking>true</FunctionLevelLinking>
  79. <PrecompiledHeader>Use</PrecompiledHeader>
  80. <WarningLevel>Level3</WarningLevel>
  81. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  82. </ClCompile>
  83. <Link>
  84. <GenerateDebugInformation>true</GenerateDebugInformation>
  85. <SubSystem>Console</SubSystem>
  86. <OptimizeReferences>true</OptimizeReferences>
  87. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  88. <TargetMachine>MachineX86</TargetMachine>
  89. </Link>
  90. </ItemDefinitionGroup>
  91. <ItemGroup>
  92. <ClCompile Include="stdafx.cpp">
  93. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
  94. <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
  95. </ClCompile>
  96. <ClCompile Include="test.cpp" />
  97. </ItemGroup>
  98. <ItemGroup>
  99. <ClInclude Include="Resource.h" />
  100. <ClInclude Include="stdafx.h" />
  101. <ClInclude Include="targetver.h" />
  102. <ClInclude Include="test.h" />
  103. </ItemGroup>
  104. <ItemGroup>
  105. <ResourceCompile Include="test.rc" />
  106. </ItemGroup>
  107. <ItemGroup>
  108. <Text Include="ReadMe.txt" />
  109. </ItemGroup>
  110. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  111. <ImportGroup Label="ExtensionTargets">
  112. </ImportGroup>
  113. </Project>