Correção do Projeto e melhoria no código
This commit is contained in:
+10
-8
@@ -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
|
||||
|
||||
@@ -1,128 +0,0 @@
|
||||
using System.Globalization;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
using Microsoft.VisualBasic.FileIO;
|
||||
Dictionary<string, string> dialogs = new Dictionary<string, string>();
|
||||
Dictionary<string, string> otherDialogs = new Dictionary<string, string>();
|
||||
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();
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
||||
6c88acb97c99d251f97f5268b4ecd33a697eb097cfb7da048cdf50f5a7df2d8e
|
||||
Binary file not shown.
@@ -1 +0,0 @@
|
||||
a2c526e10e0d5e3da96149988541bfb0b5af5624427791be8fcfef69b635753f
|
||||
@@ -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
|
||||
Binary file not shown.
@@ -1 +0,0 @@
|
||||
c54a66318e6cd0a9eaad536a582637c78466007c1f353db95471ac73a02e280b
|
||||
Binary file not shown.
@@ -1 +0,0 @@
|
||||
{"documents":{"/home/ratix/Public/Csharp/ChatBot/*":"https://raw.githubusercontent.com/christiandonf/ChatBot/8254633a3c909097c255cec1343026675828c70c/*"}}
|
||||
Binary file not shown.
@@ -1,8 +0,0 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "FAFvucqaMvk=",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/ratix/Public/Csharp/ChatBot/ChatBot/ChatBot.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
||||
+102
@@ -0,0 +1,102 @@
|
||||
Dictionary<string, string> dialogs = new Dictionary<string, string>(){
|
||||
{"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<string, string> otherDialogs = new Dictionary<string, string>(){
|
||||
{"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();
|
||||
@@ -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": ""
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+4
-4
@@ -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.
|
||||
@@ -0,0 +1 @@
|
||||
04ca452922a17d7a29ea5e130c6be494391bdf9f4c3e3d85c05b342878296d34
|
||||
+2
-2
@@ -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
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
20f4626c0b39506a80d937a98f0c6aa7cfae4d97d0a41dcaf7f02231e690ffea
|
||||
@@ -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
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
3afa54f03284d1b95c641f79d2797b161dd20beaf4d8928bfc6c64af1fda893f
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
{"documents":{"C:\\Users\\jdonasch\\Projetos\\ChatBot\\*":"https://raw.githubusercontent.com/christiandonf/ChatBot/587920de022411f180517105321f9eb3ab97604f/*"}}
|
||||
Binary file not shown.
Binary file not shown.
+10
-11
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4,12 +4,12 @@
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/ratix/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/ratix/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\jdonasch\.nuget\packages\</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.13.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/ratix/.nuget/packages/" />
|
||||
<SourceRoot Include="C:\Users\jdonasch\.nuget\packages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "OPPTuu0p1CI=",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\jdonasch\\Projetos\\ChatBot\\chatbot.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user