Configuracion gitignore
This commit is contained in:
parent
6cba1fef95
commit
414c499c4e
24 changed files with 256 additions and 1251 deletions
307
.gitignore
vendored
307
.gitignore
vendored
|
@ -1,70 +1,275 @@
|
||||||
## Build results
|
# Created by https://www.toptal.com/developers/gitignore/api/aspnetcore
|
||||||
bin/
|
# Edit at https://www.toptal.com/developers/gitignore?templates=aspnetcore
|
||||||
obj/
|
|
||||||
[Bb]uild/
|
|
||||||
[Ll]og/
|
|
||||||
|
|
||||||
## User-specific files
|
### ASPNETCore ###
|
||||||
|
## Ignore Visual Studio temporary files, build results, and
|
||||||
|
## files generated by popular Visual Studio add-ons.
|
||||||
|
.env
|
||||||
|
|
||||||
|
# User-specific files
|
||||||
|
*.suo
|
||||||
*.user
|
*.user
|
||||||
*.userosscache
|
*.userosscache
|
||||||
*.suo
|
|
||||||
*.sln.docstates
|
*.sln.docstates
|
||||||
|
|
||||||
## VS Code
|
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||||
.vscode/
|
*.userprefs
|
||||||
|
|
||||||
## JetBrains Rider / ReSharper
|
# Build results
|
||||||
.idea/
|
[Dd]ebug/
|
||||||
*.sln.iml
|
[Dd]ebugPublic/
|
||||||
_ReSharper*/
|
[Rr]elease/
|
||||||
*.DotSettings
|
[Rr]eleases/
|
||||||
|
x64/
|
||||||
|
x86/
|
||||||
|
bld/
|
||||||
|
[Bb]in/
|
||||||
|
[Oo]bj/
|
||||||
|
[Ll]og/
|
||||||
|
|
||||||
## ASP.NET Scaffolding
|
# Visual Studio 2015 cache/options directory
|
||||||
ScaffoldingReadMe.txt
|
.vs/
|
||||||
|
# Uncomment if you have tasks that create the project's static files in wwwroot
|
||||||
|
#wwwroot/
|
||||||
|
|
||||||
## dotnet
|
# MSTest test Results
|
||||||
|
[Tt]est[Rr]esult*/
|
||||||
|
[Bb]uild[Ll]og.*
|
||||||
|
|
||||||
|
# NUNIT
|
||||||
|
*.VisualState.xml
|
||||||
|
TestResult.xml
|
||||||
|
|
||||||
|
# Build Results of an ATL Project
|
||||||
|
[Dd]ebugPS/
|
||||||
|
[Rr]eleasePS/
|
||||||
|
dlldata.c
|
||||||
|
|
||||||
|
# DNX
|
||||||
project.lock.json
|
project.lock.json
|
||||||
project.fragment.lock.json
|
project.fragment.lock.json
|
||||||
artifacts/
|
artifacts/
|
||||||
*.deps.json
|
|
||||||
|
|
||||||
## NuGet
|
*_i.c
|
||||||
*.nupkg
|
*_p.c
|
||||||
*.snupkg
|
*_i.h
|
||||||
.nuget/
|
*.ilk
|
||||||
packages/
|
*.meta
|
||||||
*.nuspec
|
*.obj
|
||||||
*.psmdcp
|
*.pch
|
||||||
|
|
||||||
## Visual Studio
|
|
||||||
*.dbmdl
|
|
||||||
*.sdf
|
|
||||||
*.cache
|
|
||||||
*.pdb
|
*.pdb
|
||||||
*.opendb
|
*.pgc
|
||||||
*.VC.db
|
*.pgd
|
||||||
*.sln.ide
|
*.rsp
|
||||||
|
*.sbr
|
||||||
## Publish output
|
*.tlb
|
||||||
publish/
|
*.tli
|
||||||
out/
|
*.tlh
|
||||||
|
|
||||||
## Logs
|
|
||||||
*.log
|
|
||||||
|
|
||||||
## Temp files
|
|
||||||
*.tmp
|
*.tmp
|
||||||
~$*
|
*.tmp_proj
|
||||||
|
*.log
|
||||||
|
*.vspscc
|
||||||
|
*.vssscc
|
||||||
|
.builds
|
||||||
|
*.pidb
|
||||||
|
*.svclog
|
||||||
|
*.scc
|
||||||
|
|
||||||
## Test results
|
# Chutzpah Test files
|
||||||
TestResults/
|
_Chutzpah*
|
||||||
|
|
||||||
|
# Visual C++ cache files
|
||||||
|
ipch/
|
||||||
|
*.aps
|
||||||
|
*.ncb
|
||||||
|
*.opendb
|
||||||
|
*.opensdf
|
||||||
|
*.sdf
|
||||||
|
*.cachefile
|
||||||
|
*.VC.db
|
||||||
|
*.VC.VC.opendb
|
||||||
|
|
||||||
|
# Visual Studio profiler
|
||||||
|
*.psess
|
||||||
|
*.vsp
|
||||||
|
*.vspx
|
||||||
|
*.sap
|
||||||
|
|
||||||
|
# TFS 2012 Local Workspace
|
||||||
|
$tf/
|
||||||
|
|
||||||
|
# Guidance Automation Toolkit
|
||||||
|
*.gpState
|
||||||
|
|
||||||
|
# ReSharper is a .NET coding add-in
|
||||||
|
_ReSharper*/
|
||||||
|
*.[Rr]e[Ss]harper
|
||||||
|
*.DotSettings.user
|
||||||
|
|
||||||
|
# JustCode is a .NET coding add-in
|
||||||
|
.JustCode
|
||||||
|
|
||||||
|
# TeamCity is a build add-in
|
||||||
|
_TeamCity*
|
||||||
|
|
||||||
|
# DotCover is a Code Coverage Tool
|
||||||
|
*.dotCover
|
||||||
|
|
||||||
|
# Visual Studio code coverage results
|
||||||
*.coverage
|
*.coverage
|
||||||
*.coveragexml
|
*.coveragexml
|
||||||
|
|
||||||
## User secrets
|
# NCrunch
|
||||||
secrets.json
|
_NCrunch_*
|
||||||
*.secrets.json
|
.*crunch*.local.xml
|
||||||
|
nCrunchTemp_*
|
||||||
|
|
||||||
## OS generated files
|
# MightyMoose
|
||||||
.DS_Store
|
*.mm.*
|
||||||
Thumbs.db
|
AutoTest.Net/
|
||||||
|
|
||||||
|
# Web workbench (sass)
|
||||||
|
.sass-cache/
|
||||||
|
|
||||||
|
# Installshield output folder
|
||||||
|
[Ee]xpress/
|
||||||
|
|
||||||
|
# DocProject is a documentation generator add-in
|
||||||
|
DocProject/buildhelp/
|
||||||
|
DocProject/Help/*.HxT
|
||||||
|
DocProject/Help/*.HxC
|
||||||
|
DocProject/Help/*.hhc
|
||||||
|
DocProject/Help/*.hhk
|
||||||
|
DocProject/Help/*.hhp
|
||||||
|
DocProject/Help/Html2
|
||||||
|
DocProject/Help/html
|
||||||
|
|
||||||
|
# Click-Once directory
|
||||||
|
publish/
|
||||||
|
|
||||||
|
# Publish Web Output
|
||||||
|
*.[Pp]ublish.xml
|
||||||
|
*.azurePubxml
|
||||||
|
# TODO: Comment the next line if you want to checkin your web deploy settings
|
||||||
|
# but database connection strings (with potential passwords) will be unencrypted
|
||||||
|
*.pubxml
|
||||||
|
*.publishproj
|
||||||
|
|
||||||
|
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
||||||
|
# checkin your Azure Web App publish settings, but sensitive information contained
|
||||||
|
# in these scripts will be unencrypted
|
||||||
|
PublishScripts/
|
||||||
|
|
||||||
|
# NuGet Packages
|
||||||
|
*.nupkg
|
||||||
|
# The packages folder can be ignored because of Package Restore
|
||||||
|
**/packages/*
|
||||||
|
# except build/, which is used as an MSBuild target.
|
||||||
|
!**/packages/build/
|
||||||
|
# Uncomment if necessary however generally it will be regenerated when needed
|
||||||
|
#!**/packages/repositories.config
|
||||||
|
# NuGet v3's project.json files produces more ignoreable files
|
||||||
|
*.nuget.props
|
||||||
|
*.nuget.targets
|
||||||
|
|
||||||
|
# Microsoft Azure Build Output
|
||||||
|
csx/
|
||||||
|
*.build.csdef
|
||||||
|
|
||||||
|
# Microsoft Azure Emulator
|
||||||
|
ecf/
|
||||||
|
rcf/
|
||||||
|
|
||||||
|
# Windows Store app package directories and files
|
||||||
|
AppPackages/
|
||||||
|
BundleArtifacts/
|
||||||
|
Package.StoreAssociation.xml
|
||||||
|
_pkginfo.txt
|
||||||
|
|
||||||
|
# Visual Studio cache files
|
||||||
|
# files ending in .cache can be ignored
|
||||||
|
*.[Cc]ache
|
||||||
|
# but keep track of directories ending in .cache
|
||||||
|
!*.[Cc]ache/
|
||||||
|
|
||||||
|
# Others
|
||||||
|
ClientBin/
|
||||||
|
~$*
|
||||||
|
*~
|
||||||
|
*.dbmdl
|
||||||
|
*.dbproj.schemaview
|
||||||
|
*.jfm
|
||||||
|
*.pfx
|
||||||
|
*.publishsettings
|
||||||
|
node_modules/
|
||||||
|
orleans.codegen.cs
|
||||||
|
|
||||||
|
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
||||||
|
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
||||||
|
#bower_components/
|
||||||
|
|
||||||
|
# RIA/Silverlight projects
|
||||||
|
Generated_Code/
|
||||||
|
|
||||||
|
# Backup & report files from converting an old project file
|
||||||
|
# to a newer Visual Studio version. Backup files are not needed,
|
||||||
|
# because we have git ;-)
|
||||||
|
_UpgradeReport_Files/
|
||||||
|
Backup*/
|
||||||
|
UpgradeLog*.XML
|
||||||
|
UpgradeLog*.htm
|
||||||
|
|
||||||
|
# SQL Server files
|
||||||
|
*.mdf
|
||||||
|
*.ldf
|
||||||
|
|
||||||
|
# Business Intelligence projects
|
||||||
|
*.rdl.data
|
||||||
|
*.bim.layout
|
||||||
|
*.bim_*.settings
|
||||||
|
|
||||||
|
# Microsoft Fakes
|
||||||
|
FakesAssemblies/
|
||||||
|
|
||||||
|
# GhostDoc plugin setting file
|
||||||
|
*.GhostDoc.xml
|
||||||
|
|
||||||
|
# Node.js Tools for Visual Studio
|
||||||
|
.ntvs_analysis.dat
|
||||||
|
|
||||||
|
# Visual Studio 6 build log
|
||||||
|
*.plg
|
||||||
|
|
||||||
|
# Visual Studio 6 workspace options file
|
||||||
|
*.opt
|
||||||
|
|
||||||
|
# Visual Studio LightSwitch build output
|
||||||
|
**/*.HTMLClient/GeneratedArtifacts
|
||||||
|
**/*.DesktopClient/GeneratedArtifacts
|
||||||
|
**/*.DesktopClient/ModelManifest.xml
|
||||||
|
**/*.Server/GeneratedArtifacts
|
||||||
|
**/*.Server/ModelManifest.xml
|
||||||
|
_Pvt_Extensions
|
||||||
|
|
||||||
|
# Paket dependency manager
|
||||||
|
.paket/paket.exe
|
||||||
|
paket-files/
|
||||||
|
|
||||||
|
# FAKE - F# Make
|
||||||
|
.fake/
|
||||||
|
|
||||||
|
# JetBrains Rider
|
||||||
|
.idea/
|
||||||
|
*.sln.iml
|
||||||
|
|
||||||
|
# CodeRush
|
||||||
|
.cr/
|
||||||
|
|
||||||
|
# Python Tools for Visual Studio (PTVS)
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
|
||||||
|
# Cake - Uncomment if you are using it
|
||||||
|
# tools/
|
||||||
|
|
||||||
|
# End of https://www.toptal.com/developers/gitignore/api/aspnetcore
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
|
@ -1,92 +0,0 @@
|
||||||
{
|
|
||||||
"Version": 1,
|
|
||||||
"WorkspaceRootPath": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\",
|
|
||||||
"Documents": [
|
|
||||||
{
|
|
||||||
"AbsoluteMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\integracion_dga\\appsettings.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}",
|
|
||||||
"RelativeMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|solutionrelative:integracion_dga\\appsettings.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AbsoluteMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\integracion_dga\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
|
||||||
"RelativeMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|solutionrelative:integracion_dga\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AbsoluteMoniker": "D:0:0:{E7F63FE5-0448-4903-9247-D57A4BCB6A01}|DAS\\DAS.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\das\\registrarmedicion.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
|
||||||
"RelativeMoniker": "D:0:0:{E7F63FE5-0448-4903-9247-D57A4BCB6A01}|DAS\\DAS.csproj|solutionrelative:das\\registrarmedicion.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AbsoluteMoniker": "D:0:0:{D2051D35-AE15-42FF-985B-F2CA99312901}|BLL\\BLL.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\bll\\enviodga.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
|
||||||
"RelativeMoniker": "D:0:0:{D2051D35-AE15-42FF-985B-F2CA99312901}|BLL\\BLL.csproj|solutionrelative:bll\\enviodga.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"DocumentGroupContainers": [
|
|
||||||
{
|
|
||||||
"Orientation": 0,
|
|
||||||
"VerticalTabListWidth": 256,
|
|
||||||
"DocumentGroups": [
|
|
||||||
{
|
|
||||||
"DockedWidth": 200,
|
|
||||||
"SelectedChildIndex": 0,
|
|
||||||
"Children": [
|
|
||||||
{
|
|
||||||
"$type": "Document",
|
|
||||||
"DocumentIndex": 0,
|
|
||||||
"Title": "appsettings.json",
|
|
||||||
"DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\appsettings.json",
|
|
||||||
"RelativeDocumentMoniker": "Integracion_DGA\\appsettings.json",
|
|
||||||
"ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\appsettings.json",
|
|
||||||
"RelativeToolTip": "Integracion_DGA\\appsettings.json",
|
|
||||||
"ViewState": "AgIAAAAAAAAAAAAAAAAAAAsAAAAbAAAAAAAAAA==",
|
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.001642|",
|
|
||||||
"WhenOpened": "2025-06-24T19:39:04.739Z",
|
|
||||||
"IsPinned": true,
|
|
||||||
"EditorCaption": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"$type": "Document",
|
|
||||||
"DocumentIndex": 1,
|
|
||||||
"Title": "Program.cs",
|
|
||||||
"DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\Program.cs",
|
|
||||||
"RelativeDocumentMoniker": "Integracion_DGA\\Program.cs",
|
|
||||||
"ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\Program.cs",
|
|
||||||
"RelativeToolTip": "Integracion_DGA\\Program.cs",
|
|
||||||
"ViewState": "AgIAAAYAAAAAAAAAAAAAABUAAAA8AAAAAAAAAA==",
|
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
|
||||||
"WhenOpened": "2025-06-24T18:18:50.842Z",
|
|
||||||
"IsPinned": true,
|
|
||||||
"EditorCaption": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"$type": "Document",
|
|
||||||
"DocumentIndex": 3,
|
|
||||||
"Title": "EnvioDGA.cs",
|
|
||||||
"DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\BLL\\EnvioDGA.cs",
|
|
||||||
"RelativeDocumentMoniker": "BLL\\EnvioDGA.cs",
|
|
||||||
"ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\BLL\\EnvioDGA.cs",
|
|
||||||
"RelativeToolTip": "BLL\\EnvioDGA.cs",
|
|
||||||
"ViewState": "AgIAACEAAAAAAAAAAAApwDcAAAAtAAAAAAAAAA==",
|
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
|
||||||
"WhenOpened": "2025-06-24T19:48:45.475Z",
|
|
||||||
"IsPinned": true,
|
|
||||||
"EditorCaption": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"$type": "Document",
|
|
||||||
"DocumentIndex": 2,
|
|
||||||
"Title": "RegistrarMedicion.cs",
|
|
||||||
"DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\RegistrarMedicion.cs",
|
|
||||||
"RelativeDocumentMoniker": "DAS\\RegistrarMedicion.cs",
|
|
||||||
"ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\RegistrarMedicion.cs",
|
|
||||||
"RelativeToolTip": "DAS\\RegistrarMedicion.cs",
|
|
||||||
"ViewState": "AgIAAAgAAAAAAAAAAAAQwBYAAAAtAAAAAAAAAA==",
|
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
|
||||||
"WhenOpened": "2025-06-24T19:48:30.955Z",
|
|
||||||
"IsPinned": true,
|
|
||||||
"EditorCaption": ""
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,92 +0,0 @@
|
||||||
{
|
|
||||||
"Version": 1,
|
|
||||||
"WorkspaceRootPath": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\",
|
|
||||||
"Documents": [
|
|
||||||
{
|
|
||||||
"AbsoluteMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\integracion_dga\\appsettings.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}",
|
|
||||||
"RelativeMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|solutionrelative:integracion_dga\\appsettings.json||{90A6B3A7-C1A3-4009-A288-E2FF89E96FA0}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AbsoluteMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\integracion_dga\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
|
||||||
"RelativeMoniker": "D:0:0:{F14D61AA-FE11-4055-8DE7-898A1C1F9DAF}|Integracion_DGA\\Integracion_DGA.csproj|solutionrelative:integracion_dga\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AbsoluteMoniker": "D:0:0:{E7F63FE5-0448-4903-9247-D57A4BCB6A01}|DAS\\DAS.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\das\\registrarmedicion.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
|
||||||
"RelativeMoniker": "D:0:0:{E7F63FE5-0448-4903-9247-D57A4BCB6A01}|DAS\\DAS.csproj|solutionrelative:das\\registrarmedicion.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"AbsoluteMoniker": "D:0:0:{D2051D35-AE15-42FF-985B-F2CA99312901}|BLL\\BLL.csproj|c:\\users\\bastian castro\\documents\\integracion_dga\\bll\\enviodga.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}",
|
|
||||||
"RelativeMoniker": "D:0:0:{D2051D35-AE15-42FF-985B-F2CA99312901}|BLL\\BLL.csproj|solutionrelative:bll\\enviodga.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"DocumentGroupContainers": [
|
|
||||||
{
|
|
||||||
"Orientation": 0,
|
|
||||||
"VerticalTabListWidth": 256,
|
|
||||||
"DocumentGroups": [
|
|
||||||
{
|
|
||||||
"DockedWidth": 200,
|
|
||||||
"SelectedChildIndex": 0,
|
|
||||||
"Children": [
|
|
||||||
{
|
|
||||||
"$type": "Document",
|
|
||||||
"DocumentIndex": 0,
|
|
||||||
"Title": "appsettings.json",
|
|
||||||
"DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\appsettings.json",
|
|
||||||
"RelativeDocumentMoniker": "Integracion_DGA\\appsettings.json",
|
|
||||||
"ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\appsettings.json",
|
|
||||||
"RelativeToolTip": "Integracion_DGA\\appsettings.json",
|
|
||||||
"ViewState": "AgIAAAAAAAAAAAAAAAAAAAsAAAAbAAAAAAAAAA==",
|
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.001642|",
|
|
||||||
"WhenOpened": "2025-06-24T19:39:04.739Z",
|
|
||||||
"IsPinned": true,
|
|
||||||
"EditorCaption": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"$type": "Document",
|
|
||||||
"DocumentIndex": 1,
|
|
||||||
"Title": "Program.cs",
|
|
||||||
"DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\Program.cs",
|
|
||||||
"RelativeDocumentMoniker": "Integracion_DGA\\Program.cs",
|
|
||||||
"ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\Integracion_DGA\\Program.cs",
|
|
||||||
"RelativeToolTip": "Integracion_DGA\\Program.cs",
|
|
||||||
"ViewState": "AgIAAAYAAAAAAAAAAAAAABUAAAA8AAAAAAAAAA==",
|
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
|
||||||
"WhenOpened": "2025-06-24T18:18:50.842Z",
|
|
||||||
"IsPinned": true,
|
|
||||||
"EditorCaption": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"$type": "Document",
|
|
||||||
"DocumentIndex": 3,
|
|
||||||
"Title": "EnvioDGA.cs",
|
|
||||||
"DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\BLL\\EnvioDGA.cs",
|
|
||||||
"RelativeDocumentMoniker": "BLL\\EnvioDGA.cs",
|
|
||||||
"ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\BLL\\EnvioDGA.cs",
|
|
||||||
"RelativeToolTip": "BLL\\EnvioDGA.cs",
|
|
||||||
"ViewState": "AgIAACEAAAAAAAAAAAApwDcAAAAtAAAAAAAAAA==",
|
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
|
||||||
"WhenOpened": "2025-06-24T19:48:45.475Z",
|
|
||||||
"IsPinned": true,
|
|
||||||
"EditorCaption": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"$type": "Document",
|
|
||||||
"DocumentIndex": 2,
|
|
||||||
"Title": "RegistrarMedicion.cs",
|
|
||||||
"DocumentMoniker": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\RegistrarMedicion.cs",
|
|
||||||
"RelativeDocumentMoniker": "DAS\\RegistrarMedicion.cs",
|
|
||||||
"ToolTip": "C:\\Users\\Bastian Castro\\Documents\\Integracion_DGA\\DAS\\RegistrarMedicion.cs",
|
|
||||||
"RelativeToolTip": "DAS\\RegistrarMedicion.cs",
|
|
||||||
"ViewState": "AgIAAAgAAAAAAAAAAAAQwBYAAAAtAAAAAAAAAA==",
|
|
||||||
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
|
|
||||||
"WhenOpened": "2025-06-24T19:48:30.955Z",
|
|
||||||
"IsPinned": true,
|
|
||||||
"EditorCaption": ""
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Add table
Reference in a new issue