-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathHiSystems.Interpreter.MonoTouch.csproj
107 lines (107 loc) · 4.66 KB
/
HiSystems.Interpreter.MonoTouch.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?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)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{B7F045FA-2E47-40EE-9501-B407C52D9D19}</ProjectGuid>
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<RootNamespace>HiSystems.Interpreter</RootNamespace>
<AssemblyName>HiSystems-Interpreter</AssemblyName>
<TargetFrameworkIdentifier>Xamarin.iOS</TargetFrameworkIdentifier>
<TargetFrameworkVersion>v1.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>True</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Xamarin.iOS" />
</ItemGroup>
<ItemGroup>
<Compile Include="Functions\Average.cs" />
<Compile Include="Functions\Function.cs" />
<Compile Include="Functions\Sum.cs" />
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Library\PeekableEnumerator.cs" />
<Compile Include="Engine\Engine.cs" />
<Compile Include="Engine\Token.cs" />
<Compile Include="Engine\Tokenizer.cs" />
<Compile Include="Operators\Operator.cs" />
<Compile Include="Operators\AddOperator.cs" />
<Compile Include="Operators\AndOperator.cs" />
<Compile Include="Operators\DivideOperator.cs" />
<Compile Include="Operators\GreaterThanOperator.cs" />
<Compile Include="Operators\GreaterThanOrEqualToOperator.cs" />
<Compile Include="Operators\LessThanOperator.cs" />
<Compile Include="Operators\LessThanOrEqualToOperator.cs" />
<Compile Include="Operators\MultiplyOperator.cs" />
<Compile Include="Operators\OrOperator.cs" />
<Compile Include="Operators\SubtractOperator.cs" />
<Compile Include="Literals\Boolean.cs" />
<Compile Include="Literals\Number.cs" />
<Compile Include="Literals\Literal.cs" />
<Compile Include="Literals\Array.cs" />
<Compile Include="Constructs\IConstruct.cs" />
<Compile Include="Constructs\Variable.cs" />
<Compile Include="Constructs\FunctionOperation.cs" />
<Compile Include="Constructs\Operation.cs" />
<Compile Include="Functions\If.cs" />
<Compile Include="Engine\Expression.cs" />
<Compile Include="Operators\EqualToOperator.cs" />
<Compile Include="Operators\NotEqualToOperator.cs" />
<Compile Include="Literals\DateTime.cs" />
<Compile Include="Functions\Today.cs" />
<Compile Include="Literals\Text.cs" />
<Compile Include="Operators\ModulusOperator.cs" />
<Compile Include="Functions\Format.cs" />
<Compile Include="Functions\Max.cs" />
<Compile Include="Functions\ArrayFunction.cs" />
<Compile Include="Functions\Min.cs" />
<Compile Include="Functions\Len.cs" />
<Compile Include="Engine\ExpressionParsed.cs" />
<Compile Include="Engine\ExpressionParseOnDemand.cs" />
<Compile Include="Converters\BooleanTypeConverter.cs" />
<Compile Include="Converters\DateTimeTypeConverter.cs" />
<Compile Include="Converters\NumberTypeConverter.cs" />
<Compile Include="Converters\TextTypeConverter.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Engine\" />
<Folder Include="Library\" />
<Folder Include="Literals\" />
<Folder Include="Converters\" />
</ItemGroup>
<ItemGroup>
<None Include="readme.md" />
</ItemGroup>
<ProjectExtensions>
<MonoDevelop>
<Properties>
<Policies>
<TextStylePolicy EolMarker="Windows" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/plain" />
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
</Project>