File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
CodingSeb.ExpressionEvaluator Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 5
5
<Product >CodingSeb.ExpressionEvaluator</Product >
6
6
<Description >A Simple Math and Pseudo C# Expression Evaluator in One C# File. Can also execute small C# like scripts</Description >
7
7
<Copyright >Copyright © Coding Seb 2017</Copyright >
8
- <Version >1.4.17 .0</Version >
9
- <AssemblyVersion >1.4.17 .0</AssemblyVersion >
10
- <FileVersion >1.4.17 .0</FileVersion >
8
+ <Version >1.4.18 .0</Version >
9
+ <AssemblyVersion >1.4.18 .0</AssemblyVersion >
10
+ <FileVersion >1.4.18 .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 >* Add support for Null-coalescing assignation operator ??= </PackageReleaseNotes >
21
+ <PackageReleaseNotes >* Better exception when expression is empty </PackageReleaseNotes >
22
22
<PackageLicenseFile >LICENSE.md</PackageLicenseFile >
23
23
<RepositoryUrl >https://github.com/codingseb/ExpressionEvaluator</RepositoryUrl >
24
24
</PropertyGroup >
Original file line number Diff line number Diff line change @@ -25,8 +25,6 @@ public MainWindow()
25
25
{
26
26
InitializeComponent ( ) ;
27
27
28
- new ExpressionEvaluator ( ) . Evaluate ( "" ) ;
29
-
30
28
if ( File . Exists ( persistCodeFileName ) )
31
29
ScriptTextBox . Text = File . ReadAllText ( persistCodeFileName ) ;
32
30
if ( File . Exists ( persistIterationFileName ) )
You can’t perform that action at this time.
0 commit comments