Skip to content

Commit 1a6f147

Browse files
4.3 nuget
1 parent 3166fb7 commit 1a6f147

File tree

6 files changed

+290
-6
lines changed

6 files changed

+290
-6
lines changed
Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp2.2</TargetFramework>
5+
<AssemblyName>MathParser.org-mXparser</AssemblyName>
6+
<RootNamespace>mxparser</RootNamespace>
7+
<AssemblyVersion>4.3.0.0</AssemblyVersion>
8+
<FileVersion>4.0.0.0</FileVersion>
9+
<Version>4.3.0</Version>
10+
<PackageId>MathParser.org-mXparser</PackageId>
11+
<Authors>Mariusz Gromada - MathParser.org</Authors>
12+
<Company>Mariusz Gromada - MathParser.org</Company>
13+
<Product>mXparser</Product>
14+
<Description>A flexible mathematical expressions parser for JAVA and C# .NET</Description>
15+
<Copyright>Copyright © Mariusz Gromada 2019</Copyright>
16+
<PackageLicenseUrl>http://mathparser.org/mxparser-license/</PackageLicenseUrl>
17+
<PackageProjectUrl>http://mathparser.org/</PackageProjectUrl>
18+
<PackageIconUrl>http://mathparser.org/wp-content/uploads/2016/01/MathParser-org-mXparser-logo-Tutorial.jpg</PackageIconUrl>
19+
<RepositoryUrl>http://github.com/mariuszgromada/MathParser.org-mXparser</RepositoryUrl>
20+
<RepositoryType>GIT</RepositoryType>
21+
<PackageTags>Math Mathematics Mathematical Expression Expressions Parser Formula Evaluator Calculator Units Solve Probability Integration Derivative Calculus Recursion Operator Logic Condition Bitwise Custom</PackageTags>
22+
<PackageReleaseNotes>v.4.3 Caprica</PackageReleaseNotes>
23+
</PropertyGroup>
24+
25+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
26+
<DefineConstants>TRACE;RELEASE;NETCOREAPP1_1;CORE</DefineConstants>
27+
<PlatformTarget>AnyCPU</PlatformTarget>
28+
</PropertyGroup>
29+
<PropertyGroup>
30+
<SignAssembly>true</SignAssembly>
31+
</PropertyGroup>
32+
<PropertyGroup>
33+
<SignAssembly>true</SignAssembly>
34+
</PropertyGroup>
35+
<PropertyGroup>
36+
<AssemblyOriginatorKeyFile>..\..\..\..\..\pfx-keys\mariuszgromada.org.pfx</AssemblyOriginatorKeyFile>
37+
<DelaySign>False</DelaySign>
38+
</PropertyGroup>
39+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
40+
<DefineConstants>TRACE;DEBUG;CORE</DefineConstants>
41+
</PropertyGroup>
42+
43+
<ItemGroup>
44+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\Argument.cs" Link="src\org\mariuszgromada\math\mxparser\Argument.cs" />
45+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\Constant.cs" Link="src\org\mariuszgromada\math\mxparser\Constant.cs" />
46+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\Expression.cs" Link="src\org\mariuszgromada\math\mxparser\Expression.cs" />
47+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\Function.cs" Link="src\org\mariuszgromada\math\mxparser\Function.cs" />
48+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\FunctionExtension.cs" Link="src\org\mariuszgromada\math\mxparser\FunctionExtension.cs" />
49+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\FunctionExtensionVariadic.cs" Link="src\org\mariuszgromada\math\mxparser\FunctionExtensionVariadic.cs" />
50+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mathcollection\AstronomicalConstants.cs" Link="src\org\mariuszgromada\math\mxparser\mathcollection\AstronomicalConstants.cs" />
51+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mathcollection\BinaryRelations.cs" Link="src\org\mariuszgromada\math\mxparser\mathcollection\BinaryRelations.cs" />
52+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mathcollection\BooleanAlgebra.cs" Link="src\org\mariuszgromada\math\mxparser\mathcollection\BooleanAlgebra.cs" />
53+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mathcollection\Calculus.cs" Link="src\org\mariuszgromada\math\mxparser\mathcollection\Calculus.cs" />
54+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mathcollection\Coefficients.cs" Link="src\org\mariuszgromada\math\mxparser\mathcollection\Coefficients.cs" />
55+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mathcollection\Evaluate.cs" Link="src\org\mariuszgromada\math\mxparser\mathcollection\Evaluate.cs" />
56+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mathcollection\MathConstants.cs" Link="src\org\mariuszgromada\math\mxparser\mathcollection\MathConstants.cs" />
57+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mathcollection\MathFunctions.cs" Link="src\org\mariuszgromada\math\mxparser\mathcollection\MathFunctions.cs" />
58+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mathcollection\NumberTheory.cs" Link="src\org\mariuszgromada\math\mxparser\mathcollection\NumberTheory.cs" />
59+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mathcollection\PhysicalConstants.cs" Link="src\org\mariuszgromada\math\mxparser\mathcollection\PhysicalConstants.cs" />
60+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mathcollection\PrimesCache.cs" Link="src\org\mariuszgromada\math\mxparser\mathcollection\PrimesCache.cs" />
61+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mathcollection\ProbabilityDistributions.cs" Link="src\org\mariuszgromada\math\mxparser\mathcollection\ProbabilityDistributions.cs" />
62+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mathcollection\SpecialFunctions.cs" Link="src\org\mariuszgromada\math\mxparser\mathcollection\SpecialFunctions.cs" />
63+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mathcollection\Statistics.cs" Link="src\org\mariuszgromada\math\mxparser\mathcollection\Statistics.cs" />
64+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mathcollection\Units.cs" Link="src\org\mariuszgromada\math\mxparser\mathcollection\Units.cs" />
65+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\Miscellaneous.cs" Link="src\org\mariuszgromada\math\mxparser\Miscellaneous.cs" />
66+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\mXparser.cs" Link="src\org\mariuszgromada\math\mxparser\mXparser.cs" />
67+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\parsertokens\BinaryRelation.cs" Link="src\org\mariuszgromada\math\mxparser\parsertokens\BinaryRelation.cs" />
68+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\parsertokens\BitwiseOperator.cs" Link="src\org\mariuszgromada\math\mxparser\parsertokens\BitwiseOperator.cs" />
69+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\parsertokens\BooleanOperator.cs" Link="src\org\mariuszgromada\math\mxparser\parsertokens\BooleanOperator.cs" />
70+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\parsertokens\CalculusOperator.cs" Link="src\org\mariuszgromada\math\mxparser\parsertokens\CalculusOperator.cs" />
71+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\parsertokens\ConstantValue.cs" Link="src\org\mariuszgromada\math\mxparser\parsertokens\ConstantValue.cs" />
72+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\parsertokens\Function1Arg.cs" Link="src\org\mariuszgromada\math\mxparser\parsertokens\Function1Arg.cs" />
73+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\parsertokens\Function2Arg.cs" Link="src\org\mariuszgromada\math\mxparser\parsertokens\Function2Arg.cs" />
74+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\parsertokens\Function3Arg.cs" Link="src\org\mariuszgromada\math\mxparser\parsertokens\Function3Arg.cs" />
75+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\parsertokens\FunctionVariadic.cs" Link="src\org\mariuszgromada\math\mxparser\parsertokens\FunctionVariadic.cs" />
76+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\parsertokens\KeyWord.cs" Link="src\org\mariuszgromada\math\mxparser\parsertokens\KeyWord.cs" />
77+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\parsertokens\Operator.cs" Link="src\org\mariuszgromada\math\mxparser\parsertokens\Operator.cs" />
78+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\parsertokens\ParserSymbol.cs" Link="src\org\mariuszgromada\math\mxparser\parsertokens\ParserSymbol.cs" />
79+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\parsertokens\RandomVariable.cs" Link="src\org\mariuszgromada\math\mxparser\parsertokens\RandomVariable.cs" />
80+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\parsertokens\Token.cs" Link="src\org\mariuszgromada\math\mxparser\parsertokens\Token.cs" />
81+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\parsertokens\Unit.cs" Link="src\org\mariuszgromada\math\mxparser\parsertokens\Unit.cs" />
82+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\PrimitiveElement.cs" Link="src\org\mariuszgromada\math\mxparser\PrimitiveElement.cs" />
83+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\RecursiveArgument.cs" Link="src\org\mariuszgromada\math\mxparser\RecursiveArgument.cs" />
84+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\regressiontesting\PerformanceTests.cs" Link="src\org\mariuszgromada\math\mxparser\regressiontesting\PerformanceTests.cs" />
85+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\regressiontesting\RegTestExpression.cs" Link="src\org\mariuszgromada\math\mxparser\regressiontesting\RegTestExpression.cs" />
86+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\regressiontesting\RegTestExpressionAPI.cs" Link="src\org\mariuszgromada\math\mxparser\regressiontesting\RegTestExpressionAPI.cs" />
87+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\regressiontesting\RegTestSyntax.cs" Link="src\org\mariuszgromada\math\mxparser\regressiontesting\RegTestSyntax.cs" />
88+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\regressiontesting\RunTest.cs" Link="src\org\mariuszgromada\math\mxparser\regressiontesting\RunTest.cs" />
89+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\syntaxchecker\ParseException.cs" Link="src\org\mariuszgromada\math\mxparser\syntaxchecker\ParseException.cs" />
90+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\syntaxchecker\SimpleCharStream.cs" Link="src\org\mariuszgromada\math\mxparser\syntaxchecker\SimpleCharStream.cs" />
91+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\syntaxchecker\SyntaxChecker.cs" Link="src\org\mariuszgromada\math\mxparser\syntaxchecker\SyntaxChecker.cs" />
92+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\syntaxchecker\SyntaxCheckerConstants.cs" Link="src\org\mariuszgromada\math\mxparser\syntaxchecker\SyntaxCheckerConstants.cs" />
93+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\syntaxchecker\SyntaxCheckerTokenManager.cs" Link="src\org\mariuszgromada\math\mxparser\syntaxchecker\SyntaxCheckerTokenManager.cs" />
94+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\syntaxchecker\Token.cs" Link="src\org\mariuszgromada\math\mxparser\syntaxchecker\Token.cs" />
95+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\syntaxchecker\TokenMgrError.cs" Link="src\org\mariuszgromada\math\mxparser\syntaxchecker\TokenMgrError.cs" />
96+
<Compile Include="..\..\src\org\mariuszgromada\math\mxparser\Tutorial.cs" Link="src\org\mariuszgromada\math\mxparser\Tutorial.cs" />
97+
</ItemGroup>
98+
99+
<ItemGroup>
100+
<Folder Include="src\org\mariuszgromada\math\mxparser\mathcollection\" />
101+
<Folder Include="src\org\mariuszgromada\math\mxparser\syntaxchecker\" />
102+
<Folder Include="src\org\mariuszgromada\math\mxparser\regressiontesting\" />
103+
<Folder Include="src\org\mariuszgromada\math\mxparser\parsertokens\" />
104+
</ItemGroup>
105+
106+
</Project>

0 commit comments

Comments
 (0)