annotate Jint.Runtime/Jint.Runtime.csproj @ 8:5b2302d3ac4f default tip

Слияние
author cin
date Wed, 30 Oct 2013 20:44:42 +0400
parents 17543aa3aced a6329b092499
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
1 <?xml version="1.0" encoding="utf-8"?>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
3 <PropertyGroup>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
5 <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
6 <ProductVersion>10.0.0</ProductVersion>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
7 <SchemaVersion>2.0</SchemaVersion>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
8 <ProjectGuid>{F3FDE0D1-748F-4DFE-9C1C-D17D7FD4E642}</ProjectGuid>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
9 <OutputType>Exe</OutputType>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
10 <RootNamespace>Jint.Runtime</RootNamespace>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
11 <AssemblyName>Jint.Runtime</AssemblyName>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
12 </PropertyGroup>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
13 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
14 <DebugSymbols>True</DebugSymbols>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
15 <DebugType>full</DebugType>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
16 <Optimize>False</Optimize>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
17 <OutputPath>bin\Debug</OutputPath>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
18 <DefineConstants>DEBUG;</DefineConstants>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
19 <ErrorReport>prompt</ErrorReport>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
20 <WarningLevel>4</WarningLevel>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
21 <PlatformTarget>x86</PlatformTarget>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
22 <Externalconsole>True</Externalconsole>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
23 </PropertyGroup>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
24 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
25 <DebugType>none</DebugType>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
26 <Optimize>True</Optimize>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
27 <OutputPath>bin\Release</OutputPath>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
28 <ErrorReport>prompt</ErrorReport>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
29 <WarningLevel>4</WarningLevel>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
30 <PlatformTarget>x86</PlatformTarget>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
31 <Externalconsole>True</Externalconsole>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
32 </PropertyGroup>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
33 <ItemGroup>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
34 <Reference Include="System" />
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
35 </ItemGroup>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
36 <ItemGroup>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
37 <Compile Include="Main.cs" />
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
38 <Compile Include="AssemblyInfo.cs" />
4
1ae5b10f7a10 Code cleanup, minor refactoring
cin
parents: 3
diff changeset
39 <Compile Include="VM\AbstractBox.cs" />
3
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
40 <Compile Include="VM\Box.cs" />
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
41 <Compile Include="VM\Frame.cs" />
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
42 <Compile Include="VM\IGettter.cs" />
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
43 <Compile Include="VM\IInstruction.cs" />
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
44 <Compile Include="VM\ISetter.cs" />
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
45 <Compile Include="VM\Machine.cs" />
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
46 <Compile Include="VM\OpCodes\BinaryOp.cs" />
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
47 <Compile Include="VM\OpCodes\Codes.cs" />
5
cb13da6e3349 simple loop test
cin
parents: 4
diff changeset
48 <Compile Include="VM\OpCodes\ConditionOp.cs" />
cb13da6e3349 simple loop test
cin
parents: 4
diff changeset
49 <Compile Include="VM\OpCodes\LteCmp.cs" />
cb13da6e3349 simple loop test
cin
parents: 4
diff changeset
50 <Compile Include="VM\OpCodes\GteCmp.cs" />
3
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
51 <Compile Include="VM\OperationDelegates.cs" />
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
52 <Compile Include="VM\RuntimeContext.cs" />
6
a6329b092499 Added scopes, function builder
cin
parents: 5
diff changeset
53 <Compile Include="VM\Scope.cs" />
a6329b092499 Added scopes, function builder
cin
parents: 5
diff changeset
54 <Compile Include="VM\ScopeReference.cs" />
a6329b092499 Added scopes, function builder
cin
parents: 5
diff changeset
55 <Compile Include="VM\IReference.cs" />
a6329b092499 Added scopes, function builder
cin
parents: 5
diff changeset
56 <Compile Include="VM\FunctionBuilder.cs" />
3
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
57 </ItemGroup>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
58 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
59 <ProjectExtensions>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
60 <MonoDevelop>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
61 <Properties>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
62 <Deployment.LinuxDeployData generateScript="False" />
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
63 </Properties>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
64 </MonoDevelop>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
65 </ProjectExtensions>
aced2ae9957f temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents: 2
diff changeset
66 <ItemGroup />
6
a6329b092499 Added scopes, function builder
cin
parents: 5
diff changeset
67 <ItemGroup>
a6329b092499 Added scopes, function builder
cin
parents: 5
diff changeset
68 <Folder Include="VM\" />
a6329b092499 Added scopes, function builder
cin
parents: 5
diff changeset
69 </ItemGroup>
0
e113095f1de0 initial commit, proof of concept
cin
parents:
diff changeset
70 </Project>