Mercurial > pub > Jint1
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Jint.Runtime/Jint.Runtime.csproj Wed Oct 23 13:24:57 2013 +0400 @@ -0,0 +1,65 @@ +<?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" /> + </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\" /> + </ItemGroup> +</Project> \ No newline at end of file