diff --git a/README.md b/README.md
index de1a23e6..eb6c11af 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
[![NuGet version](https://badge.fury.io/nu/DynamicExpresso.Core.svg)](http://badge.fury.io/nu/DynamicExpresso.Core)
![build master](https://davideicardi.visualstudio.com/_apis/public/build/definitions/d6fd0002-6d51-417b-928e-27591379dfc4/4/badge)
-Available platforms: .NET Core 2.0, .NET 4.6.1
+Available platforms: .NET Core 2.0, .NET 4.5, .NET 4.6.1
Dynamic Expresso is an interpreter for simple C# statements written in .NET Standard 2.0.
Dynamic Expresso embeds its own parsing logic, really interprets C# statements by converting it to .NET lambda expressions or delegates.
diff --git a/src/DynamicExpresso.Core/DynamicExpresso.Core.csproj b/src/DynamicExpresso.Core/DynamicExpresso.Core.csproj
index 723b1693..536b5dc4 100644
--- a/src/DynamicExpresso.Core/DynamicExpresso.Core.csproj
+++ b/src/DynamicExpresso.Core/DynamicExpresso.Core.csproj
@@ -1,27 +1,28 @@
-
- netstandard2.0;net461
- DynamicExpresso
+
+ netstandard2.0;net461;net45
+ DynamicExpresso
- Davide Icardi
- davideicardi.com
- C# expression interpreter/evaluator
- Davide Icardi
- dynamic expresso expression linq eval
- True
- True
- True
- https://github.com/davideicardi/DynamicExpresso
- https://github.com/davideicardi/DynamicExpresso#license
- https://github.com/davideicardi/DynamicExpresso.git
- git
- 0.0.1
-
-
+ Davide Icardi
+ davideicardi.com
+ C# expression interpreter/evaluator
+ Davide Icardi
+ dynamic expresso expression linq eval
+ True
+ True
+ True
+ https://github.com/davideicardi/DynamicExpresso
+ https://github.com/davideicardi/DynamicExpresso#license
+ https://github.com/davideicardi/DynamicExpresso.git
+ git
+ 0.0.1
+
+
-
-
-
+
+
+
+
diff --git a/test/DynamicExpresso.UnitTest/DynamicExpresso.UnitTest.csproj b/test/DynamicExpresso.UnitTest/DynamicExpresso.UnitTest.csproj
index 94bd411d..e7e3dea3 100644
--- a/test/DynamicExpresso.UnitTest/DynamicExpresso.UnitTest.csproj
+++ b/test/DynamicExpresso.UnitTest/DynamicExpresso.UnitTest.csproj
@@ -1,7 +1,7 @@
- netcoreapp2.0;net461
+ netcoreapp2.0;net461;net45
false
@@ -11,8 +11,8 @@
-
-
+
+
diff --git a/test/DynamicExpresso.UnitTest/MemberInvocationTest.cs b/test/DynamicExpresso.UnitTest/MemberInvocationTest.cs
index f041a1ee..5848af47 100644
--- a/test/DynamicExpresso.UnitTest/MemberInvocationTest.cs
+++ b/test/DynamicExpresso.UnitTest/MemberInvocationTest.cs
@@ -24,7 +24,6 @@ public void Method_Property_Field_basic_test()
public void Null_conditional_property()
{
var target = new Interpreter().SetVariable("x", null, typeof(MyTestService));
- MyTestService x = null;
Assert.IsNull(target.Eval("x?.AProperty"));
}