|
5 | 5 | <Product>CodingSeb.ExpressionEvaluator</Product> |
6 | 6 | <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> |
7 | 7 | <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> |
11 | 11 | <OutputPath>bin\$(Configuration)\</OutputPath> |
12 | 12 | <Authors>Coding Seb</Authors> |
13 | 13 | <PackageId>CodingSeb.ExpressionEvaluator</PackageId> |
|
18 | 18 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
19 | 19 | <PackageIconUrl>https://github.com/codingseb/ExpressionEvaluator/blob/master/Icon.png?raw=true</PackageIconUrl> |
20 | 20 | <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> |
24 | 24 | </PropertyGroup> |
25 | 25 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
26 | 26 | <DebugType>full</DebugType> |
|
31 | 31 | <ItemGroup> |
32 | 32 | <PackageReference Include="Microsoft.CSharp" Version="4.5.0" /> |
33 | 33 | <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" /> |
38 | 34 | </ItemGroup> |
39 | 35 | </Project> |
0 commit comments