diff Jint.Runtime/Jint.Runtime.csproj @ 3:aced2ae9957f

temp commit, new virtual machine concept (strongly typed version of VM2).
author cin
date Sun, 27 Oct 2013 17:23:25 +0400
parents 4aed85a1f558
children 1ae5b10f7a10
line wrap: on
line diff
--- a/Jint.Runtime/Jint.Runtime.csproj	Fri Oct 25 15:52:16 2013 +0400
+++ b/Jint.Runtime/Jint.Runtime.csproj	Sun Oct 27 17:23:25 2013 +0400
@@ -1,75 +1,60 @@
-<?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\Box.cs" />
-    <Compile Include="VM\BoxBase.cs" />
-    <Compile Include="VM\Frame.cs" />
-    <Compile Include="VM\OpCodes\Add.cs" />
-    <Compile Include="VM\ISetter.cs" />
-    <Compile Include="VM\IGetter.cs" />
-    <Compile Include="VM\IBinder.cs" />
-    <Compile Include="VM\IntegerBinder.cs" />
-    <Compile Include="VM\RuntimeContext.cs" />
-    <Compile Include="VM\OpCodes\IOperation.cs" />
-    <Compile Include="VM\OpCodes\IBinaryOperation.cs" />
-    <Compile Include="VM\OpCodes\BinaryOperation.cs" />
-    <Compile Include="VM\IReference.cs" />
-    <Compile Include="VM\OpCodes\Codes.cs" />
-    <Compile Include="VM2\Instruction.cs" />
-    <Compile Include="VM2\OpCodes\Codes.cs" />
-    <Compile Include="VM2\Box.cs" />
-    <Compile Include="VM2\OpCodes\Operation.cs" />
-    <Compile Include="VM2\IntegerBinder.cs" />
-    <Compile Include="VM2\Machine.cs" />
-    <Compile Include="VM2\RuntimeContext.cs" />
-  </ItemGroup>
-  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
-  <ProjectExtensions>
-    <MonoDevelop>
-      <Properties>
-        <Deployment.LinuxDeployData generateScript="False" />
-      </Properties>
-    </MonoDevelop>
-  </ProjectExtensions>
-  <ItemGroup>
-    <Folder Include="VM\" />
-    <Folder Include="VM\OpCodes\" />
-    <Folder Include="VM2\" />
-    <Folder Include="VM2\OpCodes\" />
-  </ItemGroup>
+<?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\Box.cs" />
+    <Compile Include="VM\Frame.cs" />
+    <Compile Include="VM\IBox.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\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>
\ No newline at end of file