CSharpInterpreter.vcxproj 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. <ClInclude Include="main.h" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <ClCompile Include="main.cpp" />
  26. </ItemGroup>
  27. <PropertyGroup Label="Globals">
  28. <VCProjectVersion>16.0</VCProjectVersion>
  29. <Keyword>Win32Proj</Keyword>
  30. <ProjectGuid>{b8bd0219-aea8-4167-abd7-29d7628803d9}</ProjectGuid>
  31. <RootNamespace>CSharpInterpreter</RootNamespace>
  32. <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
  33. <ProjectName>Interpreter</ProjectName>
  34. </PropertyGroup>
  35. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  36. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  37. <ConfigurationType>DynamicLibrary</ConfigurationType>
  38. <UseDebugLibraries>true</UseDebugLibraries>
  39. <PlatformToolset>v142</PlatformToolset>
  40. <CharacterSet>Unicode</CharacterSet>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  43. <ConfigurationType>DynamicLibrary</ConfigurationType>
  44. <UseDebugLibraries>false</UseDebugLibraries>
  45. <PlatformToolset>v142</PlatformToolset>
  46. <WholeProgramOptimization>true</WholeProgramOptimization>
  47. <CharacterSet>Unicode</CharacterSet>
  48. </PropertyGroup>
  49. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
  50. <ConfigurationType>DynamicLibrary</ConfigurationType>
  51. <UseDebugLibraries>true</UseDebugLibraries>
  52. <PlatformToolset>v142</PlatformToolset>
  53. <CharacterSet>Unicode</CharacterSet>
  54. </PropertyGroup>
  55. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  56. <ConfigurationType>DynamicLibrary</ConfigurationType>
  57. <UseDebugLibraries>false</UseDebugLibraries>
  58. <PlatformToolset>v142</PlatformToolset>
  59. <WholeProgramOptimization>true</WholeProgramOptimization>
  60. <CharacterSet>Unicode</CharacterSet>
  61. </PropertyGroup>
  62. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  63. <ImportGroup Label="ExtensionSettings">
  64. </ImportGroup>
  65. <ImportGroup Label="Shared">
  66. </ImportGroup>
  67. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  68. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  69. </ImportGroup>
  70. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  71. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  72. </ImportGroup>
  73. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  74. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  75. </ImportGroup>
  76. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  77. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  78. </ImportGroup>
  79. <PropertyGroup Label="UserMacros" />
  80. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  81. <LinkIncremental>true</LinkIncremental>
  82. <LibraryPath>E:\ET\Libs\CSharpInterpreter\libs;$(LibraryPath)</LibraryPath>
  83. </PropertyGroup>
  84. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  85. <LinkIncremental>false</LinkIncremental>
  86. </PropertyGroup>
  87. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  88. <LinkIncremental>true</LinkIncremental>
  89. <IncludePath>.\include;$(IncludePath)</IncludePath>
  90. <LibraryPath>.\libs;$(LibraryPath)</LibraryPath>
  91. </PropertyGroup>
  92. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  93. <LinkIncremental>false</LinkIncremental>
  94. </PropertyGroup>
  95. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  96. <ClCompile>
  97. <WarningLevel>Level3</WarningLevel>
  98. <SDLCheck>true</SDLCheck>
  99. <PreprocessorDefinitions>WIN32;_DEBUG;CSHARPINTERPRETER_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  100. <ConformanceMode>true</ConformanceMode>
  101. <PrecompiledHeader>Use</PrecompiledHeader>
  102. <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
  103. </ClCompile>
  104. <Link>
  105. <SubSystem>Windows</SubSystem>
  106. <GenerateDebugInformation>true</GenerateDebugInformation>
  107. <EnableUAC>false</EnableUAC>
  108. <AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
  109. <TargetMachine>MachineX64</TargetMachine>
  110. </Link>
  111. </ItemDefinitionGroup>
  112. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  113. <ClCompile>
  114. <WarningLevel>Level3</WarningLevel>
  115. <FunctionLevelLinking>true</FunctionLevelLinking>
  116. <IntrinsicFunctions>true</IntrinsicFunctions>
  117. <SDLCheck>true</SDLCheck>
  118. <PreprocessorDefinitions>WIN32;NDEBUG;CSHARPINTERPRETER_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  119. <ConformanceMode>true</ConformanceMode>
  120. <PrecompiledHeader>Use</PrecompiledHeader>
  121. <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
  122. </ClCompile>
  123. <Link>
  124. <SubSystem>Windows</SubSystem>
  125. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  126. <OptimizeReferences>true</OptimizeReferences>
  127. <GenerateDebugInformation>true</GenerateDebugInformation>
  128. <EnableUAC>false</EnableUAC>
  129. </Link>
  130. </ItemDefinitionGroup>
  131. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  132. <ClCompile>
  133. <WarningLevel>Level3</WarningLevel>
  134. <SDLCheck>true</SDLCheck>
  135. <PreprocessorDefinitions>_DEBUG;CSHARPINTERPRETER_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  136. <ConformanceMode>true</ConformanceMode>
  137. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  138. <PrecompiledHeaderFile>
  139. </PrecompiledHeaderFile>
  140. <PrecompiledHeaderOutputFile />
  141. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  142. </ClCompile>
  143. <Link>
  144. <SubSystem>Windows</SubSystem>
  145. <GenerateDebugInformation>true</GenerateDebugInformation>
  146. <EnableUAC>false</EnableUAC>
  147. <AdditionalDependencies>mono-2.0-sgen.lib;%(AdditionalDependencies)</AdditionalDependencies>
  148. </Link>
  149. </ItemDefinitionGroup>
  150. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  151. <ClCompile>
  152. <WarningLevel>Level3</WarningLevel>
  153. <FunctionLevelLinking>true</FunctionLevelLinking>
  154. <IntrinsicFunctions>true</IntrinsicFunctions>
  155. <SDLCheck>true</SDLCheck>
  156. <PreprocessorDefinitions>NDEBUG;CSHARPINTERPRETER_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  157. <ConformanceMode>true</ConformanceMode>
  158. <PrecompiledHeader>Use</PrecompiledHeader>
  159. <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
  160. </ClCompile>
  161. <Link>
  162. <SubSystem>Windows</SubSystem>
  163. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  164. <OptimizeReferences>true</OptimizeReferences>
  165. <GenerateDebugInformation>true</GenerateDebugInformation>
  166. <EnableUAC>false</EnableUAC>
  167. </Link>
  168. </ItemDefinitionGroup>
  169. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  170. <ImportGroup Label="ExtensionTargets">
  171. </ImportGroup>
  172. </Project>