Skip to content

Commit 593b409

Browse files
committed
Version 1.3.2.0
1 parent 18f007b commit 593b409

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

CodingSeb.ExpressionEvaluator/CodingSeb.ExpressionEvaluator.csproj

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<Product>CodingSeb.ExpressionEvaluator</Product>
66
<Description>A Simple Math and Pseudo C# Expression Evaluator in One C# File. And from version 1.2.0 can execute small C# like scripts</Description>
77
<Copyright>Copyright © Coding Seb 2017</Copyright>
8-
<Version>1.3.1.0</Version>
9-
<AssemblyVersion>1.3.1.0</AssemblyVersion>
10-
<FileVersion>1.3.1.0</FileVersion>
8+
<Version>1.3.2.0</Version>
9+
<AssemblyVersion>1.3.2.0</AssemblyVersion>
10+
<FileVersion>1.3.2.0</FileVersion>
1111
<OutputPath>bin\$(Configuration)\</OutputPath>
1212
<Authors>Coding Seb</Authors>
1313
<PackageId>CodingSeb.ExpressionEvaluator</PackageId>
@@ -18,9 +18,9 @@
1818
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1919
<PackageIconUrl>https://github.com/codingseb/ExpressionEvaluator/blob/master/Icon.png?raw=true</PackageIconUrl>
2020
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
21-
<PackageReleaseNotes>* Array initialisation with new type[] { x, y, ...} or new type[2]
22-
* Correction of multiple bugs with String interpolation, doublequote char and string escape
23-
* Icon in ReadMe</PackageReleaseNotes>
21+
<PackageReleaseNotes>* Support for inline namespaces (More flexible, but slower)
22+
* Option OptionInlineNamespacesEvaluationActive (To unactive inline namespaces)
23+
* Remove not necessary nugets dependencies</PackageReleaseNotes>
2424
</PropertyGroup>
2525
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2626
<DebugType>full</DebugType>
@@ -31,9 +31,5 @@
3131
<ItemGroup>
3232
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
3333
<PackageReference Include="System.Dynamic.Runtime" Version="4.3.0" />
34-
<PackageReference Include="System.Net.Http" Version="4.3.4" />
35-
</ItemGroup>
36-
<ItemGroup Condition="'$(TargetFramework)' == 'net45'">
37-
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
3834
</ItemGroup>
3935
</Project>

CodingSeb.ExpressionEvaluator/ExpressionEvaluator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/******************************************************************************************************
22
Title : ExpressionEvaluator (https://github.com/codingseb/ExpressionEvaluator)
3-
Version : 1.3.1.1
3+
Version : 1.3.2.0
44
(if last digit is not a zero, the version is an intermediate version and can be unstable)
55
66
Author : Coding Seb

0 commit comments

Comments
 (0)