Jint.csproj 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProjectGuid>{678738DA-F723-4920-B9E5-CAD667104BDA}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Jint</RootNamespace>
  12. <AssemblyName>Jint</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <TargetFrameworkProfile>Profile328</TargetFrameworkProfile>
  15. <FileAlignment>512</FileAlignment>
  16. <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  17. <FileUpgradeFlags>
  18. </FileUpgradeFlags>
  19. <UpgradeBackupLocation>
  20. </UpgradeBackupLocation>
  21. <OldToolsVersion>4.0</OldToolsVersion>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  24. <DebugSymbols>true</DebugSymbols>
  25. <DebugType>full</DebugType>
  26. <Optimize>false</Optimize>
  27. <OutputPath>bin\Debug\</OutputPath>
  28. <DefineConstants>DEBUG;TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  33. <DebugType>pdbonly</DebugType>
  34. <Optimize>true</Optimize>
  35. <OutputPath>bin\Release\</OutputPath>
  36. <DefineConstants>TRACE</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>4</WarningLevel>
  39. </PropertyGroup>
  40. <PropertyGroup>
  41. <SignAssembly>true</SignAssembly>
  42. </PropertyGroup>
  43. <PropertyGroup>
  44. <AssemblyOriginatorKeyFile>Jint.snk</AssemblyOriginatorKeyFile>
  45. </PropertyGroup>
  46. <ItemGroup>
  47. <Compile Include="DeclarationBindingType.cs" />
  48. <Compile Include="EvalCodeScope.cs" />
  49. <Compile Include="Engine.cs" />
  50. <Compile Include="Native\Array\ArrayConstructor.cs" />
  51. <Compile Include="Native\Array\ArrayInstance.cs" />
  52. <Compile Include="Native\Array\ArrayPrototype.cs" />
  53. <Compile Include="Native\Boolean\BooleanPrototype.cs" />
  54. <Compile Include="Native\Boolean\BooleanConstructor.cs" />
  55. <Compile Include="Native\Boolean\BooleanInstance.cs" />
  56. <Compile Include="Native\Function\BindFunctionInstance.cs" />
  57. <Compile Include="Native\IPrimitiveInstance.cs" />
  58. <Compile Include="Native\JsValue.cs" />
  59. <Compile Include="Native\Null.cs" />
  60. <Compile Include="Native\Number\Dtoa\CachePowers.cs" />
  61. <Compile Include="Native\Number\Dtoa\DiyFp.cs" />
  62. <Compile Include="Native\Number\Dtoa\DoubleHelper.cs" />
  63. <Compile Include="Native\Number\Dtoa\FastDtoa.cs" />
  64. <Compile Include="Native\Number\Dtoa\FastDtoaBuilder.cs" />
  65. <Compile Include="Native\Number\Dtoa\NumberExtensions.cs" />
  66. <Compile Include="Native\RegExp\RegExpConstructor.cs" />
  67. <Compile Include="Native\RegExp\RegExpInstance.cs" />
  68. <Compile Include="Native\RegExp\RegExpPrototype.cs" />
  69. <Compile Include="Native\Date\DatePrototype.cs" />
  70. <Compile Include="Native\Date\DateConstructor.cs" />
  71. <Compile Include="Native\Date\DateInstance.cs" />
  72. <Compile Include="Native\Error\ErrorPrototype.cs" />
  73. <Compile Include="Native\Error\ErrorConstructor.cs" />
  74. <Compile Include="Native\Error\ErrorInstance.cs" />
  75. <Compile Include="Native\Argument\ArgumentsObject.cs" />
  76. <Compile Include="Native\Function\FunctionPrototype.cs" />
  77. <Compile Include="Native\Function\ThrowTypeError.cs" />
  78. <Compile Include="Native\Function\EvalFunctionInstance.cs" />
  79. <Compile Include="Native\Function\FunctionConstructor.cs" />
  80. <Compile Include="Native\Function\FunctionInstance.cs" />
  81. <Compile Include="Native\Function\FunctionShim.cs" />
  82. <Compile Include="Native\Global\GlobalObject.cs" />
  83. <Compile Include="Native\ICallable.cs" />
  84. <Compile Include="Native\Function\ScriptFunctionInstance.cs" />
  85. <Compile Include="Native\IConstructor.cs" />
  86. <Compile Include="Native\Json\JsonInstance.cs" />
  87. <Compile Include="Native\Json\JsonSerializer.cs" />
  88. <Compile Include="Native\Math\MathInstance.cs" />
  89. <Compile Include="Native\Number\NumberPrototype.cs" />
  90. <Compile Include="Native\Number\NumberConstructor.cs" />
  91. <Compile Include="Native\Number\NumberInstance.cs" />
  92. <Compile Include="Native\Object\ObjectConstructor.cs" />
  93. <Compile Include="Native\Object\ObjectInstance.cs" />
  94. <Compile Include="Native\Object\ObjectPrototype.cs" />
  95. <Compile Include="Native\String\StringPrototype.cs" />
  96. <Compile Include="Native\String\StringConstructor.cs" />
  97. <Compile Include="Native\String\StringInstance.cs" />
  98. <Compile Include="Native\Undefined.cs" />
  99. <Compile Include="Options.cs" />
  100. <Compile Include="Parser\Ast\ArrayExpression.cs" />
  101. <Compile Include="Parser\Ast\AssignmentExpression.cs" />
  102. <Compile Include="Parser\Ast\BinaryExpression.cs" />
  103. <Compile Include="Parser\Ast\BlockStatement.cs" />
  104. <Compile Include="Parser\Ast\BreakStatement.cs" />
  105. <Compile Include="Parser\Ast\CallExpression.cs" />
  106. <Compile Include="Parser\Ast\CatchClause.cs" />
  107. <Compile Include="Parser\Ast\ConditionalExpression.cs" />
  108. <Compile Include="Parser\Ast\ContinueStatement.cs" />
  109. <Compile Include="Parser\Ast\RegExpLiteral.cs" />
  110. <Compile Include="Parser\Ast\LogicalExpression.cs" />
  111. <Compile Include="Parser\Ast\DebuggerStatement.cs" />
  112. <Compile Include="Parser\Ast\DoWhileStatement.cs" />
  113. <Compile Include="Parser\Ast\EmptyStatement.cs" />
  114. <Compile Include="Parser\Ast\Expression.cs" />
  115. <Compile Include="Parser\Ast\ExpressionStatement.cs" />
  116. <Compile Include="Parser\Ast\ForInStatement.cs" />
  117. <Compile Include="Parser\Ast\ForStatement.cs" />
  118. <Compile Include="Parser\Ast\FunctionDeclaration.cs" />
  119. <Compile Include="Parser\Ast\FunctionExpression.cs" />
  120. <Compile Include="Parser\Ast\Identifier.cs" />
  121. <Compile Include="Parser\Ast\IfStatement.cs" />
  122. <Compile Include="Native\Json\JsonParser.cs" />
  123. <Compile Include="Parser\IFunctionDeclaration.cs" />
  124. <Compile Include="Parser\Ast\IPropertyKeyExpression.cs" />
  125. <Compile Include="Parser\IFunctionScope.cs" />
  126. <Compile Include="Parser\IVariableScope.cs" />
  127. <Compile Include="Parser\Ast\LabeledStatement.cs" />
  128. <Compile Include="Parser\Ast\Literal.cs" />
  129. <Compile Include="Parser\Ast\MemberExpression.cs" />
  130. <Compile Include="Parser\Ast\NewExpression.cs" />
  131. <Compile Include="Parser\Ast\ObjectExpression.cs" />
  132. <Compile Include="Parser\Ast\Program.cs" />
  133. <Compile Include="Parser\Ast\Property.cs" />
  134. <Compile Include="Parser\Ast\ReturnStatement.cs" />
  135. <Compile Include="Parser\Ast\SequenceExpression.cs" />
  136. <Compile Include="Parser\Ast\Statement.cs" />
  137. <Compile Include="Parser\Ast\SwitchCase.cs" />
  138. <Compile Include="Parser\Ast\SwitchStatement.cs" />
  139. <Compile Include="Parser\Ast\SyntaxNode.cs" />
  140. <Compile Include="Parser\Ast\SyntaxNodes.cs" />
  141. <Compile Include="Parser\Ast\ThisExpression.cs" />
  142. <Compile Include="Parser\Ast\ThrowStatement.cs" />
  143. <Compile Include="Parser\Ast\TryStatement.cs" />
  144. <Compile Include="Parser\Ast\UnaryExpression.cs" />
  145. <Compile Include="Parser\Ast\UpdateExpression.cs" />
  146. <Compile Include="Parser\Ast\VariableDeclaration.cs" />
  147. <Compile Include="Parser\Ast\VariableDeclarator.cs" />
  148. <Compile Include="Parser\Ast\WhileStatement.cs" />
  149. <Compile Include="Parser\Ast\WithStatement.cs" />
  150. <Compile Include="Parser\Comment.cs" />
  151. <Compile Include="Parser\JavascriptParser.cs" />
  152. <Compile Include="Parser\Loc.cs" />
  153. <Compile Include="Parser\Messages.cs" />
  154. <Compile Include="Parser\ParserException.cs" />
  155. <Compile Include="Parser\ParserExtensions.cs" />
  156. <Compile Include="Parser\ParserOptions.cs" />
  157. <Compile Include="Parser\Position.cs" />
  158. <Compile Include="Parser\State.cs" />
  159. <Compile Include="Parser\Token.cs" />
  160. <Compile Include="Properties\AssemblyInfo.cs" />
  161. <Compile Include="Runtime\Arguments.cs" />
  162. <Compile Include="Runtime\CallStack\JintCallStack.cs" />
  163. <Compile Include="Runtime\CallStack\CallStackElementComparer.cs" />
  164. <Compile Include="Runtime\CallStack\CallStackElement.cs" />
  165. <Compile Include="Runtime\Completion.cs" />
  166. <Compile Include="Runtime\Debugger\BreakPoint.cs" />
  167. <Compile Include="Runtime\Debugger\DebugHandler.cs" />
  168. <Compile Include="Runtime\Debugger\DebugInformation.cs" />
  169. <Compile Include="Runtime\Debugger\StepMode.cs" />
  170. <Compile Include="Runtime\Descriptors\PropertyDescriptor.cs" />
  171. <Compile Include="Runtime\Descriptors\Specialized\FieldInfoDescriptor.cs" />
  172. <Compile Include="Runtime\Descriptors\Specialized\IndexDescriptor.cs" />
  173. <Compile Include="Runtime\Descriptors\Specialized\PropertyInfoDescriptor.cs" />
  174. <Compile Include="Runtime\Descriptors\Specialized\ClrAccessDescriptor.cs" />
  175. <Compile Include="Runtime\Environments\Binding.cs" />
  176. <Compile Include="Runtime\Environments\DeclarativeEnvironmentRecord.cs" />
  177. <Compile Include="Runtime\Environments\EnvironmentRecord.cs" />
  178. <Compile Include="Runtime\Environments\ExecutionContext.cs" />
  179. <Compile Include="Runtime\Environments\LexicalEnvironment.cs" />
  180. <Compile Include="Runtime\Environments\ObjectEnvironmentRecord.cs" />
  181. <Compile Include="Runtime\ExpressionIntepreter.cs" />
  182. <Compile Include="Runtime\Interop\DefaultTypeConverter.cs" />
  183. <Compile Include="Runtime\Interop\IObjectWrapper.cs" />
  184. <Compile Include="Runtime\Interop\IObjectConverter.cs" />
  185. <Compile Include="Runtime\Interop\ITypeConverter.cs" />
  186. <Compile Include="Runtime\Interop\MethodInfoFunctionInstance.cs" />
  187. <Compile Include="Runtime\Interop\ClrFunctionInstance.cs" />
  188. <Compile Include="Runtime\Interop\NamespaceReference.cs" />
  189. <Compile Include="Runtime\Interop\ObjectWrapper.cs" />
  190. <Compile Include="Runtime\Interop\SetterFunctionInstance.cs" />
  191. <Compile Include="Runtime\Interop\GetterFunctionInstance.cs" />
  192. <Compile Include="Runtime\Interop\DelegateWrapper.cs" />
  193. <Compile Include="Runtime\Interop\TypeReference.cs" />
  194. <Compile Include="Runtime\Interop\TypeReferencePrototype.cs" />
  195. <Compile Include="Runtime\JavaScriptException.cs" />
  196. <Compile Include="Runtime\MruPropertyCache2.cs" />
  197. <Compile Include="Runtime\MruPropertyCache.cs" />
  198. <Compile Include="Runtime\RecursionDepthOverflowException.cs" />
  199. <Compile Include="Runtime\References\Reference.cs" />
  200. <Compile Include="Runtime\StatementInterpreter.cs" />
  201. <Compile Include="Runtime\StatementsCountOverflowException.cs" />
  202. <Compile Include="Runtime\TypeConverter.cs" />
  203. <Compile Include="StrictModeScope.cs" />
  204. </ItemGroup>
  205. <ItemGroup>
  206. <None Include="Jint.nuspec" />
  207. <None Include="Jint.snk" />
  208. </ItemGroup>
  209. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  210. <PropertyGroup>
  211. <PostBuildEvent>
  212. </PostBuildEvent>
  213. </PropertyGroup>
  214. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  215. Other similar extension points exist, see Microsoft.Common.targets.
  216. <Target Name="BeforeBuild">
  217. </Target>
  218. <Target Name="AfterBuild">
  219. </Target>
  220. -->
  221. </Project>