DLLWin.vcxproj 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" 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. <ProjectConfiguration Include="Debug|x64">
  13. <Configuration>Debug</Configuration>
  14. <Platform>x64</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Release|x64">
  17. <Configuration>Release</Configuration>
  18. <Platform>x64</Platform>
  19. </ProjectConfiguration>
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ClCompile Include="CodeDLL.c" />
  23. </ItemGroup>
  24. <PropertyGroup Label="Globals">
  25. <VCProjectVersion>17.0</VCProjectVersion>
  26. <Keyword>Win32Proj</Keyword>
  27. <ProjectGuid>{ce230031-89fd-45d7-9126-162a5b791b7d}</ProjectGuid>
  28. <RootNamespace>DLLWin</RootNamespace>
  29. <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
  30. </PropertyGroup>
  31. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  32. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  33. <ConfigurationType>Application</ConfigurationType>
  34. <UseDebugLibraries>true</UseDebugLibraries>
  35. <PlatformToolset>v143</PlatformToolset>
  36. <CharacterSet>Unicode</CharacterSet>
  37. </PropertyGroup>
  38. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  39. <ConfigurationType>Application</ConfigurationType>
  40. <UseDebugLibraries>false</UseDebugLibraries>
  41. <PlatformToolset>v143</PlatformToolset>
  42. <WholeProgramOptimization>true</WholeProgramOptimization>
  43. <CharacterSet>Unicode</CharacterSet>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  46. <ConfigurationType>DynamicLibrary</ConfigurationType>
  47. <UseDebugLibraries>true</UseDebugLibraries>
  48. <PlatformToolset>v143</PlatformToolset>
  49. <CharacterSet>Unicode</CharacterSet>
  50. </PropertyGroup>
  51. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  52. <ConfigurationType>Application</ConfigurationType>
  53. <UseDebugLibraries>false</UseDebugLibraries>
  54. <PlatformToolset>v143</PlatformToolset>
  55. <WholeProgramOptimization>true</WholeProgramOptimization>
  56. <CharacterSet>Unicode</CharacterSet>
  57. </PropertyGroup>
  58. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  59. <ImportGroup Label="ExtensionSettings">
  60. </ImportGroup>
  61. <ImportGroup Label="Shared">
  62. </ImportGroup>
  63. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  64. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  65. </ImportGroup>
  66. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  67. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  68. </ImportGroup>
  69. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  70. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  71. </ImportGroup>
  72. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  73. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  74. </ImportGroup>
  75. <PropertyGroup Label="UserMacros" />
  76. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  77. <ClCompile>
  78. <WarningLevel>Level3</WarningLevel>
  79. <SDLCheck>true</SDLCheck>
  80. <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  81. <ConformanceMode>true</ConformanceMode>
  82. </ClCompile>
  83. <Link>
  84. <SubSystem>Console</SubSystem>
  85. <GenerateDebugInformation>true</GenerateDebugInformation>
  86. </Link>
  87. </ItemDefinitionGroup>
  88. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  89. <ClCompile>
  90. <WarningLevel>Level3</WarningLevel>
  91. <FunctionLevelLinking>true</FunctionLevelLinking>
  92. <IntrinsicFunctions>true</IntrinsicFunctions>
  93. <SDLCheck>true</SDLCheck>
  94. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  95. <ConformanceMode>true</ConformanceMode>
  96. </ClCompile>
  97. <Link>
  98. <SubSystem>Console</SubSystem>
  99. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  100. <OptimizeReferences>true</OptimizeReferences>
  101. <GenerateDebugInformation>true</GenerateDebugInformation>
  102. </Link>
  103. </ItemDefinitionGroup>
  104. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  105. <ClCompile>
  106. <WarningLevel>Level3</WarningLevel>
  107. <SDLCheck>true</SDLCheck>
  108. <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  109. <ConformanceMode>true</ConformanceMode>
  110. <CompileAs>CompileAsCpp</CompileAs>
  111. </ClCompile>
  112. <Link>
  113. <SubSystem>Windows</SubSystem>
  114. <GenerateDebugInformation>true</GenerateDebugInformation>
  115. </Link>
  116. </ItemDefinitionGroup>
  117. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  118. <ClCompile>
  119. <WarningLevel>Level3</WarningLevel>
  120. <FunctionLevelLinking>true</FunctionLevelLinking>
  121. <IntrinsicFunctions>true</IntrinsicFunctions>
  122. <SDLCheck>true</SDLCheck>
  123. <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  124. <ConformanceMode>true</ConformanceMode>
  125. </ClCompile>
  126. <Link>
  127. <SubSystem>Console</SubSystem>
  128. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  129. <OptimizeReferences>true</OptimizeReferences>
  130. <GenerateDebugInformation>true</GenerateDebugInformation>
  131. </Link>
  132. </ItemDefinitionGroup>
  133. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  134. <ImportGroup Label="ExtensionTargets">
  135. </ImportGroup>
  136. </Project>