diff --git a/ChatBot.sln b/ChatBot.sln index 9c4bd68..c68a59a 100644 --- a/ChatBot.sln +++ b/ChatBot.sln @@ -1,22 +1,24 @@ - Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 -VisualStudioVersion = 17.0.31903.59 +VisualStudioVersion = 17.5.2.0 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChatBot", "ChatBot\ChatBot.csproj", "{E19F4577-A213-4A2A-A839-A8DAD17B54B6}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "chatbot", "chatbot.csproj", "{1F176087-2DD9-6E45-9234-9A7089B023C7}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Release|Any CPU = Release|Any CPU EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1F176087-2DD9-6E45-9234-9A7089B023C7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1F176087-2DD9-6E45-9234-9A7089B023C7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1F176087-2DD9-6E45-9234-9A7089B023C7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1F176087-2DD9-6E45-9234-9A7089B023C7}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {E19F4577-A213-4A2A-A839-A8DAD17B54B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E19F4577-A213-4A2A-A839-A8DAD17B54B6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E19F4577-A213-4A2A-A839-A8DAD17B54B6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E19F4577-A213-4A2A-A839-A8DAD17B54B6}.Release|Any CPU.Build.0 = Release|Any CPU + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {2BEA74BD-CA96-49E2-8EB6-17EA6D237CE5} EndGlobalSection EndGlobal diff --git a/ChatBot/Program.cs b/ChatBot/Program.cs deleted file mode 100644 index 58d9452..0000000 --- a/ChatBot/Program.cs +++ /dev/null @@ -1,128 +0,0 @@ -using System.Globalization; -using System.Runtime.InteropServices; -using System.Text; -using Microsoft.VisualBasic.FileIO; -Dictionary dialogs = new Dictionary(); -Dictionary otherDialogs = new Dictionary(); -dialogs.Add("pedido", "Qual é o problema com o pedido?"); -dialogs.Add("atraso", "Certo, o pedido está em atraso...\nHá alguma ocorrência de atraso com esse número de pedido?"); -dialogs.Add("falta", "Hum... houve falta nesse pedido. Certo, esse produto foi faturado na nota fiscal?"); -dialogs.Add("resposta atraso sim 1", "Verifique as tarefas desta ocorrência e veja se alguma delas está dentro do prazo ou se estão todas encerradas. Se estiverem, encaminhe o caso para o suporte e aguarde a resposta."); -dialogs.Add("resposta atraso nao 1", "Verifique com o cliente se ele ainda deseja receber o pedido.\nSe sim, abra uma ocorrência de atraso na entrega, descrevendo que o cliente deseja receber o pedido. Informe o SLA e o número de protocolo ao cliente.\nTabulação \nPrmeira categoria:Transporte \nSegunda categoria:Atraso na entrega \nMotivo:Pedido não entregue"); -dialogs.Add("resposta falta sim", "Abra uma ocorrência de falta de produto:\nCategoria: Pós-compra\nSubcategoria: Falta\nMotivo: Produto faturado."); -dialogs.Add("resposta falta nao", "Então o produto não consta na nota fiscal? Ou ele foi cortado?"); -dialogs.Add("resposta nao consta", "Se o produto não consta na nota fiscal, então ele não foi pedido. Não é possível abrir uma ocorrência de falta de algo que não foi comprado."); -dialogs.Add("resposta cortado", "Certo. Abra uma ocorrência de falta de produto:\nCategoria: Pós-compra\nSubcategoria: Falta\nMotivo: Produto não faturado."); -dialogs.Add("Cadastro", "Cliente está com problema no cadastro? Qual a mensagem de erro?"); -dialogs.Add("Cadastro, CPF já cadastrado", "Quando ocorre esse erro Você tem quem reprocessar no GPP \nCaso não apareceça em 5 minutos \nPrencha esse formulário \nMatricula: \nCPF: \n Nome Completo: \nData de nascimento: \n Cep: \nEndereço completo: \nE-mail: \nTelefone de contato:"); -dialogs.Add("help", "Voce pode me perguntar sobre Pedidos, sobre o que fazer quando tem Atraso, se esta em Falta ou ate mesmo sobre o cadastro do cliente, caso deseje finalizar nossa conversa digite 'sair' para encerrar."); -otherDialogs.Add("erro", "Desculpe, não entendi. Pode reformular?"); -otherDialogs.Add("farewells", "Até mais! Volte sempre que precisar. 😊"); -otherDialogs.Add("welcome", "Olá! Meu nome é Rey. Com o que o cliente está tendo problema?"); -string RemoveAccents(string text) -{ - var normalizedString = text.Normalize(NormalizationForm.FormD); - var stringBuilder = new StringBuilder(); - - foreach (var c in normalizedString.EnumerateRunes()) - { - var unicodeCategory = Rune.GetUnicodeCategory(c); - if (unicodeCategory != UnicodeCategory.NonSpacingMark) - { - stringBuilder.Append(c); - } - } - return stringBuilder.ToString().Normalize(NormalizationForm.FormC); -} -string RemovePunctuation(string texto) -{ - var stringBuilder = new StringBuilder(); - foreach (char c in texto) - { - if(!char.IsPunctuation(c)) - { - stringBuilder.Append(c); - } - } - return stringBuilder.ToString(); -} -string NormalizedText(string text) -{ - text = text.ToLower(); - text = RemovePunctuation(text); - text = RemoveAccents(text); - return text; -} -void ConsoleResponse(string texto) -{ - Console.WriteLine("ChatBot: "+texto); -} -void ChatBot() -{ - ConsoleResponse(otherDialogs["welcome"]); - string lastResponse = string.Empty; - string response = string.Empty; - while(true) - { - Console.Write("Você: "); - string userInput = Console.ReadLine()!; - string normalizedString = NormalizedText(userInput); - if (normalizedString == "sair") - { - ConsoleResponse(otherDialogs["farewells"]); - break; - }else if (lastResponse == dialogs["atraso"]) - { - if (normalizedString == "sim") - { - response = dialogs["resposta atraso sim"]; - }else if (normalizedString == "nao") - { - response = dialogs["resposta atraso nao"]; - }else - { - response = otherDialogs["erro"]; - } - }else if (lastResponse == dialogs["falta"]) - { - if (normalizedString == "sim") - { - response = dialogs["resposta falta sim"]; - }else if (normalizedString == "nao") - { - response = dialogs["resposta falta nao"]; - }else - { - response = otherDialogs["erro"]; - } - }else if (lastResponse == dialogs["resposta falta nao"]) - { - if (normalizedString == "sim") - { - response = dialogs["resposta nao consta"]; - }else if (normalizedString == "nao") - { - response = dialogs["resposta cortado"]; - }else - { - response = otherDialogs["erro"]; - } - }else - { - foreach (string keyword in dialogs.Keys) - { - if (keyword == normalizedString) - { - response = dialogs[keyword]; - break; - }else - { - response = otherDialogs["erro"]; - } - } - } - ConsoleResponse(response); - lastResponse = response; - } -} -ChatBot(); \ No newline at end of file diff --git a/ChatBot/bin/Debug/net9.0/ChatBot b/ChatBot/bin/Debug/net9.0/ChatBot deleted file mode 100755 index 999bafc..0000000 Binary files a/ChatBot/bin/Debug/net9.0/ChatBot and /dev/null differ diff --git a/ChatBot/bin/Debug/net9.0/ChatBot.dll b/ChatBot/bin/Debug/net9.0/ChatBot.dll deleted file mode 100644 index c577d1f..0000000 Binary files a/ChatBot/bin/Debug/net9.0/ChatBot.dll and /dev/null differ diff --git a/ChatBot/bin/Debug/net9.0/ChatBot.pdb b/ChatBot/bin/Debug/net9.0/ChatBot.pdb deleted file mode 100644 index 75fa333..0000000 Binary files a/ChatBot/bin/Debug/net9.0/ChatBot.pdb and /dev/null differ diff --git a/ChatBot/obj/Debug/net9.0/ChatBot.AssemblyInfoInputs.cache b/ChatBot/obj/Debug/net9.0/ChatBot.AssemblyInfoInputs.cache deleted file mode 100644 index 3093f5f..0000000 --- a/ChatBot/obj/Debug/net9.0/ChatBot.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -6c88acb97c99d251f97f5268b4ecd33a697eb097cfb7da048cdf50f5a7df2d8e diff --git a/ChatBot/obj/Debug/net9.0/ChatBot.assets.cache b/ChatBot/obj/Debug/net9.0/ChatBot.assets.cache deleted file mode 100644 index 61312c3..0000000 Binary files a/ChatBot/obj/Debug/net9.0/ChatBot.assets.cache and /dev/null differ diff --git a/ChatBot/obj/Debug/net9.0/ChatBot.csproj.CoreCompileInputs.cache b/ChatBot/obj/Debug/net9.0/ChatBot.csproj.CoreCompileInputs.cache deleted file mode 100644 index 2c28a6e..0000000 --- a/ChatBot/obj/Debug/net9.0/ChatBot.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -a2c526e10e0d5e3da96149988541bfb0b5af5624427791be8fcfef69b635753f diff --git a/ChatBot/obj/Debug/net9.0/ChatBot.csproj.FileListAbsolute.txt b/ChatBot/obj/Debug/net9.0/ChatBot.csproj.FileListAbsolute.txt deleted file mode 100644 index bbaff41..0000000 --- a/ChatBot/obj/Debug/net9.0/ChatBot.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,15 +0,0 @@ -/home/ratix/Public/Csharp/ChatBot/ChatBot/bin/Debug/net9.0/ChatBot -/home/ratix/Public/Csharp/ChatBot/ChatBot/bin/Debug/net9.0/ChatBot.deps.json -/home/ratix/Public/Csharp/ChatBot/ChatBot/bin/Debug/net9.0/ChatBot.runtimeconfig.json -/home/ratix/Public/Csharp/ChatBot/ChatBot/bin/Debug/net9.0/ChatBot.dll -/home/ratix/Public/Csharp/ChatBot/ChatBot/bin/Debug/net9.0/ChatBot.pdb -/home/ratix/Public/Csharp/ChatBot/ChatBot/obj/Debug/net9.0/ChatBot.GeneratedMSBuildEditorConfig.editorconfig -/home/ratix/Public/Csharp/ChatBot/ChatBot/obj/Debug/net9.0/ChatBot.AssemblyInfoInputs.cache -/home/ratix/Public/Csharp/ChatBot/ChatBot/obj/Debug/net9.0/ChatBot.AssemblyInfo.cs -/home/ratix/Public/Csharp/ChatBot/ChatBot/obj/Debug/net9.0/ChatBot.csproj.CoreCompileInputs.cache -/home/ratix/Public/Csharp/ChatBot/ChatBot/obj/Debug/net9.0/ChatBot.dll -/home/ratix/Public/Csharp/ChatBot/ChatBot/obj/Debug/net9.0/refint/ChatBot.dll -/home/ratix/Public/Csharp/ChatBot/ChatBot/obj/Debug/net9.0/ChatBot.pdb -/home/ratix/Public/Csharp/ChatBot/ChatBot/obj/Debug/net9.0/ChatBot.genruntimeconfig.cache -/home/ratix/Public/Csharp/ChatBot/ChatBot/obj/Debug/net9.0/ref/ChatBot.dll -/home/ratix/Public/Csharp/ChatBot/ChatBot/obj/Debug/net9.0/ChatBot.sourcelink.json diff --git a/ChatBot/obj/Debug/net9.0/ChatBot.dll b/ChatBot/obj/Debug/net9.0/ChatBot.dll deleted file mode 100644 index c577d1f..0000000 Binary files a/ChatBot/obj/Debug/net9.0/ChatBot.dll and /dev/null differ diff --git a/ChatBot/obj/Debug/net9.0/ChatBot.genruntimeconfig.cache b/ChatBot/obj/Debug/net9.0/ChatBot.genruntimeconfig.cache deleted file mode 100644 index f405286..0000000 --- a/ChatBot/obj/Debug/net9.0/ChatBot.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -c54a66318e6cd0a9eaad536a582637c78466007c1f353db95471ac73a02e280b diff --git a/ChatBot/obj/Debug/net9.0/ChatBot.pdb b/ChatBot/obj/Debug/net9.0/ChatBot.pdb deleted file mode 100644 index 75fa333..0000000 Binary files a/ChatBot/obj/Debug/net9.0/ChatBot.pdb and /dev/null differ diff --git a/ChatBot/obj/Debug/net9.0/ChatBot.sourcelink.json b/ChatBot/obj/Debug/net9.0/ChatBot.sourcelink.json deleted file mode 100644 index e515d0c..0000000 --- a/ChatBot/obj/Debug/net9.0/ChatBot.sourcelink.json +++ /dev/null @@ -1 +0,0 @@ -{"documents":{"/home/ratix/Public/Csharp/ChatBot/*":"https://raw.githubusercontent.com/christiandonf/ChatBot/8254633a3c909097c255cec1343026675828c70c/*"}} \ No newline at end of file diff --git a/ChatBot/obj/Debug/net9.0/apphost b/ChatBot/obj/Debug/net9.0/apphost deleted file mode 100755 index 999bafc..0000000 Binary files a/ChatBot/obj/Debug/net9.0/apphost and /dev/null differ diff --git a/ChatBot/obj/project.nuget.cache b/ChatBot/obj/project.nuget.cache deleted file mode 100644 index 2ef421b..0000000 --- a/ChatBot/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "FAFvucqaMvk=", - "success": true, - "projectFilePath": "/home/ratix/Public/Csharp/ChatBot/ChatBot/ChatBot.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..5c56d38 --- /dev/null +++ b/Program.cs @@ -0,0 +1,102 @@ +Dictionary dialogs = new Dictionary(){ + {"pedido", "Qual é o problema com o pedido?"}, + {"atraso", "Certo, o pedido está em atraso...\nHá alguma ocorrência de atraso com esse número de pedido?"}, + {"falta", "Hum... houve falta nesse pedido. Certo, esse produto foi faturado na nota fiscal?"}, + {"resposta atraso sim", "Verifique as tarefas desta ocorrência e veja se alguma delas está dentro do prazo ou se estão todas encerradas. Se estiverem, encaminhe o caso para o suporte e aguarde a resposta."}, + {"resposta atraso nao", "Verifique com o cliente se ele ainda deseja receber o pedido.\nSe sim, abra uma ocorrência de atraso na entrega, descrevendo que o cliente deseja receber o pedido. Informe o SLA e o número de protocolo ao cliente.\nTabulação \nPrmeira categoria:Transporte \nSegunda categoria:Atraso na entrega \nMotivo:Pedido não entregue"}, + {"resposta falta sim", "Abra uma ocorrência de falta de produto:\nCategoria: Pós-compra\nSubcategoria: Falta\nMotivo: Produto faturado."}, + {"resposta falta nao", "Então o produto não consta na nota fiscal? Ou ele foi cortado?"}, + {"resposta nao consta", "Se o produto não consta na nota fiscal, então ele não foi pedido. Não é possível abrir uma ocorrência de falta de algo que não foi comprado."}, + {"resposta cortado", "Certo. Abra uma ocorrência de falta de produto:\nCategoria: Pós-compra\nSubcategoria: Falta\nMotivo: Produto não faturado."}, + {"Cadastro", "Cliente está com problema no cadastro? Qual a mensagem de erro?"}, + {"Cadastro, CPF já cadastrado", "Quando ocorre esse erro Você tem quem reprocessar no GPP \nCaso não apareceça em 5 minutos \nPrencha esse formulário \nMatricula: \nCPF: \n Nome Completo: \nData de nascimento: \n Cep: \nEndereço completo: \nE-mail: \nTelefone de contato:"}, + {"help", "Voce pode me perguntar sobre Pedidos, sobre o que fazer quando tem Atraso, se esta em Falta ou ate mesmo sobre o cadastro do cliente, caso deseje finalizar nossa conversa digite 'sair' para encerrar."} +}; +Dictionary otherDialogs = new Dictionary(){ + {"erro", "Desculpe, não entendi. Pode reformular?"}, + {"farewells", "Até mais! Volte sempre que precisar. 😊"}, + {"welcome", "Olá! Meu nome é Rey. Com o que o cliente está tendo problema?"} +}; +void ConsoleResponse(string texto) +{ + Console.WriteLine("ChatBot: " + texto); +} +void ChatBot() +{ + ConsoleResponse(otherDialogs["welcome"]); + string lastResponse = string.Empty; + string response = string.Empty; + while (true) + { + Console.Write("Você: "); + string userInput = Console.ReadLine()!; + if (userInput.Contains("sair", StringComparison.OrdinalIgnoreCase)) + { + ConsoleResponse(otherDialogs["farewells"]); + break; + } + else if (lastResponse == dialogs["atraso"]) + { + if (userInput.Contains("sim", StringComparison.OrdinalIgnoreCase)) + { + response = dialogs["resposta atraso sim"]; + } + else if (userInput.Contains("nao", StringComparison.OrdinalIgnoreCase)) + { + response = dialogs["resposta atraso nao"]; + } + else + { + response = otherDialogs["erro"]; + } + } + else if (lastResponse == dialogs["falta"]) + { + if (userInput.Contains("sim", StringComparison.OrdinalIgnoreCase)) + { + response = dialogs["resposta falta sim"]; + } + else if (userInput.Contains("nao", StringComparison.OrdinalIgnoreCase)) + { + response = dialogs["resposta falta nao"]; + } + else + { + response = otherDialogs["erro"]; + } + } + else if (lastResponse == dialogs["resposta falta nao"]) + { + if (userInput.Contains("sim", StringComparison.OrdinalIgnoreCase)) + { + response = dialogs["resposta nao consta"]; + } + else if (userInput.Contains("nao", StringComparison.OrdinalIgnoreCase)) + { + response = dialogs["resposta cortado"]; + } + else + { + response = otherDialogs["erro"]; + } + } + else + { + foreach (string keyword in dialogs.Keys) + { + if (userInput.Contains(keyword, StringComparison.OrdinalIgnoreCase)) + { + response = dialogs[keyword]; + break; + } + else + { + response = otherDialogs["erro"]; + } + } + } + ConsoleResponse(response); + lastResponse = response; + } +} +ChatBot(); \ No newline at end of file diff --git a/ChatBot/bin/Debug/net9.0/ChatBot.deps.json b/bin/Debug/net9.0/chatbot.deps.json similarity index 80% rename from ChatBot/bin/Debug/net9.0/ChatBot.deps.json rename to bin/Debug/net9.0/chatbot.deps.json index d6036cd..cfff464 100644 --- a/ChatBot/bin/Debug/net9.0/ChatBot.deps.json +++ b/bin/Debug/net9.0/chatbot.deps.json @@ -6,15 +6,15 @@ "compilationOptions": {}, "targets": { ".NETCoreApp,Version=v9.0": { - "ChatBot/1.0.0": { + "chatbot/1.0.0": { "runtime": { - "ChatBot.dll": {} + "chatbot.dll": {} } } } }, "libraries": { - "ChatBot/1.0.0": { + "chatbot/1.0.0": { "type": "project", "serviceable": false, "sha512": "" diff --git a/bin/Debug/net9.0/chatbot.dll b/bin/Debug/net9.0/chatbot.dll new file mode 100644 index 0000000..f94fe60 Binary files /dev/null and b/bin/Debug/net9.0/chatbot.dll differ diff --git a/bin/Debug/net9.0/chatbot.exe b/bin/Debug/net9.0/chatbot.exe new file mode 100644 index 0000000..686d0d5 Binary files /dev/null and b/bin/Debug/net9.0/chatbot.exe differ diff --git a/bin/Debug/net9.0/chatbot.pdb b/bin/Debug/net9.0/chatbot.pdb new file mode 100644 index 0000000..0078cdb Binary files /dev/null and b/bin/Debug/net9.0/chatbot.pdb differ diff --git a/ChatBot/bin/Debug/net9.0/ChatBot.runtimeconfig.json b/bin/Debug/net9.0/chatbot.runtimeconfig.json similarity index 100% rename from ChatBot/bin/Debug/net9.0/ChatBot.runtimeconfig.json rename to bin/Debug/net9.0/chatbot.runtimeconfig.json diff --git a/ChatBot/ChatBot.csproj b/chatbot.csproj similarity index 100% rename from ChatBot/ChatBot.csproj rename to chatbot.csproj diff --git a/ChatBot/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs similarity index 100% rename from ChatBot/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs rename to obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs diff --git a/obj/Debug/net9.0/apphost.exe b/obj/Debug/net9.0/apphost.exe new file mode 100644 index 0000000..686d0d5 Binary files /dev/null and b/obj/Debug/net9.0/apphost.exe differ diff --git a/ChatBot/obj/Debug/net9.0/ChatBot.AssemblyInfo.cs b/obj/Debug/net9.0/chatbot.AssemblyInfo.cs similarity index 74% rename from ChatBot/obj/Debug/net9.0/ChatBot.AssemblyInfo.cs rename to obj/Debug/net9.0/chatbot.AssemblyInfo.cs index 18cd906..4ad4223 100644 --- a/ChatBot/obj/Debug/net9.0/ChatBot.AssemblyInfo.cs +++ b/obj/Debug/net9.0/chatbot.AssemblyInfo.cs @@ -10,12 +10,12 @@ using System; using System.Reflection; -[assembly: System.Reflection.AssemblyCompanyAttribute("ChatBot")] +[assembly: System.Reflection.AssemblyCompanyAttribute("chatbot")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8254633a3c909097c255cec1343026675828c70c")] -[assembly: System.Reflection.AssemblyProductAttribute("ChatBot")] -[assembly: System.Reflection.AssemblyTitleAttribute("ChatBot")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+587920de022411f180517105321f9eb3ab97604f")] +[assembly: System.Reflection.AssemblyProductAttribute("chatbot")] +[assembly: System.Reflection.AssemblyTitleAttribute("chatbot")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] // Generated by the MSBuild WriteCodeFragment class. diff --git a/obj/Debug/net9.0/chatbot.AssemblyInfoInputs.cache b/obj/Debug/net9.0/chatbot.AssemblyInfoInputs.cache new file mode 100644 index 0000000..2889929 --- /dev/null +++ b/obj/Debug/net9.0/chatbot.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +04ca452922a17d7a29ea5e130c6be494391bdf9f4c3e3d85c05b342878296d34 diff --git a/ChatBot/obj/Debug/net9.0/ChatBot.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net9.0/chatbot.GeneratedMSBuildEditorConfig.editorconfig similarity index 83% rename from ChatBot/obj/Debug/net9.0/ChatBot.GeneratedMSBuildEditorConfig.editorconfig rename to obj/Debug/net9.0/chatbot.GeneratedMSBuildEditorConfig.editorconfig index fc63783..6dfc5ad 100644 --- a/ChatBot/obj/Debug/net9.0/ChatBot.GeneratedMSBuildEditorConfig.editorconfig +++ b/obj/Debug/net9.0/chatbot.GeneratedMSBuildEditorConfig.editorconfig @@ -7,8 +7,8 @@ build_property.InvariantGlobalization = build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = ChatBot -build_property.ProjectDir = /home/ratix/Public/Csharp/ChatBot/ChatBot/ +build_property.RootNamespace = chatbot +build_property.ProjectDir = C:\Users\jdonasch\Projetos\ChatBot\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = build_property.EffectiveAnalysisLevelStyle = 9.0 diff --git a/ChatBot/obj/Debug/net9.0/ChatBot.GlobalUsings.g.cs b/obj/Debug/net9.0/chatbot.GlobalUsings.g.cs similarity index 100% rename from ChatBot/obj/Debug/net9.0/ChatBot.GlobalUsings.g.cs rename to obj/Debug/net9.0/chatbot.GlobalUsings.g.cs diff --git a/obj/Debug/net9.0/chatbot.assets.cache b/obj/Debug/net9.0/chatbot.assets.cache new file mode 100644 index 0000000..1f4474d Binary files /dev/null and b/obj/Debug/net9.0/chatbot.assets.cache differ diff --git a/obj/Debug/net9.0/chatbot.csproj.CoreCompileInputs.cache b/obj/Debug/net9.0/chatbot.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a1ca162 --- /dev/null +++ b/obj/Debug/net9.0/chatbot.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +20f4626c0b39506a80d937a98f0c6aa7cfae4d97d0a41dcaf7f02231e690ffea diff --git a/obj/Debug/net9.0/chatbot.csproj.FileListAbsolute.txt b/obj/Debug/net9.0/chatbot.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..86fbae7 --- /dev/null +++ b/obj/Debug/net9.0/chatbot.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +C:\Users\jdonasch\Projetos\ChatBot\bin\Debug\net9.0\chatbot.exe +C:\Users\jdonasch\Projetos\ChatBot\bin\Debug\net9.0\chatbot.deps.json +C:\Users\jdonasch\Projetos\ChatBot\bin\Debug\net9.0\chatbot.runtimeconfig.json +C:\Users\jdonasch\Projetos\ChatBot\bin\Debug\net9.0\chatbot.dll +C:\Users\jdonasch\Projetos\ChatBot\bin\Debug\net9.0\chatbot.pdb +C:\Users\jdonasch\Projetos\ChatBot\obj\Debug\net9.0\chatbot.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\jdonasch\Projetos\ChatBot\obj\Debug\net9.0\chatbot.AssemblyInfoInputs.cache +C:\Users\jdonasch\Projetos\ChatBot\obj\Debug\net9.0\chatbot.AssemblyInfo.cs +C:\Users\jdonasch\Projetos\ChatBot\obj\Debug\net9.0\chatbot.csproj.CoreCompileInputs.cache +C:\Users\jdonasch\Projetos\ChatBot\obj\Debug\net9.0\chatbot.sourcelink.json +C:\Users\jdonasch\Projetos\ChatBot\obj\Debug\net9.0\chatbot.dll +C:\Users\jdonasch\Projetos\ChatBot\obj\Debug\net9.0\refint\chatbot.dll +C:\Users\jdonasch\Projetos\ChatBot\obj\Debug\net9.0\chatbot.pdb +C:\Users\jdonasch\Projetos\ChatBot\obj\Debug\net9.0\chatbot.genruntimeconfig.cache +C:\Users\jdonasch\Projetos\ChatBot\obj\Debug\net9.0\ref\chatbot.dll diff --git a/obj/Debug/net9.0/chatbot.dll b/obj/Debug/net9.0/chatbot.dll new file mode 100644 index 0000000..f94fe60 Binary files /dev/null and b/obj/Debug/net9.0/chatbot.dll differ diff --git a/obj/Debug/net9.0/chatbot.genruntimeconfig.cache b/obj/Debug/net9.0/chatbot.genruntimeconfig.cache new file mode 100644 index 0000000..3e28003 --- /dev/null +++ b/obj/Debug/net9.0/chatbot.genruntimeconfig.cache @@ -0,0 +1 @@ +3afa54f03284d1b95c641f79d2797b161dd20beaf4d8928bfc6c64af1fda893f diff --git a/obj/Debug/net9.0/chatbot.pdb b/obj/Debug/net9.0/chatbot.pdb new file mode 100644 index 0000000..0078cdb Binary files /dev/null and b/obj/Debug/net9.0/chatbot.pdb differ diff --git a/obj/Debug/net9.0/chatbot.sourcelink.json b/obj/Debug/net9.0/chatbot.sourcelink.json new file mode 100644 index 0000000..b0cd15a --- /dev/null +++ b/obj/Debug/net9.0/chatbot.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Users\\jdonasch\\Projetos\\ChatBot\\*":"https://raw.githubusercontent.com/christiandonf/ChatBot/587920de022411f180517105321f9eb3ab97604f/*"}} \ No newline at end of file diff --git a/ChatBot/obj/Debug/net9.0/refint/ChatBot.dll b/obj/Debug/net9.0/ref/chatbot.dll similarity index 75% rename from ChatBot/obj/Debug/net9.0/refint/ChatBot.dll rename to obj/Debug/net9.0/ref/chatbot.dll index 4686a6d..8951775 100644 Binary files a/ChatBot/obj/Debug/net9.0/refint/ChatBot.dll and b/obj/Debug/net9.0/ref/chatbot.dll differ diff --git a/ChatBot/obj/Debug/net9.0/ref/ChatBot.dll b/obj/Debug/net9.0/refint/chatbot.dll similarity index 75% rename from ChatBot/obj/Debug/net9.0/ref/ChatBot.dll rename to obj/Debug/net9.0/refint/chatbot.dll index 4686a6d..8951775 100644 Binary files a/ChatBot/obj/Debug/net9.0/ref/ChatBot.dll and b/obj/Debug/net9.0/refint/chatbot.dll differ diff --git a/ChatBot/obj/ChatBot.csproj.nuget.dgspec.json b/obj/chatbot.csproj.nuget.dgspec.json similarity index 63% rename from ChatBot/obj/ChatBot.csproj.nuget.dgspec.json rename to obj/chatbot.csproj.nuget.dgspec.json index ce0f596..9675483 100644 --- a/ChatBot/obj/ChatBot.csproj.nuget.dgspec.json +++ b/obj/chatbot.csproj.nuget.dgspec.json @@ -1,26 +1,25 @@ { "format": 1, "restore": { - "/home/ratix/Public/Csharp/ChatBot/ChatBot/ChatBot.csproj": {} + "C:\\Users\\jdonasch\\Projetos\\ChatBot\\chatbot.csproj": {} }, "projects": { - "/home/ratix/Public/Csharp/ChatBot/ChatBot/ChatBot.csproj": { + "C:\\Users\\jdonasch\\Projetos\\ChatBot\\chatbot.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "/home/ratix/Public/Csharp/ChatBot/ChatBot/ChatBot.csproj", - "projectName": "ChatBot", - "projectPath": "/home/ratix/Public/Csharp/ChatBot/ChatBot/ChatBot.csproj", - "packagesPath": "/home/ratix/.nuget/packages/", - "outputPath": "/home/ratix/Public/Csharp/ChatBot/ChatBot/obj/", + "projectUniqueName": "C:\\Users\\jdonasch\\Projetos\\ChatBot\\chatbot.csproj", + "projectName": "chatbot", + "projectPath": "C:\\Users\\jdonasch\\Projetos\\ChatBot\\chatbot.csproj", + "packagesPath": "C:\\Users\\jdonasch\\.nuget\\packages\\", + "outputPath": "C:\\Users\\jdonasch\\Projetos\\ChatBot\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "/home/ratix/.nuget/NuGet/NuGet.Config" + "C:\\Users\\jdonasch\\AppData\\Roaming\\NuGet\\NuGet.Config" ], "originalTargetFrameworks": [ "net9.0" ], "sources": { - "/usr/lib/dotnet/library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -39,7 +38,7 @@ "auditLevel": "low", "auditMode": "direct" }, - "SdkAnalysisLevel": "9.0.100" + "SdkAnalysisLevel": "9.0.200" }, "frameworks": { "net9.0": { @@ -60,7 +59,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/9.0.103/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.200/PortableRuntimeIdentifierGraph.json" } } } diff --git a/ChatBot/obj/ChatBot.csproj.nuget.g.props b/obj/chatbot.csproj.nuget.g.props similarity index 81% rename from ChatBot/obj/ChatBot.csproj.nuget.g.props rename to obj/chatbot.csproj.nuget.g.props index 307a6bc..72d008c 100644 --- a/ChatBot/obj/ChatBot.csproj.nuget.g.props +++ b/obj/chatbot.csproj.nuget.g.props @@ -4,12 +4,12 @@ True NuGet $(MSBuildThisFileDirectory)project.assets.json - /home/ratix/.nuget/packages/ - /home/ratix/.nuget/packages/ + $(UserProfile)\.nuget\packages\ + C:\Users\jdonasch\.nuget\packages\ PackageReference - 6.12.2 + 6.13.0 - + \ No newline at end of file diff --git a/ChatBot/obj/ChatBot.csproj.nuget.g.targets b/obj/chatbot.csproj.nuget.g.targets similarity index 100% rename from ChatBot/obj/ChatBot.csproj.nuget.g.targets rename to obj/chatbot.csproj.nuget.g.targets diff --git a/ChatBot/obj/project.assets.json b/obj/project.assets.json similarity index 67% rename from ChatBot/obj/project.assets.json rename to obj/project.assets.json index 75d160a..059c083 100644 --- a/ChatBot/obj/project.assets.json +++ b/obj/project.assets.json @@ -8,25 +8,24 @@ "net9.0": [] }, "packageFolders": { - "/home/ratix/.nuget/packages/": {} + "C:\\Users\\jdonasch\\.nuget\\packages\\": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "/home/ratix/Public/Csharp/ChatBot/ChatBot/ChatBot.csproj", - "projectName": "ChatBot", - "projectPath": "/home/ratix/Public/Csharp/ChatBot/ChatBot/ChatBot.csproj", - "packagesPath": "/home/ratix/.nuget/packages/", - "outputPath": "/home/ratix/Public/Csharp/ChatBot/ChatBot/obj/", + "projectUniqueName": "C:\\Users\\jdonasch\\Projetos\\ChatBot\\chatbot.csproj", + "projectName": "chatbot", + "projectPath": "C:\\Users\\jdonasch\\Projetos\\ChatBot\\chatbot.csproj", + "packagesPath": "C:\\Users\\jdonasch\\.nuget\\packages\\", + "outputPath": "C:\\Users\\jdonasch\\Projetos\\ChatBot\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ - "/home/ratix/.nuget/NuGet/NuGet.Config" + "C:\\Users\\jdonasch\\AppData\\Roaming\\NuGet\\NuGet.Config" ], "originalTargetFrameworks": [ "net9.0" ], "sources": { - "/usr/lib/dotnet/library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -45,7 +44,7 @@ "auditLevel": "low", "auditMode": "direct" }, - "SdkAnalysisLevel": "9.0.100" + "SdkAnalysisLevel": "9.0.200" }, "frameworks": { "net9.0": { @@ -66,7 +65,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/9.0.103/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.200/PortableRuntimeIdentifierGraph.json" } } } diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..edc3412 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "OPPTuu0p1CI=", + "success": true, + "projectFilePath": "C:\\Users\\jdonasch\\Projetos\\ChatBot\\chatbot.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file