commit cedcb9e933910a8ed3ad103fef36f7ff70779a1f Author: Giuliano Paschoalino Date: Tue Jul 15 13:38:02 2025 -0300 Import inicial: migração de arquivos da rede diff --git a/.vs/Controle_Front/DesignTimeBuild/.dtbcache.v2 b/.vs/Controle_Front/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..a142e1a Binary files /dev/null and b/.vs/Controle_Front/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/Controle_Front/project-colors.json b/.vs/Controle_Front/project-colors.json new file mode 100644 index 0000000..6dada87 --- /dev/null +++ b/.vs/Controle_Front/project-colors.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "ProjectMap": { + "c4de15e1-b156-422d-b6b3-212ac1a27c5f": { + "ProjectGuid": "c4de15e1-b156-422d-b6b3-212ac1a27c5f", + "DisplayName": "Controle_Front", + "ColorIndex": 0 + } + }, + "NextColorIndex": 1 +} \ No newline at end of file diff --git a/.vs/Controle_Front/v17/.futdcache.v1 b/.vs/Controle_Front/v17/.futdcache.v1 new file mode 100644 index 0000000..05a9c8a Binary files /dev/null and b/.vs/Controle_Front/v17/.futdcache.v1 differ diff --git a/.vs/Controle_Front/v17/.suo b/.vs/Controle_Front/v17/.suo new file mode 100644 index 0000000..4abcdab Binary files /dev/null and b/.vs/Controle_Front/v17/.suo differ diff --git a/Controle_Front.csproj b/Controle_Front.csproj new file mode 100644 index 0000000..538711d --- /dev/null +++ b/Controle_Front.csproj @@ -0,0 +1,15 @@ + + + + Exe + net6.0-windows + enable + enable + x86 + + + + + + + diff --git a/Controle_Front.sln b/Controle_Front.sln new file mode 100644 index 0000000..b9ebcdb --- /dev/null +++ b/Controle_Front.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.32014.148 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Controle_Front", "Controle_Front.csproj", "{C4DE15E1-B156-422D-B6B3-212AC1A27C5F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C4DE15E1-B156-422D-B6B3-212AC1A27C5F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C4DE15E1-B156-422D-B6B3-212AC1A27C5F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C4DE15E1-B156-422D-B6B3-212AC1A27C5F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C4DE15E1-B156-422D-B6B3-212AC1A27C5F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {CF9BDB34-B339-4D60-B3F8-5FF78B05C1E1} + EndGlobalSection +EndGlobal diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..078bb9b --- /dev/null +++ b/Program.cs @@ -0,0 +1,139 @@ +// See https://aka.ms/new-console-template for more information +/*using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Data.SqlClient; +using System.Threading.Tasks;*/ +using System; +using System.Data.OleDb; +using System.Diagnostics; + +internal class Download_BD +{ + static void Main() + { + string nome_entrada; + string strQRY; + + nome_entrada = "aaa"; + + Acessar_BD(); + + Console.WriteLine("Programa encerrado."); + return; + Environment.Exit(0); + } + static void Acessar_BD() + { + int cont_result; + string prt_str; + int n_cli; + bool teste_par; + string teste_cli = ""; + + List lt_cli = new List(); + List lt_codcli = new List(); + + + + string com_usuario; + string com_categ; + string com_assunto; + string com_texto; + string com_cli; + Double dat_com; + Boolean finaliza; + Double com_codcli; + var usuario = new Dictionary(); + var categ = new Dictionary(); + + //loop para adicionar usuarios a partir de nossa planilha de cadastro + OleDbConnection conUSU = new("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=X:/Middle/Informativo Setorial/Modelo Word/BD1_outros.accdb;Jet OLEDB:Database Password=gds21"); + conUSU.Open(); + OleDbCommand tbUsu = new("SELECT * FROM Gabarito_contatos", conUSU); + OleDbDataReader reUSU = tbUsu.ExecuteReader(); + + while (reUSU.Read()) + { + usuario[reUSU["Cod_maquina"].ToString()] = reUSU["Nome_usuario"].ToString(); + } + conUSU.Close(); + + com_usuario = usuario[Environment.MachineName.ToString()]; + + //categ[0] = "VERIFICAR HISTORICO"; + categ[1] = "CONTRATACAO"; + categ[2] = "CURTO PRAZO"; + categ[3] = "INADIMPLENCIA"; + categ[4] = "MIGRACAO"; + categ[5] = "REDUCAO DE CUSTOS/DISTRIBUIDORAS"; + categ[6] = "RELACIONAMENTO (Tel./Meet)"; + categ[7] = "REUNIÃO PRESENCIAL"; + categ[8] = "OUTROS"; + + com_cli = lt_cli[n_cli - 1]; + com_codcli = lt_codcli[n_cli - 1]; + + finaliza = false; + while (!finaliza) + { + Console.WriteLine("\nCliente {0} selecionado. Escolha a categoria do contato:", com_cli); + foreach (KeyValuePair item in categ) + { + Console.WriteLine("{0,-4} | {1,-15}", item.Key, item.Value); + cont_result++; + } + + teste_par = Int32.TryParse(Console.ReadKey(true).KeyChar.ToString(), out n_cli); + while (!teste_par || n_cli > categ.Count) + { + Console.WriteLine("Numero invalido"); + teste_par = Int32.TryParse(Console.ReadKey(true).KeyChar.ToString(), out n_cli); + } + com_categ = categ[n_cli]; + + Console.WriteLine("\nCategoria '{0}' selecionada. \nDigite o assunto do contato e pressione ENTER:", com_categ); + com_assunto = Console.ReadLine(); + + Console.WriteLine("\nDigite o texto do contato e pressione ENTER:"); + com_texto = Console.ReadLine(); + + dat_com = DateTime.Today.ToOADate(); + + Console.WriteLine("\n{0,-10} | {1,-15}", "Usuario", com_usuario); + Console.WriteLine("{0,-10} | {1,-15}", "Data", DateOnly.FromDateTime(DateTime.FromOADate(dat_com))); + Console.WriteLine("{0,-10} | {1,-15}", "Cliente", com_cli); + Console.WriteLine("{0,-10} | {1,-15}", "Categoria", com_categ); + Console.WriteLine("{0,-10} | {1,-15}", "Assunto", com_assunto); + Console.WriteLine("{0,-10} | {1,-15}", "Texto", com_texto); + + Console.WriteLine("\nDeseja finalizar [S/n] ? Digite n para repetir os passos após a escolha do cliente.\n"); + if (Console.ReadKey(true).KeyChar.ToString().ToUpper() == "S") + { + finaliza = true; + string aux_SQL; + aux_SQL = "INSERT INTO Contatos (Data, usuario, Cod_Smart_cliente, categoria, assunto, texto)"; + aux_SQL += " VALUES (" + dat_com + ",\"" + com_usuario + "\"," + com_codcli + ",\"" + com_categ + "\",\"" + com_assunto + "\",\"" + com_texto + "\""; + aux_SQL += ")"; + conn.Open(); + OleDbCommand tbContat = new(aux_SQL, conn); + tbContat.ExecuteNonQuery(); + conn.Close(); + Console.WriteLine("\nCONTATO CADASTRADO COM SUCESSO\n"); + Console.WriteLine("\n-------------------------------------------------------------------------------------------------"); + Console.WriteLine("Reinicio"); + Console.WriteLine("-------------------------------------------------------------------------------------------------\n"); + } + else + { + Console.WriteLine("\nDica: utilizar as setas para cima e baixo caso precise preencher novamente.\n"); + } + } + } + return; + } +} diff --git a/Properties/PublishProfiles/FolderProfile.pubxml b/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 0000000..4858a26 --- /dev/null +++ b/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,17 @@ + + + + + Release + Any CPU + X:\Back\Carteira x.x + FileSystem + net6.0-windows + win-x86 + true + True + False + + \ No newline at end of file diff --git a/obj/Controle_Front.csproj.nuget.dgspec.json b/obj/Controle_Front.csproj.nuget.dgspec.json new file mode 100644 index 0000000..2097de5 --- /dev/null +++ b/obj/Controle_Front.csproj.nuget.dgspec.json @@ -0,0 +1,72 @@ +{ + "format": 1, + "restore": { + "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\Controle_Front.csproj": {} + }, + "projects": { + "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\Controle_Front.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\Controle_Front.csproj", + "projectName": "Controle_Front", + "projectPath": "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\Controle_Front.csproj", + "packagesPath": "C:\\Users\\felipe.filipak\\.nuget\\packages\\", + "outputPath": "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\felipe.filipak\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "System.Data.OleDb": { + "target": "Package", + "version": "[6.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/Controle_Front.csproj.nuget.g.props b/obj/Controle_Front.csproj.nuget.g.props new file mode 100644 index 0000000..1f519e0 --- /dev/null +++ b/obj/Controle_Front.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\felipe.filipak\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.0.1 + + + + + + \ No newline at end of file diff --git a/obj/Controle_Front.csproj.nuget.g.targets b/obj/Controle_Front.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/obj/Controle_Front.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/obj/Debug/net6.0-windows/Controle_Front.AssemblyInfo.cs b/obj/Debug/net6.0-windows/Controle_Front.AssemblyInfo.cs new file mode 100644 index 0000000..8d101c1 --- /dev/null +++ b/obj/Debug/net6.0-windows/Controle_Front.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Controle_Front")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Controle_Front")] +[assembly: System.Reflection.AssemblyTitleAttribute("Controle_Front")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net6.0-windows/Controle_Front.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/Controle_Front.AssemblyInfoInputs.cache new file mode 100644 index 0000000..0ebb527 --- /dev/null +++ b/obj/Debug/net6.0-windows/Controle_Front.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +e5222192ce4da03af232f8facb97f362e4f88dca diff --git a/obj/Debug/net6.0-windows/Controle_Front.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/Controle_Front.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0ae062c --- /dev/null +++ b/obj/Debug/net6.0-windows/Controle_Front.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Controle_Front +build_property.ProjectDir = X:\Back\Carteira x.x\Codigo\Controle_Front\ diff --git a/obj/Debug/net6.0-windows/Controle_Front.GlobalUsings.g.cs b/obj/Debug/net6.0-windows/Controle_Front.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net6.0-windows/Controle_Front.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/obj/Debug/net6.0-windows/Controle_Front.assets.cache b/obj/Debug/net6.0-windows/Controle_Front.assets.cache new file mode 100644 index 0000000..d0cd97c Binary files /dev/null and b/obj/Debug/net6.0-windows/Controle_Front.assets.cache differ diff --git a/obj/Debug/net6.0-windows/Controle_Front.csproj.AssemblyReference.cache b/obj/Debug/net6.0-windows/Controle_Front.csproj.AssemblyReference.cache new file mode 100644 index 0000000..227c9eb Binary files /dev/null and b/obj/Debug/net6.0-windows/Controle_Front.csproj.AssemblyReference.cache differ diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..8347ab7 --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,521 @@ +{ + "version": 3, + "targets": { + "net6.0-windows7.0": { + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Data.OleDb/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Data.OleDb.dll": {} + }, + "runtime": { + "lib/net6.0/System.Data.OleDb.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + } + } + }, + "libraries": { + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", + "type": "package", + "path": "system.configuration.configurationmanager/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.OleDb/6.0.0": { + "sha512": "LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", + "type": "package", + "path": "system.data.oledb/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Data.OleDb.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Data.OleDb.dll", + "lib/net461/System.Data.OleDb.xml", + "lib/net6.0/System.Data.OleDb.dll", + "lib/net6.0/System.Data.OleDb.xml", + "lib/netstandard2.0/System.Data.OleDb.dll", + "lib/netstandard2.0/System.Data.OleDb.xml", + "runtimes/win/lib/net461/System.Data.OleDb.dll", + "runtimes/win/lib/net461/System.Data.OleDb.xml", + "runtimes/win/lib/net6.0/System.Data.OleDb.dll", + "runtimes/win/lib/net6.0/System.Data.OleDb.xml", + "runtimes/win/lib/netstandard2.0/System.Data.OleDb.dll", + "runtimes/win/lib/netstandard2.0/System.Data.OleDb.xml", + "system.data.oledb.6.0.0.nupkg.sha512", + "system.data.oledb.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "sha512": "gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", + "type": "package", + "path": "system.diagnostics.performancecounter/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.PerformanceCounter.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.6.0.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net6.0-windows7.0": [ + "System.Data.OleDb >= 6.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\felipe.filipak\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\Controle_Front.csproj", + "projectName": "Controle_Front", + "projectPath": "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\Controle_Front.csproj", + "packagesPath": "C:\\Users\\felipe.filipak\\.nuget\\packages\\", + "outputPath": "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\felipe.filipak\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "System.Data.OleDb": { + "target": "Package", + "version": "[6.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..c23d289 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,18 @@ +{ + "version": 2, + "dgSpecHash": "6A0SduyN0LLUvElYJQhD9gFONxxe93lM+ju7031BeWS9KBmUgXl9uCgOsrVhbBWn2xf+Oj6BrM632e4lFPMgHQ==", + "success": true, + "projectFilePath": "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\Controle_Front.csproj", + "expectedPackageFiles": [ + "C:\\Users\\felipe.filipak\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\felipe.filipak\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512", + "C:\\Users\\felipe.filipak\\.nuget\\packages\\system.data.oledb\\6.0.0\\system.data.oledb.6.0.0.nupkg.sha512", + "C:\\Users\\felipe.filipak\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.0\\system.diagnostics.performancecounter.6.0.0.nupkg.sha512", + "C:\\Users\\felipe.filipak\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\felipe.filipak\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\felipe.filipak\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\felipe.filipak\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\felipe.filipak\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file