view Jint.Runtime/Jint.Runtime.csproj @ 5:cb13da6e3349

simple loop test
author cin
date Mon, 28 Oct 2013 00:49:15 +0400
parents 1ae5b10f7a10
children a6329b092499 17543aa3aced
line wrap: on
line source

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
    <ProductVersion>10.0.0</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{F3FDE0D1-748F-4DFE-9C1C-D17D7FD4E642}</ProjectGuid>
    <OutputType>Exe</OutputType>
    <RootNamespace>Jint.Runtime</RootNamespace>
    <AssemblyName>Jint.Runtime</AssemblyName>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
    <DebugSymbols>True</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>False</Optimize>
    <OutputPath>bin\Debug</OutputPath>
    <DefineConstants>DEBUG;</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <PlatformTarget>x86</PlatformTarget>
    <Externalconsole>True</Externalconsole>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
    <DebugType>none</DebugType>
    <Optimize>True</Optimize>
    <OutputPath>bin\Release</OutputPath>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <PlatformTarget>x86</PlatformTarget>
    <Externalconsole>True</Externalconsole>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Main.cs" />
    <Compile Include="AssemblyInfo.cs" />
    <Compile Include="VM\AbstractBox.cs" />
    <Compile Include="VM\Box.cs" />
    <Compile Include="VM\Frame.cs" />
    <Compile Include="VM\IGettter.cs" />
    <Compile Include="VM\IInstruction.cs" />
    <Compile Include="VM\ISetter.cs" />
    <Compile Include="VM\Machine.cs" />
    <Compile Include="VM\OpCodes\BinaryOp.cs" />
    <Compile Include="VM\OpCodes\Codes.cs" />
    <Compile Include="VM\OpCodes\ConditionOp.cs" />
    <Compile Include="VM\OpCodes\LteCmp.cs" />
    <Compile Include="VM\OpCodes\GteCmp.cs" />
    <Compile Include="VM\OperationDelegates.cs" />
    <Compile Include="VM\RuntimeContext.cs" />
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  <ProjectExtensions>
    <MonoDevelop>
      <Properties>
        <Deployment.LinuxDeployData generateScript="False" />
      </Properties>
    </MonoDevelop>
  </ProjectExtensions>
  <ItemGroup />
</Project>