Import inicial: migração de arquivos da rede
This commit is contained in:
commit
cedcb9e933
BIN
.vs/Controle_Front/DesignTimeBuild/.dtbcache.v2
Normal file
BIN
.vs/Controle_Front/DesignTimeBuild/.dtbcache.v2
Normal file
Binary file not shown.
11
.vs/Controle_Front/project-colors.json
Normal file
11
.vs/Controle_Front/project-colors.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"Version": 1,
|
||||||
|
"ProjectMap": {
|
||||||
|
"c4de15e1-b156-422d-b6b3-212ac1a27c5f": {
|
||||||
|
"ProjectGuid": "c4de15e1-b156-422d-b6b3-212ac1a27c5f",
|
||||||
|
"DisplayName": "Controle_Front",
|
||||||
|
"ColorIndex": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"NextColorIndex": 1
|
||||||
|
}
|
||||||
BIN
.vs/Controle_Front/v17/.futdcache.v1
Normal file
BIN
.vs/Controle_Front/v17/.futdcache.v1
Normal file
Binary file not shown.
BIN
.vs/Controle_Front/v17/.suo
Normal file
BIN
.vs/Controle_Front/v17/.suo
Normal file
Binary file not shown.
15
Controle_Front.csproj
Normal file
15
Controle_Front.csproj
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net6.0-windows</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<PlatformTarget>x86</PlatformTarget>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="System.Data.OleDb" Version="6.0.0" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
25
Controle_Front.sln
Normal file
25
Controle_Front.sln
Normal 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}") = "Controle_Front", "Controle_Front.csproj", "{C4DE15E1-B156-422D-B6B3-212AC1A27C5F}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{C4DE15E1-B156-422D-B6B3-212AC1A27C5F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{C4DE15E1-B156-422D-B6B3-212AC1A27C5F}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{C4DE15E1-B156-422D-B6B3-212AC1A27C5F}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{C4DE15E1-B156-422D-B6B3-212AC1A27C5F}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {CF9BDB34-B339-4D60-B3F8-5FF78B05C1E1}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
139
Program.cs
Normal file
139
Program.cs
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
// See https://aka.ms/new-console-template for more information
|
||||||
|
/*using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Data;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Data.SqlClient;
|
||||||
|
using System.Threading.Tasks;*/
|
||||||
|
using System;
|
||||||
|
using System.Data.OleDb;
|
||||||
|
using System.Diagnostics;
|
||||||
|
|
||||||
|
internal class Download_BD
|
||||||
|
{
|
||||||
|
static void Main()
|
||||||
|
{
|
||||||
|
string nome_entrada;
|
||||||
|
string strQRY;
|
||||||
|
|
||||||
|
nome_entrada = "aaa";
|
||||||
|
|
||||||
|
Acessar_BD();
|
||||||
|
|
||||||
|
Console.WriteLine("Programa encerrado.");
|
||||||
|
return;
|
||||||
|
Environment.Exit(0);
|
||||||
|
}
|
||||||
|
static void Acessar_BD()
|
||||||
|
{
|
||||||
|
int cont_result;
|
||||||
|
string prt_str;
|
||||||
|
int n_cli;
|
||||||
|
bool teste_par;
|
||||||
|
string teste_cli = "";
|
||||||
|
|
||||||
|
List<string> lt_cli = new List<string>();
|
||||||
|
List<double> lt_codcli = new List<double>();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
string com_usuario;
|
||||||
|
string com_categ;
|
||||||
|
string com_assunto;
|
||||||
|
string com_texto;
|
||||||
|
string com_cli;
|
||||||
|
Double dat_com;
|
||||||
|
Boolean finaliza;
|
||||||
|
Double com_codcli;
|
||||||
|
var usuario = new Dictionary<string, string>();
|
||||||
|
var categ = new Dictionary<int, string>();
|
||||||
|
|
||||||
|
//loop para adicionar usuarios a partir de nossa planilha de cadastro
|
||||||
|
OleDbConnection conUSU = new("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=X:/Middle/Informativo Setorial/Modelo Word/BD1_outros.accdb;Jet OLEDB:Database Password=gds21");
|
||||||
|
conUSU.Open();
|
||||||
|
OleDbCommand tbUsu = new("SELECT * FROM Gabarito_contatos", conUSU);
|
||||||
|
OleDbDataReader reUSU = tbUsu.ExecuteReader();
|
||||||
|
|
||||||
|
while (reUSU.Read())
|
||||||
|
{
|
||||||
|
usuario[reUSU["Cod_maquina"].ToString()] = reUSU["Nome_usuario"].ToString();
|
||||||
|
}
|
||||||
|
conUSU.Close();
|
||||||
|
|
||||||
|
com_usuario = usuario[Environment.MachineName.ToString()];
|
||||||
|
|
||||||
|
//categ[0] = "VERIFICAR HISTORICO";
|
||||||
|
categ[1] = "CONTRATACAO";
|
||||||
|
categ[2] = "CURTO PRAZO";
|
||||||
|
categ[3] = "INADIMPLENCIA";
|
||||||
|
categ[4] = "MIGRACAO";
|
||||||
|
categ[5] = "REDUCAO DE CUSTOS/DISTRIBUIDORAS";
|
||||||
|
categ[6] = "RELACIONAMENTO (Tel./Meet)";
|
||||||
|
categ[7] = "REUNIÃO PRESENCIAL";
|
||||||
|
categ[8] = "OUTROS";
|
||||||
|
|
||||||
|
com_cli = lt_cli[n_cli - 1];
|
||||||
|
com_codcli = lt_codcli[n_cli - 1];
|
||||||
|
|
||||||
|
finaliza = false;
|
||||||
|
while (!finaliza)
|
||||||
|
{
|
||||||
|
Console.WriteLine("\nCliente {0} selecionado. Escolha a categoria do contato:", com_cli);
|
||||||
|
foreach (KeyValuePair<int, string> item in categ)
|
||||||
|
{
|
||||||
|
Console.WriteLine("{0,-4} | {1,-15}", item.Key, item.Value);
|
||||||
|
cont_result++;
|
||||||
|
}
|
||||||
|
|
||||||
|
teste_par = Int32.TryParse(Console.ReadKey(true).KeyChar.ToString(), out n_cli);
|
||||||
|
while (!teste_par || n_cli > categ.Count)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Numero invalido");
|
||||||
|
teste_par = Int32.TryParse(Console.ReadKey(true).KeyChar.ToString(), out n_cli);
|
||||||
|
}
|
||||||
|
com_categ = categ[n_cli];
|
||||||
|
|
||||||
|
Console.WriteLine("\nCategoria '{0}' selecionada. \nDigite o assunto do contato e pressione ENTER:", com_categ);
|
||||||
|
com_assunto = Console.ReadLine();
|
||||||
|
|
||||||
|
Console.WriteLine("\nDigite o texto do contato e pressione ENTER:");
|
||||||
|
com_texto = Console.ReadLine();
|
||||||
|
|
||||||
|
dat_com = DateTime.Today.ToOADate();
|
||||||
|
|
||||||
|
Console.WriteLine("\n{0,-10} | {1,-15}", "Usuario", com_usuario);
|
||||||
|
Console.WriteLine("{0,-10} | {1,-15}", "Data", DateOnly.FromDateTime(DateTime.FromOADate(dat_com)));
|
||||||
|
Console.WriteLine("{0,-10} | {1,-15}", "Cliente", com_cli);
|
||||||
|
Console.WriteLine("{0,-10} | {1,-15}", "Categoria", com_categ);
|
||||||
|
Console.WriteLine("{0,-10} | {1,-15}", "Assunto", com_assunto);
|
||||||
|
Console.WriteLine("{0,-10} | {1,-15}", "Texto", com_texto);
|
||||||
|
|
||||||
|
Console.WriteLine("\nDeseja finalizar [S/n] ? Digite n para repetir os passos após a escolha do cliente.\n");
|
||||||
|
if (Console.ReadKey(true).KeyChar.ToString().ToUpper() == "S")
|
||||||
|
{
|
||||||
|
finaliza = true;
|
||||||
|
string aux_SQL;
|
||||||
|
aux_SQL = "INSERT INTO Contatos (Data, usuario, Cod_Smart_cliente, categoria, assunto, texto)";
|
||||||
|
aux_SQL += " VALUES (" + dat_com + ",\"" + com_usuario + "\"," + com_codcli + ",\"" + com_categ + "\",\"" + com_assunto + "\",\"" + com_texto + "\"";
|
||||||
|
aux_SQL += ")";
|
||||||
|
conn.Open();
|
||||||
|
OleDbCommand tbContat = new(aux_SQL, conn);
|
||||||
|
tbContat.ExecuteNonQuery();
|
||||||
|
conn.Close();
|
||||||
|
Console.WriteLine("\nCONTATO CADASTRADO COM SUCESSO\n");
|
||||||
|
Console.WriteLine("\n-------------------------------------------------------------------------------------------------");
|
||||||
|
Console.WriteLine("Reinicio");
|
||||||
|
Console.WriteLine("-------------------------------------------------------------------------------------------------\n");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Console.WriteLine("\nDica: utilizar as setas para cima e baixo caso precise preencher novamente.\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
17
Properties/PublishProfiles/FolderProfile.pubxml
Normal file
17
Properties/PublishProfiles/FolderProfile.pubxml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||||
|
-->
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Any CPU</Platform>
|
||||||
|
<PublishDir>X:\Back\Carteira x.x</PublishDir>
|
||||||
|
<PublishProtocol>FileSystem</PublishProtocol>
|
||||||
|
<TargetFramework>net6.0-windows</TargetFramework>
|
||||||
|
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
|
||||||
|
<SelfContained>true</SelfContained>
|
||||||
|
<PublishSingleFile>True</PublishSingleFile>
|
||||||
|
<PublishReadyToRun>False</PublishReadyToRun>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
||||||
72
obj/Controle_Front.csproj.nuget.dgspec.json
Normal file
72
obj/Controle_Front.csproj.nuget.dgspec.json
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\Controle_Front.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\Controle_Front.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\Controle_Front.csproj",
|
||||||
|
"projectName": "Controle_Front",
|
||||||
|
"projectPath": "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\Controle_Front.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\felipe.filipak\\.nuget\\packages\\",
|
||||||
|
"outputPath": "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\felipe.filipak\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net6.0-windows7.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0-windows7.0": {
|
||||||
|
"targetAlias": "net6.0-windows",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0-windows7.0": {
|
||||||
|
"targetAlias": "net6.0-windows",
|
||||||
|
"dependencies": {
|
||||||
|
"System.Data.OleDb": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[6.0.0, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
16
obj/Controle_Front.csproj.nuget.g.props
Normal file
16
obj/Controle_Front.csproj.nuget.g.props
Normal 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.0.1</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>
|
||||||
2
obj/Controle_Front.csproj.nuget.g.targets
Normal file
2
obj/Controle_Front.csproj.nuget.g.targets
Normal 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" />
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
||||||
25
obj/Debug/net6.0-windows/Controle_Front.AssemblyInfo.cs
Normal file
25
obj/Debug/net6.0-windows/Controle_Front.AssemblyInfo.cs
Normal 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("Controle_Front")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Controle_Front")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Controle_Front")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
e5222192ce4da03af232f8facb97f362e4f88dca
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net6.0-windows
|
||||||
|
build_property.TargetPlatformMinVersion = 7.0
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = Controle_Front
|
||||||
|
build_property.ProjectDir = X:\Back\Carteira x.x\Codigo\Controle_Front\
|
||||||
@ -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;
|
||||||
BIN
obj/Debug/net6.0-windows/Controle_Front.assets.cache
Normal file
BIN
obj/Debug/net6.0-windows/Controle_Front.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
521
obj/project.assets.json
Normal file
521
obj/project.assets.json
Normal 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": "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\Controle_Front.csproj",
|
||||||
|
"projectName": "Controle_Front",
|
||||||
|
"projectPath": "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\Controle_Front.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\felipe.filipak\\.nuget\\packages\\",
|
||||||
|
"outputPath": "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\felipe.filipak\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net6.0-windows7.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0-windows7.0": {
|
||||||
|
"targetAlias": "net6.0-windows",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0-windows7.0": {
|
||||||
|
"targetAlias": "net6.0-windows",
|
||||||
|
"dependencies": {
|
||||||
|
"System.Data.OleDb": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[6.0.0, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
18
obj/project.nuget.cache
Normal file
18
obj/project.nuget.cache
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "6A0SduyN0LLUvElYJQhD9gFONxxe93lM+ju7031BeWS9KBmUgXl9uCgOsrVhbBWn2xf+Oj6BrM632e4lFPMgHQ==",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "X:\\Back\\Carteira x.x\\Codigo\\Controle_Front\\Controle_Front.csproj",
|
||||||
|
"expectedPackageFiles": [
|
||||||
|
"C:\\Users\\felipe.filipak\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\felipe.filipak\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\felipe.filipak\\.nuget\\packages\\system.data.oledb\\6.0.0\\system.data.oledb.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\felipe.filipak\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.0\\system.diagnostics.performancecounter.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\felipe.filipak\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\felipe.filipak\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\felipe.filipak\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\felipe.filipak\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\felipe.filipak\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512"
|
||||||
|
],
|
||||||
|
"logs": []
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user