Jint.Benchmark.csproj 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{8922A952-4F82-4A97-B41C-C0A9932BFFA8}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Jint.Benchmark</RootNamespace>
  11. <AssemblyName>Jint.Benchmark</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <PlatformTarget>AnyCPU</PlatformTarget>
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="FSharp.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  36. <SpecificVersion>False</SpecificVersion>
  37. <HintPath>..\packages\FSharp.Core.4.0.0\lib\FSharp.Core.dll</HintPath>
  38. </Reference>
  39. <Reference Include="IronJS">
  40. <HintPath>..\packages\IronJS.Core.0.2.0.1\lib\net40\IronJS.dll</HintPath>
  41. </Reference>
  42. <Reference Include="Jurassic">
  43. <HintPath>..\packages\Jurassic.2.1.1\lib\Jurassic.dll</HintPath>
  44. </Reference>
  45. <Reference Include="Microsoft.Dynamic">
  46. <HintPath>..\packages\IronJS.Core.0.2.0.1\lib\net40\Microsoft.Dynamic.dll</HintPath>
  47. </Reference>
  48. <Reference Include="Microsoft.Scripting">
  49. <HintPath>..\packages\IronJS.Core.0.2.0.1\lib\net40\Microsoft.Scripting.dll</HintPath>
  50. </Reference>
  51. <Reference Include="Microsoft.Scripting.Core">
  52. <HintPath>..\packages\IronJS.Core.0.2.0.1\lib\net40\Microsoft.Scripting.Core.dll</HintPath>
  53. </Reference>
  54. <Reference Include="Microsoft.Scripting.ExtensionAttribute">
  55. <HintPath>..\packages\IronJS.Core.0.2.0.1\lib\net40\Microsoft.Scripting.ExtensionAttribute.dll</HintPath>
  56. </Reference>
  57. <Reference Include="System" />
  58. <Reference Include="System.Core" />
  59. <Reference Include="System.Numerics" />
  60. <Reference Include="System.Xml.Linq" />
  61. <Reference Include="System.Data.DataSetExtensions" />
  62. <Reference Include="Microsoft.CSharp" />
  63. <Reference Include="System.Data" />
  64. <Reference Include="System.Xml" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Compile Include="Program.cs" />
  68. <Compile Include="Properties\AssemblyInfo.cs" />
  69. </ItemGroup>
  70. <ItemGroup>
  71. <None Include="App.config" />
  72. <None Include="packages.config" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <ProjectReference Include="..\Jint\Jint.csproj">
  76. <Project>{678738da-f723-4920-b9e5-cad667104bda}</Project>
  77. <Name>Jint</Name>
  78. </ProjectReference>
  79. </ItemGroup>
  80. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  81. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  82. Other similar extension points exist, see Microsoft.Common.targets.
  83. <Target Name="BeforeBuild">
  84. </Target>
  85. <Target Name="AfterBuild">
  86. </Target>
  87. -->
  88. </Project>