Jint.csproj 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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>Profile36</TargetFrameworkProfile>
  15. <FileAlignment>512</FileAlignment>
  16. <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <!-- A reference to the entire .NET Framework is automatically included -->
  37. </ItemGroup>
  38. <ItemGroup>
  39. <Compile Include="Engine.cs" />
  40. <Compile Include="Native\Array\ArrayConstructor.cs" />
  41. <Compile Include="Native\Array\ArrayInstance.cs" />
  42. <Compile Include="Native\Boolean\BooleanConstructor.cs" />
  43. <Compile Include="Native\Boolean\BooleanInstance.cs" />
  44. <Compile Include="Native\Errors\ReferenceError.cs" />
  45. <Compile Include="Native\Errors\TypeError.cs" />
  46. <Compile Include="Native\Function\FunctionConstructor.cs" />
  47. <Compile Include="Native\Function\FunctionInstance.cs" />
  48. <Compile Include="Native\Function\FunctionShim.cs" />
  49. <Compile Include="Native\Function\ScriptFunctionInstance.cs" />
  50. <Compile Include="Native\IConstructor.cs" />
  51. <Compile Include="Native\IPrimitiveType.cs" />
  52. <Compile Include="Native\Null.cs" />
  53. <Compile Include="Native\Number\NumberConstructor.cs" />
  54. <Compile Include="Native\Number\NumberInstance.cs" />
  55. <Compile Include="Native\Object\ObjectConstructor.cs" />
  56. <Compile Include="Native\Object\ObjectInstance.cs" />
  57. <Compile Include="Native\String\StringConstructor.cs" />
  58. <Compile Include="Native\String\StringInstance.cs" />
  59. <Compile Include="Native\Undefined.cs" />
  60. <Compile Include="Options.cs" />
  61. <Compile Include="Parser\Ast\ArrayExpression.cs" />
  62. <Compile Include="Parser\Ast\AssignmentExpression.cs" />
  63. <Compile Include="Parser\Ast\BinaryExpression.cs" />
  64. <Compile Include="Parser\Ast\BlockStatement.cs" />
  65. <Compile Include="Parser\Ast\BreakStatement.cs" />
  66. <Compile Include="Parser\Ast\CallExpression.cs" />
  67. <Compile Include="Parser\Ast\CatchClause.cs" />
  68. <Compile Include="Parser\Ast\ConditionalExpression.cs" />
  69. <Compile Include="Parser\Ast\ContinueStatement.cs" />
  70. <Compile Include="Parser\Ast\DebuggerStatement.cs" />
  71. <Compile Include="Parser\Ast\DoWhileStatement.cs" />
  72. <Compile Include="Parser\Ast\EmptyStatement.cs" />
  73. <Compile Include="Parser\Ast\Expression.cs" />
  74. <Compile Include="Parser\Ast\ExpressionStatement.cs" />
  75. <Compile Include="Parser\Ast\ForInStatement.cs" />
  76. <Compile Include="Parser\Ast\ForStatement.cs" />
  77. <Compile Include="Parser\Ast\FunctionDeclaration.cs" />
  78. <Compile Include="Parser\Ast\FunctionExpression.cs" />
  79. <Compile Include="Parser\Ast\Identifier.cs" />
  80. <Compile Include="Parser\Ast\IfStatement.cs" />
  81. <Compile Include="Parser\Ast\IPropertyKeyExpression.cs" />
  82. <Compile Include="Parser\Ast\LabeledStatement.cs" />
  83. <Compile Include="Parser\Ast\Literal.cs" />
  84. <Compile Include="Parser\Ast\MemberExpression.cs" />
  85. <Compile Include="Parser\Ast\NewExpression.cs" />
  86. <Compile Include="Parser\Ast\ObjectExpression.cs" />
  87. <Compile Include="Parser\Ast\Program.cs" />
  88. <Compile Include="Parser\Ast\Property.cs" />
  89. <Compile Include="Parser\Ast\ReturnStatement.cs" />
  90. <Compile Include="Parser\Ast\SequenceExpression.cs" />
  91. <Compile Include="Parser\Ast\Statement.cs" />
  92. <Compile Include="Parser\Ast\SwitchCase.cs" />
  93. <Compile Include="Parser\Ast\SwitchStatement.cs" />
  94. <Compile Include="Parser\Ast\SyntaxNode.cs" />
  95. <Compile Include="Parser\Ast\SyntaxNodes.cs" />
  96. <Compile Include="Parser\Ast\ThisExpression.cs" />
  97. <Compile Include="Parser\Ast\ThrowStatement.cs" />
  98. <Compile Include="Parser\Ast\TryStatement.cs" />
  99. <Compile Include="Parser\Ast\UnaryExpression.cs" />
  100. <Compile Include="Parser\Ast\UpdateExpression.cs" />
  101. <Compile Include="Parser\Ast\VariableDeclaration.cs" />
  102. <Compile Include="Parser\Ast\VariableDeclarator.cs" />
  103. <Compile Include="Parser\Ast\WhileStatement.cs" />
  104. <Compile Include="Parser\Ast\WithStatement.cs" />
  105. <Compile Include="Parser\Comment.cs" />
  106. <Compile Include="Parser\JavascriptParser.cs" />
  107. <Compile Include="Parser\Loc.cs" />
  108. <Compile Include="Parser\Messages.cs" />
  109. <Compile Include="Parser\ParserException.cs" />
  110. <Compile Include="Parser\ParserExtensions.cs" />
  111. <Compile Include="Parser\ParserOptions.cs" />
  112. <Compile Include="Parser\Position.cs" />
  113. <Compile Include="Parser\State.cs" />
  114. <Compile Include="Parser\Token.cs" />
  115. <Compile Include="Properties\AssemblyInfo.cs" />
  116. <Compile Include="Runtime\Descriptors\AccessorDescriptor.cs" />
  117. <Compile Include="Runtime\Descriptors\DataDescriptor.cs" />
  118. <Compile Include="Runtime\Descriptors\PropertyDescriptor.cs" />
  119. <Compile Include="Runtime\Descriptors\Specialized\MethodPropertyDescriptor.cs" />
  120. <Compile Include="Runtime\Environments\DeclarativeEnvironmentRecord.cs" />
  121. <Compile Include="Runtime\Environments\EnvironmentRecord.cs" />
  122. <Compile Include="Runtime\Environments\ExecutionContext.cs" />
  123. <Compile Include="Runtime\Environments\LexicalEnvironment.cs" />
  124. <Compile Include="Runtime\Environments\ObjectEnvironmentRecord.cs" />
  125. <Compile Include="Runtime\ExpressionIntepreter.cs" />
  126. <Compile Include="Runtime\Interop\ClrFunctionInstance.cs" />
  127. <Compile Include="Runtime\Interop\SetterFunctionInstance.cs" />
  128. <Compile Include="Runtime\Interop\GetterFunctionInstance.cs" />
  129. <Compile Include="Runtime\Interop\DelegateWrapper.cs" />
  130. <Compile Include="Runtime\References\Reference.cs" />
  131. <Compile Include="Runtime\StatementInterpreter.cs" />
  132. <Compile Include="Runtime\TypeConverter.cs" />
  133. </ItemGroup>
  134. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  135. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  136. Other similar extension points exist, see Microsoft.Common.targets.
  137. <Target Name="BeforeBuild">
  138. </Target>
  139. <Target Name="AfterBuild">
  140. </Target>
  141. -->
  142. </Project>