From 2ffe792baf2b977950dc0f9e982635bb3983a8f4 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Mon, 23 Mar 2020 03:07:21 -0400 Subject: [PATCH 1/2] update snk --- MBS.Framework/MBS.Framework.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MBS.Framework/MBS.Framework.csproj b/MBS.Framework/MBS.Framework.csproj index 96cee59..99712db 100644 --- a/MBS.Framework/MBS.Framework.csproj +++ b/MBS.Framework/MBS.Framework.csproj @@ -10,7 +10,7 @@ 8.0.30703 2.0 true - ..\..\MichaelBecker.snk + ..\..\Production.snk 4.0.2019.12 From a97565009ea266e56d580ac392b7a3d1b29a91b4 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Sat, 28 Mar 2020 22:51:31 -0400 Subject: [PATCH 2/2] allow constructor to accept NULL expression --- MBS.Framework/Logic/Variable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MBS.Framework/Logic/Variable.cs b/MBS.Framework/Logic/Variable.cs index d548309..016d729 100644 --- a/MBS.Framework/Logic/Variable.cs +++ b/MBS.Framework/Logic/Variable.cs @@ -39,7 +39,7 @@ namespace MBS.Framework.Logic public string Name { get; set; } = null; public Expression Expression { get; set; } = null; - public Variable(string name, Expression expression) + public Variable(string name, Expression expression = null) { Name = name; Expression = expression;