1
- <?xml version =" 1.0" encoding =" utf-8" ?>
2
- <Project ToolsVersion =" 14.0" DefaultTargets =" Build" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3
- <Import Project =" $(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition =" Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
+
4
3
<PropertyGroup >
5
- <Configuration Condition =" '$(Configuration)' == '' " >Debug</Configuration >
6
- <Platform Condition =" '$(Platform)' == '' " >AnyCPU</Platform >
7
- <ProjectGuid >{B1B0A26F-04E2-40E5-B25C-12764E50BEFC}</ProjectGuid >
8
- <OutputType >Library</OutputType >
9
- <AppDesignerFolder >Properties</AppDesignerFolder >
10
- <RootNamespace >StringToExpression</RootNamespace >
11
- <AssemblyName >StringToExpression</AssemblyName >
12
- <TargetFrameworkVersion >v4.5.2</TargetFrameworkVersion >
13
- <FileAlignment >512</FileAlignment >
4
+ <TargetFrameworks >netstandard1.0;net45</TargetFrameworks >
5
+ <Company >Codecutout</Company >
6
+ <Authors >Alex Davies</Authors >
7
+ <Description >StringToExpression supports the compiling a domain specific string into a .NET expression.
8
+
9
+ Out of the box configuration is provided for parsing arithmetic expressions and for parsing OData filter strings. Although can be configured to parse string of any format</Description >
10
+ <Copyright >Copyright © 2017</Copyright >
11
+ <PackageLicenseUrl >https://github.com/codecutout/StringToExpression/blob/master/LICENSE</PackageLicenseUrl >
12
+ <PackageProjectUrl >https://github.com/codecutout/StringToExpression</PackageProjectUrl >
13
+ <PackageTags >Expression Filter OData Arithmetic DSL</PackageTags >
14
+ <GeneratePackageOnBuild >True</GeneratePackageOnBuild >
14
15
</PropertyGroup >
15
- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
16
- <DebugSymbols >true</DebugSymbols >
17
- <DebugType >full</DebugType >
18
- <Optimize >false</Optimize >
19
- <OutputPath >bin\</OutputPath >
20
- <DefineConstants >DEBUG;TRACE</DefineConstants >
21
- <ErrorReport >prompt</ErrorReport >
22
- <WarningLevel >4</WarningLevel >
23
- <DocumentationFile >bin\StringToExpression.XML</DocumentationFile >
24
- <NoWarn >
25
- </NoWarn >
26
- </PropertyGroup >
27
- <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " >
28
- <DebugType >pdbonly</DebugType >
29
- <Optimize >true</Optimize >
30
- <OutputPath >bin\</OutputPath >
31
- <DefineConstants >TRACE</DefineConstants >
32
- <ErrorReport >prompt</ErrorReport >
33
- <WarningLevel >4</WarningLevel >
34
- <DocumentationFile >bin\StringToExpression.XML</DocumentationFile >
35
- <NoWarn >1591</NoWarn >
36
- </PropertyGroup >
37
- <ItemGroup >
38
- <Reference Include =" System" />
39
- <Reference Include =" System.Core" />
40
- <Reference Include =" System.Xml.Linq" />
41
- <Reference Include =" System.Data.DataSetExtensions" />
42
- <Reference Include =" Microsoft.CSharp" />
43
- <Reference Include =" System.Data" />
44
- <Reference Include =" System.Net.Http" />
45
- <Reference Include =" System.Xml" />
46
- </ItemGroup >
47
- <ItemGroup >
48
- <Compile Include =" Exceptions\BracketUnmatchedException.cs" />
49
- <Compile Include =" Exceptions\FunctionArgumentCountException.cs" />
50
- <Compile Include =" Exceptions\ListDelimeterNotWithinBrackets.cs" />
51
- <Compile Include =" Exceptions\FunctionArgumentTypeException.cs" />
52
- <Compile Include =" Exceptions\GrammerDefinitionDuplicateNameException.cs" />
53
- <Compile Include =" Exceptions\GrammerDefinitionInvalidNameException.cs" />
54
- <Compile Include =" Exceptions\OperandExpectedException.cs" />
55
- <Compile Include =" Exceptions\OperandUnexpectedException.cs" />
56
- <Compile Include =" Exceptions\OperationInvalidException.cs" />
57
- <Compile Include =" Exceptions\ParseException.cs" />
58
- <Compile Include =" Languages\ArithmeticLanguage.cs" />
59
- <Compile Include =" Languages\ODataFilterLanguage.cs" />
60
- <Compile Include =" Parser\Operand.cs" />
61
- <Compile Include =" Parser\Operator.cs" />
62
- <Compile Include =" Parser\Parser.cs" />
63
- <Compile Include =" Parser\ParseState.cs" />
64
- <Compile Include =" GrammerDefinitions\FunctionCallDefinition.cs" />
65
- <Compile Include =" GrammerDefinitions\ListDelimiterDefinition.cs" />
66
- <Compile Include =" GrammerDefinitions\UnaryOperatorDefinition.cs" />
67
- <Compile Include =" GrammerDefinitions\BracketCloseDefinition.cs" />
68
- <Compile Include =" GrammerDefinitions\BracketOpenDefinition.cs" />
69
- <Compile Include =" GrammerDefinitions\BinaryOperatorDefinition.cs" />
70
- <Compile Include =" GrammerDefinitions\OperatorDefinition.cs" />
71
- <Compile Include =" GrammerDefinitions\OperandDefinition.cs" />
72
- <Compile Include =" GrammerDefinitions\GrammerDefinition.cs" />
73
- <Compile Include =" Exceptions\GrammerUnexpectedException.cs" />
74
- <Compile Include =" Language.cs" />
75
- <Compile Include =" Properties\AssemblyInfo.cs" />
76
- <Compile Include =" Tokenizer\Token.cs" />
77
- <Compile Include =" Tokenizer\Tokenizer.cs" />
78
- <Compile Include =" Util\ExpressionConversions.cs" />
79
- <Compile Include =" Util\StackExtensions.cs" />
80
- <Compile Include =" Util\StringSegment.cs" />
81
- <Compile Include =" Util\Type.cs" />
82
- </ItemGroup >
83
- <ItemGroup >
84
- <None Include =" StringToExpression.nuspec" />
85
- </ItemGroup >
86
- <Import Project =" $(MSBuildToolsPath)\Microsoft.CSharp.targets" />
87
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
88
- Other similar extension points exist, see Microsoft.Common.targets.
89
- <Target Name="BeforeBuild">
90
- </Target>
91
- <Target Name="AfterBuild">
92
- </Target>
93
- -->
16
+
94
17
</Project >
0 commit comments