Mercurial > pub > Jint1
view 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 |
line wrap: on
line source
<?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\AbstractBox.cs" /> <Compile Include="VM\Box.cs" /> <Compile Include="VM\Frame.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\OpCodes\Loop.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>