Jint.Tests.csproj 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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="..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" />
  4. <Import Project="..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props" Condition="Exists('..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" />
  5. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  6. <PropertyGroup>
  7. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  8. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  9. <ProjectGuid>{37C7D4E0-8770-4E2A-8B6D-E53087868354}</ProjectGuid>
  10. <OutputType>Library</OutputType>
  11. <AppDesignerFolder>Properties</AppDesignerFolder>
  12. <RootNamespace>Jint.Tests</RootNamespace>
  13. <AssemblyName>Jint.Tests</AssemblyName>
  14. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  15. <FileAlignment>512</FileAlignment>
  16. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
  17. <RestorePackages>true</RestorePackages>
  18. <NuGetPackageImportStamp>c4676ded</NuGetPackageImportStamp>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="Newtonsoft.Json">
  39. <HintPath>..\packages\Newtonsoft.Json.5.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
  40. </Reference>
  41. <Reference Include="System" />
  42. <Reference Include="System.Core" />
  43. <Reference Include="System.Xml.Linq" />
  44. <Reference Include="System.Data.DataSetExtensions" />
  45. <Reference Include="Microsoft.CSharp" />
  46. <Reference Include="System.Data" />
  47. <Reference Include="System.Xml" />
  48. <Reference Include="xunit.abstractions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
  49. <HintPath>..\packages\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll</HintPath>
  50. <Private>True</Private>
  51. </Reference>
  52. <Reference Include="xunit.assert, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
  53. <HintPath>..\packages\xunit.assert.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.assert.dll</HintPath>
  54. <Private>True</Private>
  55. </Reference>
  56. <Reference Include="xunit.core, Version=2.0.0.2929, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
  57. <HintPath>..\packages\xunit.extensibility.core.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.dll</HintPath>
  58. <Private>True</Private>
  59. </Reference>
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Compile Include="Parser\JavascriptParserTests.cs" />
  63. <Compile Include="Properties\AssemblyInfo.cs" />
  64. <Compile Include="Runtime\Converters\NegateBoolConverter.cs" />
  65. <Compile Include="Runtime\Domain\A.cs" />
  66. <Compile Include="Runtime\Domain\ArrayConverterTestClass.cs" />
  67. <Compile Include="Runtime\Domain\ClassWithField.cs" />
  68. <Compile Include="Runtime\Domain\ClassWithStaticFields.cs" />
  69. <Compile Include="Runtime\Domain\Colors.cs" />
  70. <Compile Include="Runtime\Domain\Company.cs" />
  71. <Compile Include="Runtime\Domain\ICompany.cs" />
  72. <Compile Include="Runtime\Domain\IPerson.cs" />
  73. <Compile Include="Runtime\Domain\Person.cs" />
  74. <Compile Include="Runtime\Domain\Shape.cs" />
  75. <Compile Include="Runtime\JsValueConversionTests.cs" />
  76. <Compile Include="Runtime\SamplesTests.cs" />
  77. <Compile Include="Runtime\InteropTests.cs" />
  78. <Compile Include="Runtime\EngineTests.cs" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <EmbeddedResource Include="Parser\Scripts\jQuery.js" />
  82. </ItemGroup>
  83. <ItemGroup>
  84. <None Include="packages.config" />
  85. </ItemGroup>
  86. <ItemGroup>
  87. <EmbeddedResource Include="Runtime\Scripts\Scratch.js" />
  88. </ItemGroup>
  89. <ItemGroup>
  90. <ProjectReference Include="..\Jint\Jint.csproj">
  91. <Project>{678738da-f723-4920-b9e5-cad667104bda}</Project>
  92. <Name>Jint</Name>
  93. </ProjectReference>
  94. </ItemGroup>
  95. <ItemGroup>
  96. <EmbeddedResource Include="Parser\Scripts\underscore.js" />
  97. </ItemGroup>
  98. <ItemGroup>
  99. <EmbeddedResource Include="Parser\Scripts\mootools.js" />
  100. </ItemGroup>
  101. <ItemGroup>
  102. <EmbeddedResource Include="Parser\Scripts\angular.js" />
  103. </ItemGroup>
  104. <ItemGroup>
  105. <EmbeddedResource Include="Parser\Scripts\backbone.js" />
  106. </ItemGroup>
  107. <ItemGroup>
  108. <EmbeddedResource Include="Parser\Scripts\JSXTransformer.js" />
  109. </ItemGroup>
  110. <ItemGroup>
  111. <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
  112. </ItemGroup>
  113. <ItemGroup>
  114. <EmbeddedResource Include="Parser\Scripts\handlebars.js" />
  115. </ItemGroup>
  116. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  117. <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
  118. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  119. <PropertyGroup>
  120. <ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
  121. </PropertyGroup>
  122. <Error Condition="!Exists('..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\xunit.core.2.0.0\build\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.core.props'))" />
  123. <Error Condition="!Exists('..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\xunit.runner.visualstudio.2.0.0\build\net20\xunit.runner.visualstudio.props'))" />
  124. </Target>
  125. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  126. Other similar extension points exist, see Microsoft.Common.targets.
  127. <Target Name="BeforeBuild">
  128. </Target>
  129. <Target Name="AfterBuild">
  130. </Target>
  131. -->
  132. </Project>