-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMathParser.csproj
More file actions
53 lines (53 loc) · 2.44 KB
/
MathParser.csproj
File metadata and controls
53 lines (53 loc) · 2.44 KB
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
<?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>
<ProjectGuid>{BAB08DD2-6F83-4A49-BCF0-E072B8E4B1B8}</ProjectGuid>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<UseMSBuildEngine>True</UseMSBuildEngine>
<OutputType>Library</OutputType>
<RootNamespace>MathParser</RootNamespace>
<AssemblyName>MathParser</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkProfile>Profile78</TargetFrameworkProfile>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
</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' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Compile Include="MathParser.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="MatrixBuilder.cs" />
<Compile Include="StringObserver.cs" />
<Compile Include="NonEquation.cs" />
<Compile Include="Checker.cs" />
<Compile Include="OperatorHandler.cs" />
<Compile Include="DataTypes.cs" />
<Compile Include="DMASSolver.cs" />
<Compile Include="ReverseDMASSolver.cs" />
<Compile Include="UnitFunctionSolver.cs" />
<Compile Include="Solver.cs" />
<Compile Include="BraketSolver.cs" />
<Compile Include="Equation.cs" />
<Compile Include="DigitalLogicSolver.cs" />
<Compile Include="MathParserOverdrive.cs" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
</Project>