diff --git a/AWS/Kitsune.Identifier/Kitsune.Identifier.csproj b/AWS/Kitsune.Identifier/Kitsune.Identifier.csproj index c55cea6..2c822a2 100644 --- a/AWS/Kitsune.Identifier/Kitsune.Identifier.csproj +++ b/AWS/Kitsune.Identifier/Kitsune.Identifier.csproj @@ -17,7 +17,7 @@ - + diff --git a/AliCloud/KLM.AliCloud.Web/KLM.Web.csproj b/AliCloud/KLM.AliCloud.Web/KLM.Web.csproj index 443cea6..06ca6db 100644 --- a/AliCloud/KLM.AliCloud.Web/KLM.Web.csproj +++ b/AliCloud/KLM.AliCloud.Web/KLM.Web.csproj @@ -15,7 +15,7 @@ - + diff --git a/Common/FloatingpointLayoutManager/FloatingpointLayoutManager.csproj b/Common/FloatingpointLayoutManager/FloatingpointLayoutManager.csproj index 4a6e850..fb873a4 100644 --- a/Common/FloatingpointLayoutManager/FloatingpointLayoutManager.csproj +++ b/Common/FloatingpointLayoutManager/FloatingpointLayoutManager.csproj @@ -2,7 +2,7 @@ netcoreapp3.1 - 1.0.1 + 3.0.2 Devesh Kumar Kitsune Copyright © 2021 @@ -22,20 +22,23 @@ default full false - bin\Debug\ - bin\Debug\KitsuneLayoutManager.xml - https://github.com/nowfloats/kitsune-application-runtime + bin\Release\ + bin\Release\KitsuneLayoutManager.xml + git@github.com:nowfloats/kitsune-application-runtime.git git + true - - - - + + + + + + @@ -48,10 +51,4 @@ - - - Kitsune.Server.Model.dll - - - diff --git a/Common/FloatingpointLayoutManager/Helper/BlockLevelExpressionEvaluator.cs b/Common/FloatingpointLayoutManager/Helper/BlockLevelExpressionEvaluator.cs index 571ca07..4268dbe 100644 --- a/Common/FloatingpointLayoutManager/Helper/BlockLevelExpressionEvaluator.cs +++ b/Common/FloatingpointLayoutManager/Helper/BlockLevelExpressionEvaluator.cs @@ -1,9 +1,9 @@ -using KitsuneAntlrLibrary; -using KitsuneAntlrLibrary.Model; +using Kitsune.AntlrLibrary; +using Kitsune.AntlrLibrary.Model; using Kitsune.Language.Models; using Kitsune.Server.Model.Kitsune; -using KitsuneSyntaxParser; -using KitsuneSyntaxParser.Models; +using Kitsune.SyntaxParser; +using Kitsune.SyntaxParser.Models; using KitsuneLayoutManager.Models; using Microsoft.CSharp.RuntimeBinder; using Newtonsoft.Json; diff --git a/Common/FloatingpointLayoutManager/Helper/BlockLevelKLMExecutor.cs b/Common/FloatingpointLayoutManager/Helper/BlockLevelKLMExecutor.cs index e54ee2f..11b2b01 100644 --- a/Common/FloatingpointLayoutManager/Helper/BlockLevelKLMExecutor.cs +++ b/Common/FloatingpointLayoutManager/Helper/BlockLevelKLMExecutor.cs @@ -1,5 +1,5 @@ -using KitsuneAntlrLibrary; -using KitsuneAntlrLibrary.Model; +using Kitsune.AntlrLibrary; +using Kitsune.AntlrLibrary.Model; using Kitsune.Language.Models; using Kitsune.Models; using Kitsune.Models.KLM; diff --git a/Common/FloatingpointLayoutManager/Helper/ExpressionEvaluator.cs b/Common/FloatingpointLayoutManager/Helper/ExpressionEvaluator.cs index 706d4ce..0a51049 100644 --- a/Common/FloatingpointLayoutManager/Helper/ExpressionEvaluator.cs +++ b/Common/FloatingpointLayoutManager/Helper/ExpressionEvaluator.cs @@ -1,9 +1,9 @@ -using KitsuneAntlrLibrary; -using KitsuneAntlrLibrary.Model; +using Kitsune.AntlrLibrary; +using Kitsune.AntlrLibrary.Model; using Kitsune.Language.Models; using Kitsune.Server.Model.Kitsune; -using KitsuneSyntaxParser; -using KitsuneSyntaxParser.Models; +using Kitsune.SyntaxParser; +using Kitsune.SyntaxParser.Models; using Microsoft.CSharp.RuntimeBinder; using Newtonsoft.Json; using Newtonsoft.Json.Linq; diff --git a/Common/FloatingpointLayoutManager/Helper/TagProcessors/KDLProcessor.cs b/Common/FloatingpointLayoutManager/Helper/TagProcessors/KDLProcessor.cs index 2cb22e7..db7ec49 100644 --- a/Common/FloatingpointLayoutManager/Helper/TagProcessors/KDLProcessor.cs +++ b/Common/FloatingpointLayoutManager/Helper/TagProcessors/KDLProcessor.cs @@ -41,7 +41,7 @@ public override void Process(ref HtmlNode node, HtmlAttribute dynamicAttribute, baseObj = null; try { - objects = KitsuneSyntaxParser.Parser.GetObjects(Helper.TrimDelimiters(attr.Value)); + objects = Kitsune.SyntaxParser.Parser.GetObjects(Helper.TrimDelimiters(attr.Value)); foreach (var obj in objects) { diff --git a/Common/FloatingpointLayoutManager/Helper/TagProcessors/KObjectProcessor.cs b/Common/FloatingpointLayoutManager/Helper/TagProcessors/KObjectProcessor.cs index 9241872..44b24d0 100644 --- a/Common/FloatingpointLayoutManager/Helper/TagProcessors/KObjectProcessor.cs +++ b/Common/FloatingpointLayoutManager/Helper/TagProcessors/KObjectProcessor.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -using KitsuneAntlrLibrary; -using KitsuneAntlrLibrary.Model; +using Kitsune.AntlrLibrary; +using Kitsune.AntlrLibrary.Model; using HtmlAgilityPack; using Kitsune.Language.Models; diff --git a/Common/FloatingpointLayoutManager/Helper/TagProcessors/KRepeatProcessor.cs b/Common/FloatingpointLayoutManager/Helper/TagProcessors/KRepeatProcessor.cs index 616056f..c76044f 100644 --- a/Common/FloatingpointLayoutManager/Helper/TagProcessors/KRepeatProcessor.cs +++ b/Common/FloatingpointLayoutManager/Helper/TagProcessors/KRepeatProcessor.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -using KitsuneAntlrLibrary; -using KitsuneAntlrLibrary.Model; +using Kitsune.AntlrLibrary; +using Kitsune.AntlrLibrary.Model; using HtmlAgilityPack; using Kitsune.Language.Models; using Newtonsoft.Json; diff --git a/Common/FloatingpointLayoutManager/Helper/WidgetHandler/DataHandler.cs b/Common/FloatingpointLayoutManager/Helper/WidgetHandler/DataHandler.cs index df150e5..f4aab26 100644 --- a/Common/FloatingpointLayoutManager/Helper/WidgetHandler/DataHandler.cs +++ b/Common/FloatingpointLayoutManager/Helper/WidgetHandler/DataHandler.cs @@ -17,7 +17,7 @@ using Newtonsoft.Json; using System.Collections; using System.Diagnostics; -using KitsuneSyntaxParser; +using Kitsune.SyntaxParser; using System.Dynamic; namespace KitsuneLayoutManager.Helper.WidgetHandler diff --git a/Common/FloatingpointLayoutManager/Helper/WidgetHandler/KScriptHandler.cs b/Common/FloatingpointLayoutManager/Helper/WidgetHandler/KScriptHandler.cs index 4e13afa..db53e95 100644 --- a/Common/FloatingpointLayoutManager/Helper/WidgetHandler/KScriptHandler.cs +++ b/Common/FloatingpointLayoutManager/Helper/WidgetHandler/KScriptHandler.cs @@ -1,6 +1,6 @@ using HtmlAgilityPack; using Kitsune.Helper; -using KitsuneSyntaxParser; +using Kitsune.SyntaxParser; using KitsuneLayoutManager.Models; using Microsoft.CSharp.RuntimeBinder; using System; diff --git a/Common/FloatingpointLayoutManager/Helper/WidgetHandler/RepeatHelper.cs b/Common/FloatingpointLayoutManager/Helper/WidgetHandler/RepeatHelper.cs index dd2cb47..29b0e1e 100644 --- a/Common/FloatingpointLayoutManager/Helper/WidgetHandler/RepeatHelper.cs +++ b/Common/FloatingpointLayoutManager/Helper/WidgetHandler/RepeatHelper.cs @@ -6,7 +6,7 @@ using HtmlAgilityPack; using Kitsune.Server.Model.Kitsune; using System.Text.RegularExpressions; -using KitsuneSyntaxParser; +using Kitsune.SyntaxParser; namespace KitsuneLayoutManager.Helper.WidgetHandler { diff --git a/Common/FloatingpointLayoutManager/Kitsune.Server.Model.dll b/Common/FloatingpointLayoutManager/Kitsune.Server.Model.dll deleted file mode 100644 index 0b95b39..0000000 Binary files a/Common/FloatingpointLayoutManager/Kitsune.Server.Model.dll and /dev/null differ