MyDll.vcxproj 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="Current" 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="Debug|x64">
  9. <Configuration>Debug</Configuration>
  10. <Platform>x64</Platform>
  11. </ProjectConfiguration>
  12. <ProjectConfiguration Include="Release|Win32">
  13. <Configuration>Release</Configuration>
  14. <Platform>Win32</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Release|x64">
  17. <Configuration>Release</Configuration>
  18. <Platform>x64</Platform>
  19. </ProjectConfiguration>
  20. </ItemGroup>
  21. <PropertyGroup Label="Globals">
  22. <VCProjectVersion>17.0</VCProjectVersion>
  23. <ProjectGuid>{A19FDF0E-E479-43DE-81AC-3AD905C40B4E}</ProjectGuid>
  24. <RootNamespace>MyDll</RootNamespace>
  25. <Keyword>Win32Proj</Keyword>
  26. <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
  27. </PropertyGroup>
  28. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  29. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  30. <ConfigurationType>DynamicLibrary</ConfigurationType>
  31. <PlatformToolset>v143</PlatformToolset>
  32. <CharacterSet>Unicode</CharacterSet>
  33. <WholeProgramOptimization>true</WholeProgramOptimization>
  34. </PropertyGroup>
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  36. <ConfigurationType>DynamicLibrary</ConfigurationType>
  37. <PlatformToolset>v143</PlatformToolset>
  38. <CharacterSet>Unicode</CharacterSet>
  39. <WholeProgramOptimization>true</WholeProgramOptimization>
  40. </PropertyGroup>
  41. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  42. <ConfigurationType>DynamicLibrary</ConfigurationType>
  43. <PlatformToolset>v143</PlatformToolset>
  44. <CharacterSet>Unicode</CharacterSet>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  47. <ConfigurationType>DynamicLibrary</ConfigurationType>
  48. <PlatformToolset>v143</PlatformToolset>
  49. <CharacterSet>Unicode</CharacterSet>
  50. </PropertyGroup>
  51. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  52. <ImportGroup Label="ExtensionSettings">
  53. </ImportGroup>
  54. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  55. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  56. </ImportGroup>
  57. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
  58. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  59. </ImportGroup>
  60. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
  61. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  62. </ImportGroup>
  63. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
  64. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  65. </ImportGroup>
  66. <PropertyGroup Label="UserMacros" />
  67. <PropertyGroup>
  68. <_ProjectFileVersion>17.0.35004.147</_ProjectFileVersion>
  69. </PropertyGroup>
  70. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  71. <LinkIncremental>true</LinkIncremental>
  72. <OutDir>$(ISSRCROOT)\Projects\Bin\</OutDir>
  73. <IntDir>$(ShortProjectName)\$(Platform)\$(Configuration)\</IntDir>
  74. </PropertyGroup>
  75. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  76. <IntDir>$(ShortProjectName)\$(Platform)\$(Configuration)\</IntDir>
  77. <LinkIncremental>true</LinkIncremental>
  78. <TargetName>MyDll-x64</TargetName>
  79. <OutDir>$(ISSRCROOT)\Projects\Bin\</OutDir>
  80. </PropertyGroup>
  81. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  82. <LinkIncremental>false</LinkIncremental>
  83. <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
  84. <IntDir>$(ShortProjectName)\$(Platform)\$(Configuration)\</IntDir>
  85. </PropertyGroup>
  86. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  87. <LinkIncremental>false</LinkIncremental>
  88. <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
  89. <IntDir>$(ShortProjectName)\$(Platform)\$(Configuration)\</IntDir>
  90. <TargetName>MyDll-x64</TargetName>
  91. </PropertyGroup>
  92. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  93. <ClCompile>
  94. <Optimization>Disabled</Optimization>
  95. <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  96. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  97. <WarningLevel>Level3</WarningLevel>
  98. <CallingConvention>StdCall</CallingConvention>
  99. </ClCompile>
  100. <Link>
  101. <ModuleDefinitionFile>MyDll.def</ModuleDefinitionFile>
  102. <GenerateDebugInformation>true</GenerateDebugInformation>
  103. <SubSystem>Windows</SubSystem>
  104. <BaseAddress>0x1200000</BaseAddress>
  105. <TargetMachine>MachineX86</TargetMachine>
  106. </Link>
  107. </ItemDefinitionGroup>
  108. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  109. <ClCompile>
  110. <Optimization>Disabled</Optimization>
  111. <PreprocessorDefinitions>_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  112. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  113. <WarningLevel>Level3</WarningLevel>
  114. </ClCompile>
  115. <Link>
  116. <ModuleDefinitionFile>MyDll.def</ModuleDefinitionFile>
  117. <GenerateDebugInformation>true</GenerateDebugInformation>
  118. <SubSystem>Windows</SubSystem>
  119. <TargetMachine>MachineX64</TargetMachine>
  120. </Link>
  121. </ItemDefinitionGroup>
  122. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  123. <ClCompile>
  124. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  125. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  126. <WarningLevel>Level3</WarningLevel>
  127. <CallingConvention>StdCall</CallingConvention>
  128. </ClCompile>
  129. <Link>
  130. <ModuleDefinitionFile>MyDll.def</ModuleDefinitionFile>
  131. <GenerateDebugInformation>false</GenerateDebugInformation>
  132. <SubSystem>Windows</SubSystem>
  133. <OptimizeReferences>true</OptimizeReferences>
  134. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  135. <BaseAddress>0x1200000</BaseAddress>
  136. <TargetMachine>MachineX86</TargetMachine>
  137. </Link>
  138. </ItemDefinitionGroup>
  139. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  140. <ClCompile>
  141. <PreprocessorDefinitions>NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  142. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  143. <WarningLevel>Level3</WarningLevel>
  144. </ClCompile>
  145. <Link>
  146. <ModuleDefinitionFile>MyDll.def</ModuleDefinitionFile>
  147. <GenerateDebugInformation>false</GenerateDebugInformation>
  148. <SubSystem>Windows</SubSystem>
  149. <OptimizeReferences>true</OptimizeReferences>
  150. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  151. <TargetMachine>MachineX64</TargetMachine>
  152. </Link>
  153. </ItemDefinitionGroup>
  154. <ItemGroup>
  155. <ClCompile Include="MyDll.c" />
  156. </ItemGroup>
  157. <ItemGroup>
  158. <None Include="MyDll.def" />
  159. </ItemGroup>
  160. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  161. <ImportGroup Label="ExtensionTargets">
  162. </ImportGroup>
  163. </Project>