Conexion con procedimiento almacenado
This commit is contained in:
parent
cdcaa6e49f
commit
765e9aaa98
174 changed files with 4127 additions and 1019 deletions
|
@ -10,4 +10,8 @@
|
|||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.6" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\SHARED\Shared.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,27 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
|
||||
namespace DAS
|
||||
{
|
||||
public class DASConfiguration
|
||||
{
|
||||
private readonly IConfiguration _config;
|
||||
public DASConfiguration(IConfiguration config)
|
||||
{
|
||||
_config = config;
|
||||
}
|
||||
public string GetConnectionString(string name)
|
||||
{
|
||||
return _config.GetConnectionString(name);
|
||||
}
|
||||
public void TestConexion()
|
||||
{
|
||||
string cadena = _config.GetConnectionString("DefaultConnection");
|
||||
Console.WriteLine("[DAS] Cadena desde DAS: " + cadena);
|
||||
}
|
||||
}
|
||||
}
|
8
DAS/RegistrarMedicion.cs
Normal file
8
DAS/RegistrarMedicion.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
namespace DAS
|
||||
{
|
||||
public class RegistrarMedicion
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
}
|
|
@ -8,7 +8,8 @@
|
|||
".NETCoreApp,Version=v8.0": {
|
||||
"DAS/1.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "9.0.6"
|
||||
"Microsoft.Extensions.Configuration": "9.0.6",
|
||||
"Shared": "1.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"DAS.dll": {}
|
||||
|
@ -44,6 +45,14 @@
|
|||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Shared/1.0.0": {
|
||||
"runtime": {
|
||||
"Shared.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -73,6 +82,11 @@
|
|||
"sha512": "sha512-BHniU24QV67qp1pJknqYSofAPYGmijGI8D+ci9yfw33iuFdyOeB9lWTg78ThyYLyQwZw3s0vZ36VMb0MqbUuLw==",
|
||||
"path": "microsoft.extensions.primitives/9.0.6",
|
||||
"hashPath": "microsoft.extensions.primitives.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"Shared/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
BIN
DAS/bin/Debug/net8.0/Shared.dll
Normal file
BIN
DAS/bin/Debug/net8.0/Shared.dll
Normal file
Binary file not shown.
BIN
DAS/bin/Debug/net8.0/Shared.pdb
Normal file
BIN
DAS/bin/Debug/net8.0/Shared.pdb
Normal file
Binary file not shown.
|
@ -1,23 +1,23 @@
|
|||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\leone\\OneDrive\\Escritorio\\Universidad\\Programas\\C#\\Integracion_DGA\\DAS\\DAS.csproj": {}
|
||||
"C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\DAS.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\leone\\OneDrive\\Escritorio\\Universidad\\Programas\\C#\\Integracion_DGA\\DAS\\DAS.csproj": {
|
||||
"C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\DAS.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\leone\\OneDrive\\Escritorio\\Universidad\\Programas\\C#\\Integracion_DGA\\DAS\\DAS.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\DAS.csproj",
|
||||
"projectName": "DAS",
|
||||
"projectPath": "C:\\Users\\leone\\OneDrive\\Escritorio\\Universidad\\Programas\\C#\\Integracion_DGA\\DAS\\DAS.csproj",
|
||||
"packagesPath": "C:\\Users\\leone\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\leone\\OneDrive\\Escritorio\\Universidad\\Programas\\C#\\Integracion_DGA\\DAS\\obj\\",
|
||||
"projectPath": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\DAS.csproj",
|
||||
"packagesPath": "C:\\Users\\Bastian Castro\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\leone\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Users\\Bastian Castro\\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"
|
||||
],
|
||||
|
@ -26,12 +26,17 @@
|
|||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {}
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\SHARED\\Shared.csproj": {
|
||||
"projectPath": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\SHARED\\Shared.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
|
@ -44,7 +49,7 @@
|
|||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "9.0.100"
|
||||
"SdkAnalysisLevel": "9.0.300"
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
|
@ -71,7 +76,73 @@
|
|||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101/PortableRuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.301/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\SHARED\\Shared.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\SHARED\\Shared.csproj",
|
||||
"projectName": "Shared",
|
||||
"projectPath": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\SHARED\\Shared.csproj",
|
||||
"packagesPath": "C:\\Users\\Bastian Castro\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\SHARED\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Bastian Castro\\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": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "9.0.300"
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.301/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,12 +5,12 @@
|
|||
<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\leone\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Bastian Castro\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\leone\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Users\Bastian Castro\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -1,10 +1,10 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
// Este código fue generado por una herramienta.
|
||||
// Versión de runtime:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
|
||||
// se vuelve a generar el código.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
|
@ -14,10 +14,10 @@ using System.Reflection;
|
|||
[assembly: System.Reflection.AssemblyCompanyAttribute("DAS")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+cdcaa6e49f5495b176ca06e37a04b9a4e1d17b40")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("DAS")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("DAS")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
// Generado por la clase WriteCodeFragment de MSBuild.
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
be15dc33ba1408a38a0eb143b0c1604710ed6b42cfb8690489ebea68719682da
|
||||
f70b6d8f075a7b6e856b1831384fcae979db1bd12a7532070a866b2b604036b2
|
||||
|
|
|
@ -8,7 +8,7 @@ build_property.PlatformNeutralAssembly =
|
|||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = DAS
|
||||
build_property.ProjectDir = C:\Users\leone\OneDrive\Escritorio\Universidad\Programas\C#\Integracion_DGA\DAS\
|
||||
build_property.ProjectDir = C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1 +1 @@
|
|||
8f58b59791db54d4a64ef2d003de1ebd135f002bff6fbf4911e087bbe7a83558
|
||||
ccdd63077cb461de78801c30a7821f56a430c7c7d1de4c67056d1832a8540553
|
||||
|
|
|
@ -10,3 +10,18 @@ C:\Users\leone\OneDrive\Escritorio\Universidad\Programas\C#\Integracion_DGA\DAS\
|
|||
C:\Users\leone\OneDrive\Escritorio\Universidad\Programas\C#\Integracion_DGA\DAS\obj\Debug\net8.0\DAS.pdb
|
||||
C:\Users\leone\OneDrive\Escritorio\Universidad\Programas\C#\Integracion_DGA\DAS\obj\Debug\net8.0\ref\DAS.dll
|
||||
C:\Users\leone\OneDrive\Escritorio\Universidad\Programas\C#\Integracion_DGA\DAS\obj\Debug\net8.0\DAS.csproj.AssemblyReference.cache
|
||||
C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\bin\Debug\net8.0\DAS.deps.json
|
||||
C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\bin\Debug\net8.0\DAS.dll
|
||||
C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\bin\Debug\net8.0\DAS.pdb
|
||||
C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\obj\Debug\net8.0\DAS.csproj.AssemblyReference.cache
|
||||
C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\obj\Debug\net8.0\DAS.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\obj\Debug\net8.0\DAS.AssemblyInfoInputs.cache
|
||||
C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\obj\Debug\net8.0\DAS.AssemblyInfo.cs
|
||||
C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\obj\Debug\net8.0\DAS.csproj.CoreCompileInputs.cache
|
||||
C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\obj\Debug\net8.0\DAS.dll
|
||||
C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\obj\Debug\net8.0\refint\DAS.dll
|
||||
C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\obj\Debug\net8.0\DAS.pdb
|
||||
C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\obj\Debug\net8.0\ref\DAS.dll
|
||||
C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\bin\Debug\net8.0\SHARED.dll
|
||||
C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\bin\Debug\net8.0\SHARED.pdb
|
||||
C:\Users\Bastian Castro\Documents\Integracion_DGA\DAS\obj\Debug\net8.0\DAS.csproj.Up2Date
|
||||
|
|
0
DAS/obj/Debug/net8.0/DAS.csproj.Up2Date
Normal file
0
DAS/obj/Debug/net8.0/DAS.csproj.Up2Date
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -56,6 +56,16 @@
|
|||
"build": {
|
||||
"buildTransitive/net8.0/_._": {}
|
||||
}
|
||||
},
|
||||
"Shared/1.0.0": {
|
||||
"type": "project",
|
||||
"framework": ".NETCoreApp,Version=v8.0",
|
||||
"compile": {
|
||||
"bin/placeholder/Shared.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"bin/placeholder/Shared.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -143,31 +153,37 @@
|
|||
"microsoft.extensions.primitives.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"Shared/1.0.0": {
|
||||
"type": "project",
|
||||
"path": "../SHARED/Shared.csproj",
|
||||
"msbuildProject": "../SHARED/Shared.csproj"
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
"net8.0": [
|
||||
"Microsoft.Extensions.Configuration >= 9.0.6"
|
||||
"Microsoft.Extensions.Configuration >= 9.0.6",
|
||||
"Shared >= 1.0.0"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\leone\\.nuget\\packages\\": {},
|
||||
"C:\\Users\\Bastian Castro\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\leone\\OneDrive\\Escritorio\\Universidad\\Programas\\C#\\Integracion_DGA\\DAS\\DAS.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\DAS.csproj",
|
||||
"projectName": "DAS",
|
||||
"projectPath": "C:\\Users\\leone\\OneDrive\\Escritorio\\Universidad\\Programas\\C#\\Integracion_DGA\\DAS\\DAS.csproj",
|
||||
"packagesPath": "C:\\Users\\leone\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\leone\\OneDrive\\Escritorio\\Universidad\\Programas\\C#\\Integracion_DGA\\DAS\\obj\\",
|
||||
"projectPath": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\DAS.csproj",
|
||||
"packagesPath": "C:\\Users\\Bastian Castro\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\leone\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Users\\Bastian Castro\\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"
|
||||
],
|
||||
|
@ -176,12 +192,17 @@
|
|||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {}
|
||||
"projectReferences": {
|
||||
"C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\SHARED\\Shared.csproj": {
|
||||
"projectPath": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\SHARED\\Shared.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
|
@ -194,7 +215,7 @@
|
|||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "9.0.100"
|
||||
"SdkAnalysisLevel": "9.0.300"
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
|
@ -221,7 +242,7 @@
|
|||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101/PortableRuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.301/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "oh1jTdsatic=",
|
||||
"dgSpecHash": "5iCXErdw2IY=",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\leone\\OneDrive\\Escritorio\\Universidad\\Programas\\C#\\Integracion_DGA\\DAS\\DAS.csproj",
|
||||
"projectFilePath": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\DAS.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\leone\\.nuget\\packages\\microsoft.extensions.configuration\\9.0.6\\microsoft.extensions.configuration.9.0.6.nupkg.sha512",
|
||||
"C:\\Users\\leone\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.6\\microsoft.extensions.configuration.abstractions.9.0.6.nupkg.sha512",
|
||||
"C:\\Users\\leone\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.6\\microsoft.extensions.primitives.9.0.6.nupkg.sha512"
|
||||
"C:\\Users\\Bastian Castro\\.nuget\\packages\\microsoft.extensions.configuration\\9.0.6\\microsoft.extensions.configuration.9.0.6.nupkg.sha512",
|
||||
"C:\\Users\\Bastian Castro\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.6\\microsoft.extensions.configuration.abstractions.9.0.6.nupkg.sha512",
|
||||
"C:\\Users\\Bastian Castro\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.6\\microsoft.extensions.primitives.9.0.6.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue