commit 5f5389ec4245f88751d4bb6f50438fd9ab47e665 Author: Giuliano Paschoalino Date: Tue Jul 15 13:58:39 2025 -0300 Import inicial: migração de arquivos da rede diff --git a/.vs/Programar_download/DesignTimeBuild/.dtbcache.v2 b/.vs/Programar_download/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..eb57637 Binary files /dev/null and b/.vs/Programar_download/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/Programar_download/project-colors.json b/.vs/Programar_download/project-colors.json new file mode 100644 index 0000000..2e9d078 --- /dev/null +++ b/.vs/Programar_download/project-colors.json @@ -0,0 +1,16 @@ +{ + "Version": 1, + "ProjectMap": { + "50b31702-a026-4c87-ad17-08695cbeb032": { + "ProjectGuid": "50b31702-a026-4c87-ad17-08695cbeb032", + "DisplayName": "Programar_download", + "ColorIndex": 0 + }, + "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": { + "ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3", + "DisplayName": "Miscellaneous Files", + "ColorIndex": -1 + } + }, + "NextColorIndex": 1 +} \ No newline at end of file diff --git a/.vs/Programar_download/v17/.futdcache.v1 b/.vs/Programar_download/v17/.futdcache.v1 new file mode 100644 index 0000000..13981de Binary files /dev/null and b/.vs/Programar_download/v17/.futdcache.v1 differ diff --git a/.vs/Programar_download/v17/.suo b/.vs/Programar_download/v17/.suo new file mode 100644 index 0000000..a6c431e Binary files /dev/null and b/.vs/Programar_download/v17/.suo differ diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..10d5bd7 --- /dev/null +++ b/Program.cs @@ -0,0 +1,119 @@ +// See https://aka.ms/new-console-template for more information + +using Microsoft.VisualBasic.FileIO; +using System; +using System.Data.OleDb; +using System.Diagnostics; + +class Programar_download +{ + static void Main() + { + //Ler_csv(@"X:\Back\Carteira x.x\Codigo\Cadastro_envios.csv"); + criar_arq_med("ESACLNENTR101 (L)", new DateTime(2021, 12, 01), new DateTime(2021, 12, 31)); + Console.WriteLine("Programa encerrado."); + return; + Environment.Exit(0); + } + + static void criar_arq_med(string Cod_SCDE, DateTime data_ini, DateTime data_fim) + { + string strSQL; + string tex_arq_med; + string cam_saida; + + cam_saida = @"X:\Back\Carteira x.x\Codigo\"; + cam_saida += Cod_SCDE; //+ "_" + data_ini + "_" + data_fim; + //cam_saida += ".csv"; + cam_saida += ".xlsx"; + tex_arq_med = "Codigo;Data;Hora;Ativa_Consumo;Ativa_Geracao;Reativa_Consumo;Reativa_Geracao;Qualidade;Origem;Mes_ref" + "\n"; + + strSQL = "SELECT * ";//WHERE Cliente ALike " + "\"" + "%" + nome_entrada + "%" + "\""; + strSQL += " FROM SCDE_medicoes"; + strSQL += " WHERE Cod_SCDE = " + "\"" + Cod_SCDE + "\""; + strSQL += " AND Data >= " + data_ini.ToOADate(); + strSQL += " AND Data <= " + data_fim.ToOADate(); + strSQL += " ORDER BY Cod_SCDE, Data, Hora"; + + OleDbConnection conn = new("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=X:/Middle/Informativo Setorial/Modelo Word/BD_SCDE.accdb;Jet OLEDB:Database Password=gds21"); + conn.Open(); + OleDbCommand tbEmpresas = new(strSQL, conn); + OleDbDataReader reader = tbEmpresas.ExecuteReader(); + + while (reader.Read()) + { + tex_arq_med += reader["Cod_SCDE"].ToString() + ";"; + tex_arq_med += reader["Data"].ToString() + ";"; + tex_arq_med += reader["Hora"].ToString() + ";"; + tex_arq_med += reader["Ativa_C_kWh"] + ";"; + tex_arq_med += reader["Ativa_G_kWh"] + ";"; + tex_arq_med += reader["Reativa_C_kWh"] + ";"; + tex_arq_med += reader["Reativa_G_kWh"] + ";"; + tex_arq_med += reader["Qualidade"].ToString() + ";"; + tex_arq_med += reader["Origem"].ToString() + ";"; + tex_arq_med += reader["Mes_ref"].ToString() + ";"; + tex_arq_med += "\n"; + } + conn.Close(); + File.WriteAllText(cam_saida, tex_arq_med); + + } + + static void Ler_csv(string caminho) + { + string dia_sem; + string texto_saida = ""; + string mes; + int dia_int; + int hoje_dia; + string[] fields; + + using (TextFieldParser parser = new TextFieldParser(caminho)) + { + parser.TextFieldType = FieldType.Delimited; + parser.SetDelimiters(";"); + while (!parser.EndOfData) + { + fields = parser.ReadFields(); + switch (fields[1]) + { + case "d": + Console.WriteLine(String.Format("Cliente {0} tera envio diario", fields[0])); + fields[3] = DateTime.Now.ToString(); + break; + case "m": + Console.WriteLine(String.Format("Cliente {0} tera envio mensal", fields[0])); + break; + default: + if (fields[1].Substring(0, 1) == "s") + { + dia_sem = fields[1].Substring(fields[1].Length - 1, 1); + Int32.TryParse(dia_sem, out dia_int); + hoje_dia = ((int)DateTime.Today.DayOfWeek == 0) ? 7 : (int)DateTime.Today.DayOfWeek; + mes = DateTime.Today.ToString("yyMM"); + Console.WriteLine(String.Format("Cliente {0} tera envio semanal no dia {1}, hoje e dia {2} do mes {3}", fields[0], dia_sem, hoje_dia, mes)); + } + break; + } + foreach (string field in fields) + { + texto_saida += field + ";"; + } + texto_saida += "\n"; + } + } + File.WriteAllText(caminho, texto_saida); + return; + } +} + +/* + Frequencias de envio: + d - diario + sx - semanal no dia x + m - mensal +Tipo de envio + h - horario + d - diario + 5 - 5 minutos + */ \ No newline at end of file diff --git a/Programar_download.csproj b/Programar_download.csproj new file mode 100644 index 0000000..e3297da --- /dev/null +++ b/Programar_download.csproj @@ -0,0 +1,34 @@ + + + + WinExe + net6.0-windows + enable + enable + + x86 + + + + + tlbimp + 0 + 6 + 000204ef-0000-0000-c000-000000000046 + + + tlbimp + 3 + 5 + 0002e157-0000-0000-c000-000000000046 + 0 + false + true + + + + + + + + diff --git a/Programar_download.sln b/Programar_download.sln new file mode 100644 index 0000000..4fd14f7 --- /dev/null +++ b/Programar_download.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}") = "Programar_download", "Programar_download.csproj", "{50B31702-A026-4C87-AD17-08695CBEB032}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {50B31702-A026-4C87-AD17-08695CBEB032}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {50B31702-A026-4C87-AD17-08695CBEB032}.Debug|Any CPU.Build.0 = Debug|Any CPU + {50B31702-A026-4C87-AD17-08695CBEB032}.Release|Any CPU.ActiveCfg = Release|Any CPU + {50B31702-A026-4C87-AD17-08695CBEB032}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {EDB71D5B-F293-4E24-848C-3F8F3DA9E72D} + EndGlobalSection +EndGlobal diff --git a/bin/Debug/net6.0-windows/Microsoft.Win32.SystemEvents.dll b/bin/Debug/net6.0-windows/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..3ab5850 Binary files /dev/null and b/bin/Debug/net6.0-windows/Microsoft.Win32.SystemEvents.dll differ diff --git a/bin/Debug/net6.0-windows/Programar_download.deps.json b/bin/Debug/net6.0-windows/Programar_download.deps.json new file mode 100644 index 0000000..d962513 --- /dev/null +++ b/bin/Debug/net6.0-windows/Programar_download.deps.json @@ -0,0 +1,229 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Programar_download/1.0.0": { + "dependencies": { + "System.Data.OleDb": "6.0.0" + }, + "runtime": { + "Programar_download.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Data.OleDb/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Data.OleDb.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + } + } + }, + "libraries": { + "Programar_download/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", + "path": "system.configuration.configurationmanager/6.0.0", + "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" + }, + "System.Data.OleDb/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", + "path": "system.data.oledb/6.0.0", + "hashPath": "system.data.oledb.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", + "path": "system.diagnostics.performancecounter/6.0.0", + "hashPath": "system.diagnostics.performancecounter.6.0.0.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net6.0-windows/Programar_download.dll b/bin/Debug/net6.0-windows/Programar_download.dll new file mode 100644 index 0000000..0c603cc Binary files /dev/null and b/bin/Debug/net6.0-windows/Programar_download.dll differ diff --git a/bin/Debug/net6.0-windows/Programar_download.exe b/bin/Debug/net6.0-windows/Programar_download.exe new file mode 100644 index 0000000..858d27a Binary files /dev/null and b/bin/Debug/net6.0-windows/Programar_download.exe differ diff --git a/bin/Debug/net6.0-windows/Programar_download.pdb b/bin/Debug/net6.0-windows/Programar_download.pdb new file mode 100644 index 0000000..a361d49 Binary files /dev/null and b/bin/Debug/net6.0-windows/Programar_download.pdb differ diff --git a/bin/Debug/net6.0-windows/Programar_download.runtimeconfig.json b/bin/Debug/net6.0-windows/Programar_download.runtimeconfig.json new file mode 100644 index 0000000..4986d16 --- /dev/null +++ b/bin/Debug/net6.0-windows/Programar_download.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net6.0-windows/System.Configuration.ConfigurationManager.dll b/bin/Debug/net6.0-windows/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..d67c8a8 Binary files /dev/null and b/bin/Debug/net6.0-windows/System.Configuration.ConfigurationManager.dll differ diff --git a/bin/Debug/net6.0-windows/System.Data.OleDb.dll b/bin/Debug/net6.0-windows/System.Data.OleDb.dll new file mode 100644 index 0000000..f7840cd Binary files /dev/null and b/bin/Debug/net6.0-windows/System.Data.OleDb.dll differ diff --git a/bin/Debug/net6.0-windows/System.Diagnostics.PerformanceCounter.dll b/bin/Debug/net6.0-windows/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..e9092d7 Binary files /dev/null and b/bin/Debug/net6.0-windows/System.Diagnostics.PerformanceCounter.dll differ diff --git a/bin/Debug/net6.0-windows/System.Drawing.Common.dll b/bin/Debug/net6.0-windows/System.Drawing.Common.dll new file mode 100644 index 0000000..be6915e Binary files /dev/null and b/bin/Debug/net6.0-windows/System.Drawing.Common.dll differ diff --git a/bin/Debug/net6.0-windows/System.Security.Cryptography.ProtectedData.dll b/bin/Debug/net6.0-windows/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..1ba8770 Binary files /dev/null and b/bin/Debug/net6.0-windows/System.Security.Cryptography.ProtectedData.dll differ diff --git a/bin/Debug/net6.0-windows/System.Security.Permissions.dll b/bin/Debug/net6.0-windows/System.Security.Permissions.dll new file mode 100644 index 0000000..39dd4df Binary files /dev/null and b/bin/Debug/net6.0-windows/System.Security.Permissions.dll differ diff --git a/bin/Debug/net6.0-windows/System.Windows.Extensions.dll b/bin/Debug/net6.0-windows/System.Windows.Extensions.dll new file mode 100644 index 0000000..c3e8844 Binary files /dev/null and b/bin/Debug/net6.0-windows/System.Windows.Extensions.dll differ diff --git a/bin/Debug/net6.0-windows/ref/Programar_download.dll b/bin/Debug/net6.0-windows/ref/Programar_download.dll new file mode 100644 index 0000000..63d25ef Binary files /dev/null and b/bin/Debug/net6.0-windows/ref/Programar_download.dll differ diff --git a/bin/Debug/net6.0-windows/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/bin/Debug/net6.0-windows/runtimes/unix/lib/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..9e26473 Binary files /dev/null and b/bin/Debug/net6.0-windows/runtimes/unix/lib/net6.0/System.Drawing.Common.dll differ diff --git a/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..66af198 Binary files /dev/null and b/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/System.Data.OleDb.dll b/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/System.Data.OleDb.dll new file mode 100644 index 0000000..95d3e71 Binary files /dev/null and b/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/System.Data.OleDb.dll differ diff --git a/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll b/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..235a22f Binary files /dev/null and b/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..7c9e87b Binary files /dev/null and b/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/System.Drawing.Common.dll differ diff --git a/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..332dbfa Binary files /dev/null and b/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..69f0d1b Binary files /dev/null and b/bin/Debug/net6.0-windows/runtimes/win/lib/net6.0/System.Windows.Extensions.dll differ diff --git a/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll b/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..3ab5850 Binary files /dev/null and b/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/bin/Debug/net6.0/Programar_download.deps.json b/bin/Debug/net6.0/Programar_download.deps.json new file mode 100644 index 0000000..d962513 --- /dev/null +++ b/bin/Debug/net6.0/Programar_download.deps.json @@ -0,0 +1,229 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Programar_download/1.0.0": { + "dependencies": { + "System.Data.OleDb": "6.0.0" + }, + "runtime": { + "Programar_download.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Data.OleDb/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Data.OleDb.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + } + } + }, + "libraries": { + "Programar_download/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", + "path": "system.configuration.configurationmanager/6.0.0", + "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" + }, + "System.Data.OleDb/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", + "path": "system.data.oledb/6.0.0", + "hashPath": "system.data.oledb.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", + "path": "system.diagnostics.performancecounter/6.0.0", + "hashPath": "system.diagnostics.performancecounter.6.0.0.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net6.0/Programar_download.dll b/bin/Debug/net6.0/Programar_download.dll new file mode 100644 index 0000000..62d4086 Binary files /dev/null and b/bin/Debug/net6.0/Programar_download.dll differ diff --git a/bin/Debug/net6.0/Programar_download.exe b/bin/Debug/net6.0/Programar_download.exe new file mode 100644 index 0000000..068c98a Binary files /dev/null and b/bin/Debug/net6.0/Programar_download.exe differ diff --git a/bin/Debug/net6.0/Programar_download.pdb b/bin/Debug/net6.0/Programar_download.pdb new file mode 100644 index 0000000..bedf163 Binary files /dev/null and b/bin/Debug/net6.0/Programar_download.pdb differ diff --git a/bin/Debug/net6.0/Programar_download.runtimeconfig.json b/bin/Debug/net6.0/Programar_download.runtimeconfig.json new file mode 100644 index 0000000..4986d16 --- /dev/null +++ b/bin/Debug/net6.0/Programar_download.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll b/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..d67c8a8 Binary files /dev/null and b/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll differ diff --git a/bin/Debug/net6.0/System.Data.OleDb.dll b/bin/Debug/net6.0/System.Data.OleDb.dll new file mode 100644 index 0000000..f7840cd Binary files /dev/null and b/bin/Debug/net6.0/System.Data.OleDb.dll differ diff --git a/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll b/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..e9092d7 Binary files /dev/null and b/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/bin/Debug/net6.0/System.Drawing.Common.dll b/bin/Debug/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..be6915e Binary files /dev/null and b/bin/Debug/net6.0/System.Drawing.Common.dll differ diff --git a/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll b/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..1ba8770 Binary files /dev/null and b/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/bin/Debug/net6.0/System.Security.Permissions.dll b/bin/Debug/net6.0/System.Security.Permissions.dll new file mode 100644 index 0000000..39dd4df Binary files /dev/null and b/bin/Debug/net6.0/System.Security.Permissions.dll differ diff --git a/bin/Debug/net6.0/System.Windows.Extensions.dll b/bin/Debug/net6.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..c3e8844 Binary files /dev/null and b/bin/Debug/net6.0/System.Windows.Extensions.dll differ diff --git a/bin/Debug/net6.0/ref/Programar_download.dll b/bin/Debug/net6.0/ref/Programar_download.dll new file mode 100644 index 0000000..6d2b7c8 Binary files /dev/null and b/bin/Debug/net6.0/ref/Programar_download.dll differ diff --git a/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..9e26473 Binary files /dev/null and b/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll differ diff --git a/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..66af198 Binary files /dev/null and b/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll b/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll new file mode 100644 index 0000000..95d3e71 Binary files /dev/null and b/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll differ diff --git a/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll b/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..235a22f Binary files /dev/null and b/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..7c9e87b Binary files /dev/null and b/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll differ diff --git a/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..332dbfa Binary files /dev/null and b/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..69f0d1b Binary files /dev/null and b/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll differ 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/Interop.VBIDE.dll b/obj/Debug/net6.0-windows/Interop.VBIDE.dll new file mode 100644 index 0000000..970a330 Binary files /dev/null and b/obj/Debug/net6.0-windows/Interop.VBIDE.dll differ diff --git a/obj/Debug/net6.0-windows/Programar_download.AssemblyInfo.cs b/obj/Debug/net6.0-windows/Programar_download.AssemblyInfo.cs new file mode 100644 index 0000000..c887cb4 --- /dev/null +++ b/obj/Debug/net6.0-windows/Programar_download.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("Programar_download")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Programar_download")] +[assembly: System.Reflection.AssemblyTitleAttribute("Programar_download")] +[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/Programar_download.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/Programar_download.AssemblyInfoInputs.cache new file mode 100644 index 0000000..bc86899 --- /dev/null +++ b/obj/Debug/net6.0-windows/Programar_download.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +5390f0f38eee014d4982ba6dc89679ec6ab7283d diff --git a/obj/Debug/net6.0-windows/Programar_download.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/Programar_download.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e952f0c --- /dev/null +++ b/obj/Debug/net6.0-windows/Programar_download.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 = Programar_download +build_property.ProjectDir = K:\Back\Carteira x.x\Codigo\Programar_download\ diff --git a/obj/Debug/net6.0-windows/Programar_download.GlobalUsings.g.cs b/obj/Debug/net6.0-windows/Programar_download.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net6.0-windows/Programar_download.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/Programar_download.assets.cache b/obj/Debug/net6.0-windows/Programar_download.assets.cache new file mode 100644 index 0000000..3c4a819 Binary files /dev/null and b/obj/Debug/net6.0-windows/Programar_download.assets.cache differ diff --git a/obj/Debug/net6.0-windows/Programar_download.csproj.AssemblyReference.cache b/obj/Debug/net6.0-windows/Programar_download.csproj.AssemblyReference.cache new file mode 100644 index 0000000..3b507ec Binary files /dev/null and b/obj/Debug/net6.0-windows/Programar_download.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net6.0-windows/Programar_download.csproj.CopyComplete b/obj/Debug/net6.0-windows/Programar_download.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0-windows/Programar_download.csproj.CoreCompileInputs.cache b/obj/Debug/net6.0-windows/Programar_download.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..305b17b --- /dev/null +++ b/obj/Debug/net6.0-windows/Programar_download.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +52d405ffa67d2a670187e1a38d3e3d9708c057d9 diff --git a/obj/Debug/net6.0-windows/Programar_download.csproj.FileListAbsolute.txt b/obj/Debug/net6.0-windows/Programar_download.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..db184d4 --- /dev/null +++ b/obj/Debug/net6.0-windows/Programar_download.csproj.FileListAbsolute.txt @@ -0,0 +1,33 @@ +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\Programar_download.exe +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\Programar_download.deps.json +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\Programar_download.runtimeconfig.json +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\Programar_download.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\ref\Programar_download.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\Programar_download.pdb +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\Microsoft.Win32.SystemEvents.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\System.Configuration.ConfigurationManager.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\System.Data.OleDb.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\System.Diagnostics.PerformanceCounter.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\System.Drawing.Common.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\System.Security.Cryptography.ProtectedData.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\System.Security.Permissions.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\System.Windows.Extensions.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\runtimes\win\lib\net6.0\System.Data.OleDb.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\runtimes\win\lib\net6.0\System.Drawing.Common.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0-windows\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0-windows\Interop.VBIDE.dll +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0-windows\Programar_download.csproj.ResolveComReference.cache +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0-windows\Programar_download.GeneratedMSBuildEditorConfig.editorconfig +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0-windows\Programar_download.AssemblyInfoInputs.cache +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0-windows\Programar_download.AssemblyInfo.cs +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0-windows\Programar_download.csproj.CoreCompileInputs.cache +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0-windows\Programar_download.csproj.CopyComplete +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0-windows\Programar_download.dll +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0-windows\ref\Programar_download.dll +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0-windows\Programar_download.pdb +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0-windows\Programar_download.genruntimeconfig.cache +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0-windows\Programar_download.csproj.AssemblyReference.cache diff --git a/obj/Debug/net6.0-windows/Programar_download.csproj.ResolveComReference.cache b/obj/Debug/net6.0-windows/Programar_download.csproj.ResolveComReference.cache new file mode 100644 index 0000000..912ff0f Binary files /dev/null and b/obj/Debug/net6.0-windows/Programar_download.csproj.ResolveComReference.cache differ diff --git a/obj/Debug/net6.0-windows/Programar_download.dll b/obj/Debug/net6.0-windows/Programar_download.dll new file mode 100644 index 0000000..0c603cc Binary files /dev/null and b/obj/Debug/net6.0-windows/Programar_download.dll differ diff --git a/obj/Debug/net6.0-windows/Programar_download.genruntimeconfig.cache b/obj/Debug/net6.0-windows/Programar_download.genruntimeconfig.cache new file mode 100644 index 0000000..2bdc8d1 --- /dev/null +++ b/obj/Debug/net6.0-windows/Programar_download.genruntimeconfig.cache @@ -0,0 +1 @@ +033d36733db81d0020e0d044af8e7bd67baa6813 diff --git a/obj/Debug/net6.0-windows/Programar_download.pdb b/obj/Debug/net6.0-windows/Programar_download.pdb new file mode 100644 index 0000000..a361d49 Binary files /dev/null and b/obj/Debug/net6.0-windows/Programar_download.pdb differ diff --git a/obj/Debug/net6.0-windows/apphost.exe b/obj/Debug/net6.0-windows/apphost.exe new file mode 100644 index 0000000..858d27a Binary files /dev/null and b/obj/Debug/net6.0-windows/apphost.exe differ diff --git a/obj/Debug/net6.0-windows/ref/Programar_download.dll b/obj/Debug/net6.0-windows/ref/Programar_download.dll new file mode 100644 index 0000000..63d25ef Binary files /dev/null and b/obj/Debug/net6.0-windows/ref/Programar_download.dll differ diff --git a/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/obj/Debug/net6.0/.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/Interop.VBIDE.dll b/obj/Debug/net6.0/Interop.VBIDE.dll new file mode 100644 index 0000000..aa9ed93 Binary files /dev/null and b/obj/Debug/net6.0/Interop.VBIDE.dll differ diff --git a/obj/Debug/net6.0/Programar_download.AssemblyInfo.cs b/obj/Debug/net6.0/Programar_download.AssemblyInfo.cs new file mode 100644 index 0000000..f5e4b96 --- /dev/null +++ b/obj/Debug/net6.0/Programar_download.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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("Programar_download")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Programar_download")] +[assembly: System.Reflection.AssemblyTitleAttribute("Programar_download")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net6.0/Programar_download.AssemblyInfoInputs.cache b/obj/Debug/net6.0/Programar_download.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fb3cfb9 --- /dev/null +++ b/obj/Debug/net6.0/Programar_download.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +ca26a35414d1d67882f86165c72e26beca730bba diff --git a/obj/Debug/net6.0/Programar_download.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0/Programar_download.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9f12cd6 --- /dev/null +++ b/obj/Debug/net6.0/Programar_download.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Programar_download +build_property.ProjectDir = X:\Back\Carteira x.x\Codigo\Programar_download\ diff --git a/obj/Debug/net6.0/Programar_download.GlobalUsings.g.cs b/obj/Debug/net6.0/Programar_download.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net6.0/Programar_download.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/Programar_download.assets.cache b/obj/Debug/net6.0/Programar_download.assets.cache new file mode 100644 index 0000000..84ada1b Binary files /dev/null and b/obj/Debug/net6.0/Programar_download.assets.cache differ diff --git a/obj/Debug/net6.0/Programar_download.csproj.AssemblyReference.cache b/obj/Debug/net6.0/Programar_download.csproj.AssemblyReference.cache new file mode 100644 index 0000000..204fdef Binary files /dev/null and b/obj/Debug/net6.0/Programar_download.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net6.0/Programar_download.csproj.CopyComplete b/obj/Debug/net6.0/Programar_download.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0/Programar_download.csproj.CoreCompileInputs.cache b/obj/Debug/net6.0/Programar_download.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..99001bc --- /dev/null +++ b/obj/Debug/net6.0/Programar_download.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +4520db20b984f0cfb0b8c023852928d3ca5b751a diff --git a/obj/Debug/net6.0/Programar_download.csproj.FileListAbsolute.txt b/obj/Debug/net6.0/Programar_download.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c04846c --- /dev/null +++ b/obj/Debug/net6.0/Programar_download.csproj.FileListAbsolute.txt @@ -0,0 +1,33 @@ +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\Programar_download.exe +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\Programar_download.deps.json +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\Programar_download.runtimeconfig.json +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\Programar_download.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\ref\Programar_download.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\Programar_download.pdb +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0\Programar_download.csproj.AssemblyReference.cache +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0\Interop.VBIDE.dll +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0\Programar_download.csproj.ResolveComReference.cache +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0\Programar_download.GeneratedMSBuildEditorConfig.editorconfig +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0\Programar_download.AssemblyInfoInputs.cache +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0\Programar_download.AssemblyInfo.cs +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0\Programar_download.csproj.CoreCompileInputs.cache +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0\Programar_download.dll +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0\ref\Programar_download.dll +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0\Programar_download.pdb +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0\Programar_download.genruntimeconfig.cache +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\System.Data.OleDb.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\System.Drawing.Common.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\System.Security.Permissions.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\System.Windows.Extensions.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +X:\Back\Carteira x.x\Codigo\Programar_download\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +X:\Back\Carteira x.x\Codigo\Programar_download\obj\Debug\net6.0\Programar_download.csproj.CopyComplete diff --git a/obj/Debug/net6.0/Programar_download.csproj.ResolveComReference.cache b/obj/Debug/net6.0/Programar_download.csproj.ResolveComReference.cache new file mode 100644 index 0000000..3769418 Binary files /dev/null and b/obj/Debug/net6.0/Programar_download.csproj.ResolveComReference.cache differ diff --git a/obj/Debug/net6.0/Programar_download.dll b/obj/Debug/net6.0/Programar_download.dll new file mode 100644 index 0000000..62d4086 Binary files /dev/null and b/obj/Debug/net6.0/Programar_download.dll differ diff --git a/obj/Debug/net6.0/Programar_download.genruntimeconfig.cache b/obj/Debug/net6.0/Programar_download.genruntimeconfig.cache new file mode 100644 index 0000000..f6c8ced --- /dev/null +++ b/obj/Debug/net6.0/Programar_download.genruntimeconfig.cache @@ -0,0 +1 @@ +d594414d37f1075a2fee916d3903db8860e32f7d diff --git a/obj/Debug/net6.0/Programar_download.pdb b/obj/Debug/net6.0/Programar_download.pdb new file mode 100644 index 0000000..bedf163 Binary files /dev/null and b/obj/Debug/net6.0/Programar_download.pdb differ diff --git a/obj/Debug/net6.0/apphost.exe b/obj/Debug/net6.0/apphost.exe new file mode 100644 index 0000000..068c98a Binary files /dev/null and b/obj/Debug/net6.0/apphost.exe differ diff --git a/obj/Debug/net6.0/ref/Programar_download.dll b/obj/Debug/net6.0/ref/Programar_download.dll new file mode 100644 index 0000000..6d2b7c8 Binary files /dev/null and b/obj/Debug/net6.0/ref/Programar_download.dll differ diff --git a/obj/Programar_download.csproj.nuget.dgspec.json b/obj/Programar_download.csproj.nuget.dgspec.json new file mode 100644 index 0000000..a2cdfc9 --- /dev/null +++ b/obj/Programar_download.csproj.nuget.dgspec.json @@ -0,0 +1,72 @@ +{ + "format": 1, + "restore": { + "K:\\Back\\Carteira x.x\\Codigo\\Programar_download\\Programar_download.csproj": {} + }, + "projects": { + "K:\\Back\\Carteira x.x\\Codigo\\Programar_download\\Programar_download.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "K:\\Back\\Carteira x.x\\Codigo\\Programar_download\\Programar_download.csproj", + "projectName": "Programar_download", + "projectPath": "K:\\Back\\Carteira x.x\\Codigo\\Programar_download\\Programar_download.csproj", + "packagesPath": "C:\\Users\\felipe.filipak\\.nuget\\packages\\", + "outputPath": "K:\\Back\\Carteira x.x\\Codigo\\Programar_download\\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.201\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/Programar_download.csproj.nuget.g.props b/obj/Programar_download.csproj.nuget.g.props new file mode 100644 index 0000000..fed89bd --- /dev/null +++ b/obj/Programar_download.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.1.0 + + + + + + \ No newline at end of file diff --git a/obj/Programar_download.csproj.nuget.g.targets b/obj/Programar_download.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/obj/Programar_download.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/obj/Release/net6.0/.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/Release/net6.0/Interop.VBIDE.dll b/obj/Release/net6.0/Interop.VBIDE.dll new file mode 100644 index 0000000..cc4d8c2 Binary files /dev/null and b/obj/Release/net6.0/Interop.VBIDE.dll differ diff --git a/obj/Release/net6.0/Programar_download.AssemblyInfo.cs b/obj/Release/net6.0/Programar_download.AssemblyInfo.cs new file mode 100644 index 0000000..f2afd4b --- /dev/null +++ b/obj/Release/net6.0/Programar_download.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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("Programar_download")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Programar_download")] +[assembly: System.Reflection.AssemblyTitleAttribute("Programar_download")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Release/net6.0/Programar_download.AssemblyInfoInputs.cache b/obj/Release/net6.0/Programar_download.AssemblyInfoInputs.cache new file mode 100644 index 0000000..f396566 --- /dev/null +++ b/obj/Release/net6.0/Programar_download.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +df6a5d42e1d021e8037e62346a8590d9a597ceb5 diff --git a/obj/Release/net6.0/Programar_download.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net6.0/Programar_download.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9f12cd6 --- /dev/null +++ b/obj/Release/net6.0/Programar_download.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Programar_download +build_property.ProjectDir = X:\Back\Carteira x.x\Codigo\Programar_download\ diff --git a/obj/Release/net6.0/Programar_download.GlobalUsings.g.cs b/obj/Release/net6.0/Programar_download.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Release/net6.0/Programar_download.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/Release/net6.0/Programar_download.assets.cache b/obj/Release/net6.0/Programar_download.assets.cache new file mode 100644 index 0000000..1eec09f Binary files /dev/null and b/obj/Release/net6.0/Programar_download.assets.cache differ diff --git a/obj/Release/net6.0/Programar_download.csproj.AssemblyReference.cache b/obj/Release/net6.0/Programar_download.csproj.AssemblyReference.cache new file mode 100644 index 0000000..a4176af Binary files /dev/null and b/obj/Release/net6.0/Programar_download.csproj.AssemblyReference.cache differ diff --git a/obj/Release/net6.0/Programar_download.csproj.ResolveComReference.cache b/obj/Release/net6.0/Programar_download.csproj.ResolveComReference.cache new file mode 100644 index 0000000..3769418 Binary files /dev/null and b/obj/Release/net6.0/Programar_download.csproj.ResolveComReference.cache differ diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..853797d --- /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": "K:\\Back\\Carteira x.x\\Codigo\\Programar_download\\Programar_download.csproj", + "projectName": "Programar_download", + "projectPath": "K:\\Back\\Carteira x.x\\Codigo\\Programar_download\\Programar_download.csproj", + "packagesPath": "C:\\Users\\felipe.filipak\\.nuget\\packages\\", + "outputPath": "K:\\Back\\Carteira x.x\\Codigo\\Programar_download\\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.201\\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..145bdeb --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,18 @@ +{ + "version": 2, + "dgSpecHash": "1FwmxYyWvwbPd2s/4Jd8tLdOmR3Rr9BmBl6fICPA+8gO1cagDj1N43Pbwu9tmGqoL6UbjOIpBGAJqxbw58Wcow==", + "success": true, + "projectFilePath": "K:\\Back\\Carteira x.x\\Codigo\\Programar_download\\Programar_download.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