From 1c53553beae5744e40a68c6aff9f8f80a5e1247b Mon Sep 17 00:00:00 2001 From: Dmytro Kyshchenko Date: Fri, 2 Jun 2017 02:16:15 +0300 Subject: [PATCH] #190 --- .../ParameterTypeMismatchException.cs | 2 +- xFunc.Maths/{Expressions => Analyzers}/ResultType.cs | 2 +- xFunc.Maths/xFunc.Maths.csproj | 4 ++-- xFunc/Views/FunctionView.xaml.cs | 1 + xFunc/Views/MathControl.xaml.cs | 1 + xFunc/Views/TruthTableControl.xaml.cs | 1 + 6 files changed, 7 insertions(+), 4 deletions(-) rename xFunc.Maths/{Expressions => Analyzers}/ParameterTypeMismatchException.cs (99%) rename xFunc.Maths/{Expressions => Analyzers}/ResultType.cs (98%) diff --git a/xFunc.Maths/Expressions/ParameterTypeMismatchException.cs b/xFunc.Maths/Analyzers/ParameterTypeMismatchException.cs similarity index 99% rename from xFunc.Maths/Expressions/ParameterTypeMismatchException.cs rename to xFunc.Maths/Analyzers/ParameterTypeMismatchException.cs index 0c2f026ef..efcc71e2f 100644 --- a/xFunc.Maths/Expressions/ParameterTypeMismatchException.cs +++ b/xFunc.Maths/Analyzers/ParameterTypeMismatchException.cs @@ -16,7 +16,7 @@ using System.Runtime.Serialization; using xFunc.Maths.Resources; -namespace xFunc.Maths.Expressions +namespace xFunc.Maths.Analyzers { /// diff --git a/xFunc.Maths/Expressions/ResultType.cs b/xFunc.Maths/Analyzers/ResultType.cs similarity index 98% rename from xFunc.Maths/Expressions/ResultType.cs rename to xFunc.Maths/Analyzers/ResultType.cs index c5fcd41d3..7434933b0 100644 --- a/xFunc.Maths/Expressions/ResultType.cs +++ b/xFunc.Maths/Analyzers/ResultType.cs @@ -14,7 +14,7 @@ // limitations under the License. using System; -namespace xFunc.Maths.Expressions +namespace xFunc.Maths.Analyzers { /// diff --git a/xFunc.Maths/xFunc.Maths.csproj b/xFunc.Maths/xFunc.Maths.csproj index adbad9b90..2e093e40e 100644 --- a/xFunc.Maths/xFunc.Maths.csproj +++ b/xFunc.Maths/xFunc.Maths.csproj @@ -59,7 +59,7 @@ - + @@ -85,7 +85,7 @@ - + diff --git a/xFunc/Views/FunctionView.xaml.cs b/xFunc/Views/FunctionView.xaml.cs index e014852a0..9549c8686 100644 --- a/xFunc/Views/FunctionView.xaml.cs +++ b/xFunc/Views/FunctionView.xaml.cs @@ -17,6 +17,7 @@ using System.Windows; using System.Windows.Input; using xFunc.Maths; +using xFunc.Maths.Analyzers; using xFunc.Maths.Expressions; using xFunc.Maths.Expressions.Collections; using xFunc.Resources; diff --git a/xFunc/Views/MathControl.xaml.cs b/xFunc/Views/MathControl.xaml.cs index a15cb7358..75ff925c5 100644 --- a/xFunc/Views/MathControl.xaml.cs +++ b/xFunc/Views/MathControl.xaml.cs @@ -18,6 +18,7 @@ using System.Windows.Controls; using System.Windows.Input; using xFunc.Maths; +using xFunc.Maths.Analyzers; using xFunc.Maths.Expressions; using xFunc.Maths.Expressions.Collections; using xFunc.Presenters; diff --git a/xFunc/Views/TruthTableControl.xaml.cs b/xFunc/Views/TruthTableControl.xaml.cs index 270ab0013..f23ff6e7e 100644 --- a/xFunc/Views/TruthTableControl.xaml.cs +++ b/xFunc/Views/TruthTableControl.xaml.cs @@ -20,6 +20,7 @@ using System.Windows.Data; using System.Windows.Input; using xFunc.Maths; +using xFunc.Maths.Analyzers; using xFunc.Maths.Expressions; using xFunc.Maths.Expressions.Collections; using xFunc.Presenters;