Mercurial > pub > Jint1
annotate Jint.Runtime/Jint.Runtime.csproj @ 4:1ae5b10f7a10
Code cleanup, minor refactoring
author | cin |
---|---|
date | Sun, 27 Oct 2013 21:20:59 +0400 |
parents | aced2ae9957f |
children | cb13da6e3349 |
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 | 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" /> |
4 | 48 <Compile Include="VM\OpCodes\Loop.cs" /> |
3
aced2ae9957f
temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
2
diff
changeset
|
49 <Compile Include="VM\OperationDelegates.cs" /> |
aced2ae9957f
temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
2
diff
changeset
|
50 <Compile Include="VM\RuntimeContext.cs" /> |
aced2ae9957f
temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
2
diff
changeset
|
51 </ItemGroup> |
aced2ae9957f
temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
2
diff
changeset
|
52 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
aced2ae9957f
temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
2
diff
changeset
|
53 <ProjectExtensions> |
aced2ae9957f
temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
2
diff
changeset
|
54 <MonoDevelop> |
aced2ae9957f
temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
2
diff
changeset
|
55 <Properties> |
aced2ae9957f
temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
2
diff
changeset
|
56 <Deployment.LinuxDeployData generateScript="False" /> |
aced2ae9957f
temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
2
diff
changeset
|
57 </Properties> |
aced2ae9957f
temp commit, new virtual machine concept (strongly typed version of VM2).
cin
parents:
2
diff
changeset
|
58 </MonoDevelop> |
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 <ItemGroup /> |
0 | 61 </Project> |