Import inicial: migração de arquivos da rede

This commit is contained in:
Giuliano Paschoalino 2025-07-15 13:58:39 -03:00
commit 5f5389ec42
97 changed files with 1509 additions and 0 deletions

Binary file not shown.

View File

@ -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
}

Binary file not shown.

Binary file not shown.

119
Program.cs Normal file
View File

@ -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
*/

34
Programar_download.csproj Normal file
View File

@ -0,0 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<StartupObject></StartupObject>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<COMReference Include="{000204ef-0000-0000-c000-000000000046}">
<WrapperTool>tlbimp</WrapperTool>
<VersionMinor>0</VersionMinor>
<VersionMajor>6</VersionMajor>
<Guid>000204ef-0000-0000-c000-000000000046</Guid>
</COMReference>
<COMReference Include="VBIDE">
<WrapperTool>tlbimp</WrapperTool>
<VersionMinor>3</VersionMinor>
<VersionMajor>5</VersionMajor>
<Guid>0002e157-0000-0000-c000-000000000046</Guid>
<Lcid>0</Lcid>
<Isolated>false</Isolated>
<EmbedInteropTypes>true</EmbedInteropTypes>
</COMReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Data.OleDb" Version="6.0.0" />
</ItemGroup>
</Project>

25
Programar_download.sln Normal file
View File

@ -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

View File

@ -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"
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -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"
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

Binary file not shown.

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
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.

View File

@ -0,0 +1 @@
5390f0f38eee014d4982ba6dc89679ec6ab7283d

View File

@ -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\

View File

@ -0,0 +1,8 @@
// <auto-generated/>
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;

View File

@ -0,0 +1 @@
52d405ffa67d2a670187e1a38d3e3d9708c057d9

View File

@ -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

Binary file not shown.

View File

@ -0,0 +1 @@
033d36733db81d0020e0d044af8e7bd67baa6813

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

Binary file not shown.

View File

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
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.

View File

@ -0,0 +1 @@
ca26a35414d1d67882f86165c72e26beca730bba

View File

@ -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\

View File

@ -0,0 +1,8 @@
// <auto-generated/>
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;

Binary file not shown.

View File

@ -0,0 +1 @@
4520db20b984f0cfb0b8c023852928d3ca5b751a

View File

@ -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

Binary file not shown.

View File

@ -0,0 +1 @@
d594414d37f1075a2fee916d3903db8860e32f7d

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -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"
}
}
}
}
}

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\felipe.filipak\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.1.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\felipe.filipak\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

Binary file not shown.

View File

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
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.

View File

@ -0,0 +1 @@
df6a5d42e1d021e8037e62346a8590d9a597ceb5

View File

@ -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\

View File

@ -0,0 +1,8 @@
// <auto-generated/>
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;

Binary file not shown.

521
obj/project.assets.json Normal file
View File

@ -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"
}
}
}
}

18
obj/project.nuget.cache Normal file
View File

@ -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": []
}