Mercurial > pub > Jint1
comparison Jint.Runtime/Jint.Runtime.csproj @ 0:e113095f1de0
initial commit, proof of concept
author | cin |
---|---|
date | Wed, 23 Oct 2013 13:24:57 +0400 |
parents | |
children | 033ebe7432d5 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e113095f1de0 |
---|---|
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
3 <PropertyGroup> | |
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
5 <Platform Condition=" '$(Platform)' == '' ">x86</Platform> | |
6 <ProductVersion>10.0.0</ProductVersion> | |
7 <SchemaVersion>2.0</SchemaVersion> | |
8 <ProjectGuid>{F3FDE0D1-748F-4DFE-9C1C-D17D7FD4E642}</ProjectGuid> | |
9 <OutputType>Exe</OutputType> | |
10 <RootNamespace>Jint.Runtime</RootNamespace> | |
11 <AssemblyName>Jint.Runtime</AssemblyName> | |
12 </PropertyGroup> | |
13 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> | |
14 <DebugSymbols>True</DebugSymbols> | |
15 <DebugType>full</DebugType> | |
16 <Optimize>False</Optimize> | |
17 <OutputPath>bin\Debug</OutputPath> | |
18 <DefineConstants>DEBUG;</DefineConstants> | |
19 <ErrorReport>prompt</ErrorReport> | |
20 <WarningLevel>4</WarningLevel> | |
21 <PlatformTarget>x86</PlatformTarget> | |
22 <Externalconsole>True</Externalconsole> | |
23 </PropertyGroup> | |
24 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> | |
25 <DebugType>none</DebugType> | |
26 <Optimize>True</Optimize> | |
27 <OutputPath>bin\Release</OutputPath> | |
28 <ErrorReport>prompt</ErrorReport> | |
29 <WarningLevel>4</WarningLevel> | |
30 <PlatformTarget>x86</PlatformTarget> | |
31 <Externalconsole>True</Externalconsole> | |
32 </PropertyGroup> | |
33 <ItemGroup> | |
34 <Reference Include="System" /> | |
35 </ItemGroup> | |
36 <ItemGroup> | |
37 <Compile Include="Main.cs" /> | |
38 <Compile Include="AssemblyInfo.cs" /> | |
39 <Compile Include="VM\Box.cs" /> | |
40 <Compile Include="VM\BoxBase.cs" /> | |
41 <Compile Include="VM\Frame.cs" /> | |
42 <Compile Include="VM\OpCodes\Add.cs" /> | |
43 <Compile Include="VM\ISetter.cs" /> | |
44 <Compile Include="VM\IGetter.cs" /> | |
45 <Compile Include="VM\IBinder.cs" /> | |
46 <Compile Include="VM\IntegerBinder.cs" /> | |
47 <Compile Include="VM\RuntimeContext.cs" /> | |
48 <Compile Include="VM\OpCodes\IOperation.cs" /> | |
49 <Compile Include="VM\OpCodes\IBinaryOperation.cs" /> | |
50 <Compile Include="VM\OpCodes\BinaryOperation.cs" /> | |
51 <Compile Include="VM\IReference.cs" /> | |
52 </ItemGroup> | |
53 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | |
54 <ProjectExtensions> | |
55 <MonoDevelop> | |
56 <Properties> | |
57 <Deployment.LinuxDeployData generateScript="False" /> | |
58 </Properties> | |
59 </MonoDevelop> | |
60 </ProjectExtensions> | |
61 <ItemGroup> | |
62 <Folder Include="VM\" /> | |
63 <Folder Include="VM\OpCodes\" /> | |
64 </ItemGroup> | |
65 </Project> |