diff --git a/src/Core/CsMic.Core.csproj b/src/Core/CsMic.Core.csproj
index 67ab902..29d6953 100644
--- a/src/Core/CsMic.Core.csproj
+++ b/src/Core/CsMic.Core.csproj
@@ -7,7 +7,7 @@
enable
False
CSMic.Core
- 2.0.0-beta-04
+ 2.0.0-beta-03
CSMic
latest
diff --git a/src/Core/InputInterpreter.cs b/src/Core/InputInterpreter.cs
index 46addbf..5c2c985 100644
--- a/src/Core/InputInterpreter.cs
+++ b/src/Core/InputInterpreter.cs
@@ -81,10 +81,7 @@ namespace CSMic
{
get
{
- return this.numericVariables.Select(nv => new Variable(VariableType.Numeric, nv.Key, nv.Value))
- .Concat(this.expressionVariables.Select(nv => new Variable(VariableType.Expression, nv.Key, nv.Value)))
- .Concat(this.numericArrayVariables.Select(nv => new Variable(VariableType.NumericArray, nv.Key, nv.Value)))
- .AsEnumerable();
+ return null;
}
}
#endregion
diff --git a/src/Core/Variable.cs b/src/Core/Variable.cs
index 5da61c5..434daa1 100644
--- a/src/Core/Variable.cs
+++ b/src/Core/Variable.cs
@@ -14,35 +14,7 @@ namespace CSMic
private string name;
- private object? value;
-
- #endregion
-
- #region Properties
-
- public VariableType Type
- {
- get
- {
- return this.type;
- }
- }
-
- public string Name
- {
- get
- {
- return this.name;
- }
- }
-
- public object? Value
- {
- get
- {
- return this.value;
- }
- }
+ private object value;
#endregion
@@ -51,19 +23,9 @@ namespace CSMic
public Variable()
{
this.type = VariableType.None;
- this.name = string.Empty;
- this.value = null;
+ this.value = string.Empty;
}
- public Variable(VariableType type, string name, object? value)
- {
- this.type = type;
- this.name = name;
- this.value = value;
- }
-
-
-
#endregion
}
}
diff --git a/src/StandardLibrary/CsMic.StandardLibrary.csproj b/src/StandardLibrary/CsMic.StandardLibrary.csproj
index 254c161..68ea366 100644
--- a/src/StandardLibrary/CsMic.StandardLibrary.csproj
+++ b/src/StandardLibrary/CsMic.StandardLibrary.csproj
@@ -6,7 +6,7 @@
CSMic.StandardLibrary
enable
enable
- 2.0.0-beta-04
+ 2.0.0-beta-03
CSMic.StandardLibrary
latest