123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{37C7D4E0-8770-4E2A-8B6D-E53087868354}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Jint.Tests</RootNamespace>
- <AssemblyName>Jint.Tests</AssemblyName>
- <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
- <RestorePackages>true</RestorePackages>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="Newtonsoft.Json">
- <HintPath>..\packages\Newtonsoft.Json.5.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Data.DataSetExtensions" />
- <Reference Include="Microsoft.CSharp" />
- <Reference Include="System.Data" />
- <Reference Include="System.Xml" />
- <Reference Include="xunit, Version=1.9.2.1705, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\packages\xunit.1.9.2\lib\net20\xunit.dll</HintPath>
- </Reference>
- <Reference Include="xunit.extensions, Version=1.9.2.1705, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>..\packages\xunit.extensions.1.9.2\lib\net20\xunit.extensions.dll</HintPath>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Parser\JavascriptParserTests.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="Runtime\Converters\NegateBoolConverter.cs" />
- <Compile Include="Runtime\Domain\A.cs" />
- <Compile Include="Runtime\Domain\ClassWithField.cs" />
- <Compile Include="Runtime\Domain\ClassWithStaticFields.cs" />
- <Compile Include="Runtime\Domain\Colors.cs" />
- <Compile Include="Runtime\Domain\Company.cs" />
- <Compile Include="Runtime\Domain\ICompany.cs" />
- <Compile Include="Runtime\Domain\IPerson.cs" />
- <Compile Include="Runtime\Domain\Person.cs" />
- <Compile Include="Runtime\Domain\Shape.cs" />
- <Compile Include="Runtime\SamplesTests.cs" />
- <Compile Include="Runtime\InteropTests.cs" />
- <Compile Include="Runtime\EngineTests.cs" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="Parser\Scripts\jQuery.js" />
- </ItemGroup>
- <ItemGroup>
- <None Include="packages.config" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="Runtime\Scripts\Scratch.js" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Jint\Jint.csproj">
- <Project>{678738da-f723-4920-b9e5-cad667104bda}</Project>
- <Name>Jint</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="Parser\Scripts\underscore.js" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="Parser\Scripts\mootools.js" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="Parser\Scripts\angular.js" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="Parser\Scripts\backbone.js" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="Parser\Scripts\JSXTransformer.js" />
- </ItemGroup>
- <ItemGroup>
- <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="Parser\Scripts\handlebars.js" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- </Project>
|