add cleanup

This commit is contained in:
Ayan Poddar 2025-06-24 10:24:34 +05:30
parent ad2e8beaed
commit 19974006d7
66 changed files with 265 additions and 2629 deletions

264
.gitignore vendored Normal file
View File

@ -0,0 +1,264 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
# Visual Studio 2015 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
# 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
artifacts/
*_i.c
*_p.c
*_i.h
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc
# Chutzpah Test files
_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
# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*
# MightyMoose
*.mm.*
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
*.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
# ABP Studio
**/.abpstudio/
# Use abp install-libs to restore.
**/wwwroot/libs/*
# IdentityServer temp files
tempkey.rsa
tempkey.jwk
.idea/*

3
App.cs
View File

@ -32,8 +32,7 @@ internal class App
private async Task UpdateAppSettingFile(string file)
{
var content = JObject.Parse(await File.ReadAllTextAsync(file));
var jsonReader = content["ConnectionStrings"] as JObject;
if (jsonReader == null)
if (content["ConnectionStrings"] is not JObject jsonReader)
return;
foreach (var item in jsonReader.Properties())
{

Binary file not shown.

Binary file not shown.

View File

@ -1,651 +0,0 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v9.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v9.0": {
"Vault.Demo.hashicorp.Console/1.0.0": {
"dependencies": {
"Json.Net": "1.0.33",
"Microsoft.Extensions.Hosting": "9.0.6",
"Newtonsoft.Json": "13.0.3",
"VaultSharp": "1.17.5.1"
},
"runtime": {
"Vault.Demo.hashicorp.Console.dll": {}
}
},
"Json.Net/1.0.33": {
"runtime": {
"lib/netstandard2.0/Json.Net.dll": {
"assemblyVersion": "1.0.33.1",
"fileVersion": "1.0.33.1"
}
}
},
"Microsoft.Extensions.Configuration/9.0.6": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
"Microsoft.Extensions.Primitives": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Configuration.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Configuration.Abstractions/9.0.6": {
"dependencies": {
"Microsoft.Extensions.Primitives": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Configuration.Binder/9.0.6": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Configuration.CommandLine/9.0.6": {
"dependencies": {
"Microsoft.Extensions.Configuration": "9.0.6",
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.6": {
"dependencies": {
"Microsoft.Extensions.Configuration": "9.0.6",
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/9.0.6": {
"dependencies": {
"Microsoft.Extensions.Configuration": "9.0.6",
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.6",
"Microsoft.Extensions.FileProviders.Physical": "9.0.6",
"Microsoft.Extensions.Primitives": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Configuration.Json/9.0.6": {
"dependencies": {
"Microsoft.Extensions.Configuration": "9.0.6",
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.6",
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Configuration.Json.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Configuration.UserSecrets/9.0.6": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
"Microsoft.Extensions.Configuration.Json": "9.0.6",
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.6",
"Microsoft.Extensions.FileProviders.Physical": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.DependencyInjection/9.0.6": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.6": {
"runtime": {
"lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Diagnostics/9.0.6": {
"dependencies": {
"Microsoft.Extensions.Configuration": "9.0.6",
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.6",
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Diagnostics.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.6": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
"Microsoft.Extensions.Options": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/9.0.6": {
"dependencies": {
"Microsoft.Extensions.Primitives": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.FileProviders.Physical/9.0.6": {
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.6",
"Microsoft.Extensions.FileSystemGlobbing": "9.0.6",
"Microsoft.Extensions.Primitives": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.FileSystemGlobbing/9.0.6": {
"runtime": {
"lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Hosting/9.0.6": {
"dependencies": {
"Microsoft.Extensions.Configuration": "9.0.6",
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
"Microsoft.Extensions.Configuration.Binder": "9.0.6",
"Microsoft.Extensions.Configuration.CommandLine": "9.0.6",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.6",
"Microsoft.Extensions.Configuration.FileExtensions": "9.0.6",
"Microsoft.Extensions.Configuration.Json": "9.0.6",
"Microsoft.Extensions.Configuration.UserSecrets": "9.0.6",
"Microsoft.Extensions.DependencyInjection": "9.0.6",
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
"Microsoft.Extensions.Diagnostics": "9.0.6",
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.6",
"Microsoft.Extensions.FileProviders.Physical": "9.0.6",
"Microsoft.Extensions.Hosting.Abstractions": "9.0.6",
"Microsoft.Extensions.Logging": "9.0.6",
"Microsoft.Extensions.Logging.Abstractions": "9.0.6",
"Microsoft.Extensions.Logging.Configuration": "9.0.6",
"Microsoft.Extensions.Logging.Console": "9.0.6",
"Microsoft.Extensions.Logging.Debug": "9.0.6",
"Microsoft.Extensions.Logging.EventLog": "9.0.6",
"Microsoft.Extensions.Logging.EventSource": "9.0.6",
"Microsoft.Extensions.Options": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Hosting.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Hosting.Abstractions/9.0.6": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
"Microsoft.Extensions.Diagnostics.Abstractions": "9.0.6",
"Microsoft.Extensions.FileProviders.Abstractions": "9.0.6",
"Microsoft.Extensions.Logging.Abstractions": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Logging/9.0.6": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection": "9.0.6",
"Microsoft.Extensions.Logging.Abstractions": "9.0.6",
"Microsoft.Extensions.Options": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Logging.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Logging.Abstractions/9.0.6": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Logging.Configuration/9.0.6": {
"dependencies": {
"Microsoft.Extensions.Configuration": "9.0.6",
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
"Microsoft.Extensions.Configuration.Binder": "9.0.6",
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
"Microsoft.Extensions.Logging": "9.0.6",
"Microsoft.Extensions.Logging.Abstractions": "9.0.6",
"Microsoft.Extensions.Options": "9.0.6",
"Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Logging.Console/9.0.6": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
"Microsoft.Extensions.Logging": "9.0.6",
"Microsoft.Extensions.Logging.Abstractions": "9.0.6",
"Microsoft.Extensions.Logging.Configuration": "9.0.6",
"Microsoft.Extensions.Options": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Logging.Console.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Logging.Debug/9.0.6": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
"Microsoft.Extensions.Logging": "9.0.6",
"Microsoft.Extensions.Logging.Abstractions": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Logging.Debug.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Logging.EventLog/9.0.6": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
"Microsoft.Extensions.Logging": "9.0.6",
"Microsoft.Extensions.Logging.Abstractions": "9.0.6",
"Microsoft.Extensions.Options": "9.0.6",
"System.Diagnostics.EventLog": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Logging.EventLog.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Logging.EventSource/9.0.6": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
"Microsoft.Extensions.Logging": "9.0.6",
"Microsoft.Extensions.Logging.Abstractions": "9.0.6",
"Microsoft.Extensions.Options": "9.0.6",
"Microsoft.Extensions.Primitives": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Logging.EventSource.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Options/9.0.6": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
"Microsoft.Extensions.Primitives": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Options.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.6": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "9.0.6",
"Microsoft.Extensions.Configuration.Binder": "9.0.6",
"Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.6",
"Microsoft.Extensions.Options": "9.0.6",
"Microsoft.Extensions.Primitives": "9.0.6"
},
"runtime": {
"lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Microsoft.Extensions.Primitives/9.0.6": {
"runtime": {
"lib/net9.0/Microsoft.Extensions.Primitives.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"Newtonsoft.Json/13.0.3": {
"runtime": {
"lib/net6.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.3.27908"
}
}
},
"System.Diagnostics.EventLog/9.0.6": {
"runtime": {
"lib/net9.0/System.Diagnostics.EventLog.dll": {
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
},
"runtimeTargets": {
"runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "9.0.0.0",
"fileVersion": "0.0.0.0"
},
"runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "9.0.0.0",
"fileVersion": "9.0.625.26613"
}
}
},
"VaultSharp/1.17.5.1": {
"runtime": {
"lib/net8.0/VaultSharp.dll": {
"assemblyVersion": "1.17.5.1",
"fileVersion": "1.17.5.1"
}
}
}
}
},
"libraries": {
"Vault.Demo.hashicorp.Console/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Json.Net/1.0.33": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5tE+db6BqhRAvITIVBeRsQorLGshPExfm4FmMRvWWAfs4RxeTbFFj2PIEybwmMW0qR30HKkXDYhq0YkDK2Jtxw==",
"path": "json.net/1.0.33",
"hashPath": "json.net.1.0.33.nupkg.sha512"
},
"Microsoft.Extensions.Configuration/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VWB5jdkxHsRiuoniTqwOL32R4OWyp5If/bAucLjRJczRVNcwb8iCXKLjn3Inv8fv+jHMVMnvQLg7xhSys+y5PA==",
"path": "microsoft.extensions.configuration/9.0.6",
"hashPath": "microsoft.extensions.configuration.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3GgMIi2jP8g1fBW93Z9b9Unamc0SIsgyhiCmC91gq4loTixK9vQMuxxUsfJ1kRGwn+/FqLKwOHqmn0oYWn3Fvw==",
"path": "microsoft.extensions.configuration.abstractions/9.0.6",
"hashPath": "microsoft.extensions.configuration.abstractions.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Binder/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Opl/7SIrwDy9WjHn/vU2thQ8CUtrIWHLr+89I7/0VYNEJQvpL24zvqYrh83cH38RzNKHji0WGVkCVP6HJChVVw==",
"path": "microsoft.extensions.configuration.binder/9.0.6",
"hashPath": "microsoft.extensions.configuration.binder.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.CommandLine/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-DC5I4Y1nK35jY4piDqQCzWjDXzT6ECMctBAxgAJoc6pn0k6uyxcDeOuVDRooFui/N65ptn9xT5mk9eO4mSTj/g==",
"path": "microsoft.extensions.configuration.commandline/9.0.6",
"hashPath": "microsoft.extensions.configuration.commandline.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-RGYG2JBak9lf2rIPiZUVmWjUqoxaHPy3XPhPsJyIQ8QqK47rKvJz7jxVYefTnYdM5LTEiGFBdC7v3+SiosvmkQ==",
"path": "microsoft.extensions.configuration.environmentvariables/9.0.6",
"hashPath": "microsoft.extensions.configuration.environmentvariables.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.FileExtensions/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-pCEueasI5JhJ24KYzMFxtG40zyLnWpcQYawpARh9FNq9XbWozuWgexmdkPa8p8YoVNlpi3ecKfcjfoRMkKAufw==",
"path": "microsoft.extensions.configuration.fileextensions/9.0.6",
"hashPath": "microsoft.extensions.configuration.fileextensions.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Json/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-N0dgOYQ9tDzJouL9Tyx2dgMCcHV2pBaY8yVtorbDqYYwiDRS2zd1TbhTA2FMHqXF3SMjBoO+gONZcDoA79gdSA==",
"path": "microsoft.extensions.configuration.json/9.0.6",
"hashPath": "microsoft.extensions.configuration.json.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.UserSecrets/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-0ZZMzdvNwIS0f09S0IcaEbKFm+Xc41vRROsA/soeKEpzRISTDdiVwGlzdldbXEsuPjNVvNHyvIP8YW2hfIig0w==",
"path": "microsoft.extensions.configuration.usersecrets/9.0.6",
"hashPath": "microsoft.extensions.configuration.usersecrets.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-vS65HMo5RS10DD543fknsyVDxihMcVxVn3/hNaILgBxWYnOLxWIeCIO9X0QFuCvPRNjClvXe9Aj8KaQNx7vFkQ==",
"path": "microsoft.extensions.dependencyinjection/9.0.6",
"hashPath": "microsoft.extensions.dependencyinjection.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-0Zn6nR/6g+90MxskZyOOMPQvnPnrrGu6bytPwkV+azDcTtCSuQ1+GJUrg8Klmnrjk1i6zMpw2lXijl+tw7Q3kA==",
"path": "microsoft.extensions.dependencyinjection.abstractions/9.0.6",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Diagnostics/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mIqCzZseDK9SqTRy4LxtjLwjlUu6aH5UdA6j0vgVER14yki9oRqLF+SmBiF6OlwsBSeL6dMQ8dmq02JMeE2puQ==",
"path": "microsoft.extensions.diagnostics/9.0.6",
"hashPath": "microsoft.extensions.diagnostics.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Diagnostics.Abstractions/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GIoXX7VDcTEsNM6yvffTBaOwnPQELGI5dzExR7L2O7AUkDsHBYIZawUbuwfq3cYzz8dIAAJotQYJMzH7qy27Ng==",
"path": "microsoft.extensions.diagnostics.abstractions/9.0.6",
"hashPath": "microsoft.extensions.diagnostics.abstractions.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Abstractions/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-q9FPkSGVA9ipI255p3PBAvWNXas5Tzjyp/DwYSwT+46mIFw9fWZahsF6vHpoxLt5/vtANotH2sAm7HunuFIx9g==",
"path": "microsoft.extensions.fileproviders.abstractions/9.0.6",
"hashPath": "microsoft.extensions.fileproviders.abstractions.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Physical/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-l+dFA0NRl90vSIiJNy5d7V0kpTEOWHTqbgoWYzlTwF5uiM5sWJ953haaELKE05jkyJdnemVTnqjrlgo4wo7oyg==",
"path": "microsoft.extensions.fileproviders.physical/9.0.6",
"hashPath": "microsoft.extensions.fileproviders.physical.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.FileSystemGlobbing/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1HJCAbwukNEoYbHgHbKHmenU0V/0huw8+i7Qtf5rLUG1E+3kEwRJQxpwD3wbTEagIgPSQisNgJTvmUX9yYVc6g==",
"path": "microsoft.extensions.filesystemglobbing/9.0.6",
"hashPath": "microsoft.extensions.filesystemglobbing.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Hosting/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Iu1UyXUnjMhoOwThKM0kCyjgWqqQnuujsbPMnF44ITUbmETT7RAVlozNgev2L/damwNoPZKpmwArRKBy2IOAZg==",
"path": "microsoft.extensions.hosting/9.0.6",
"hashPath": "microsoft.extensions.hosting.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Hosting.Abstractions/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-G9T95JbcG/wQpeVIzg0IMwxI+uTywDmbxWUWN2P0mdna35rmuTqgTrZ4SU5rcfUT3EJfbI9N4K8UyCAAc6QK8Q==",
"path": "microsoft.extensions.hosting.abstractions/9.0.6",
"hashPath": "microsoft.extensions.hosting.abstractions.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Logging/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-XBzjitTFaQhF8EbJ645vblZezV1p52ePTxKHoVkRidHF11Xkjxg94qr0Rvp2qyxK2vBJ4OIZ41NB15YUyxTGMQ==",
"path": "microsoft.extensions.logging/9.0.6",
"hashPath": "microsoft.extensions.logging.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Abstractions/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-LFnyBNK7WtFmKdnHu3v0HOYQ8BcjYuy0jdC9pgCJ/rbLKoJEG9/dBzSKMEeeWDbDeoWS0TIxOC8a9CM5ufca3A==",
"path": "microsoft.extensions.logging.abstractions/9.0.6",
"hashPath": "microsoft.extensions.logging.abstractions.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Configuration/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-lCgpxE5r6v43SB40/yUVnSWZUUqUZF5iUWizhkx4gqvq0L0rMw5g8adWKGO7sfIaSbCiU0et85sDQWswhLcceg==",
"path": "microsoft.extensions.logging.configuration/9.0.6",
"hashPath": "microsoft.extensions.logging.configuration.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Console/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-L1O0M3MrqGlkrPYMLzcCphQpCG0lSHfTSPrm1otALNBzTPiO8rxxkjhBIIa2onKv92UP30Y4QaiigVMTx8YcxQ==",
"path": "microsoft.extensions.logging.console/9.0.6",
"hashPath": "microsoft.extensions.logging.console.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Debug/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-u21euQdOjaEwmlnnB1Zd4XGqOmWI8FkoGeUleV7n4BZ8HPQC/jrYzX/B5Cz3uI/FXjd//W88clPfkGIbSif7Jw==",
"path": "microsoft.extensions.logging.debug/9.0.6",
"hashPath": "microsoft.extensions.logging.debug.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Logging.EventLog/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-IyyGy7xNJAjdlFYXc7SZ7kS3CWd3Ma4hing9QGtzXi+LXm8RWCEXdKA1cPx5AeFmdg3rVG+ADGIn44K14O+vFA==",
"path": "microsoft.extensions.logging.eventlog/9.0.6",
"hashPath": "microsoft.extensions.logging.eventlog.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Logging.EventSource/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ayCRr/8ON3aINH81ak9l3vLAF/0pV/xrfChCbIlT2YnHAd4TYBWLcWhzbJWwPFV4XmJFrx/z8oq+gZzIc/74OA==",
"path": "microsoft.extensions.logging.eventsource/9.0.6",
"hashPath": "microsoft.extensions.logging.eventsource.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Options/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-wUPhNM1zsI58Dy10xRdF2+pnsisiUuETg5ZBncyAEEUm/CQ9Q1vmivyUWH8RDbAlqyixf2dJNQ2XZb7HsKUEQw==",
"path": "microsoft.extensions.options/9.0.6",
"hashPath": "microsoft.extensions.options.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Options.ConfigurationExtensions/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2lnp8nrvfzyp+5zvfeULm/hkZsDsKkl2ziBt5T8EZKoON5q+XRpRLoWcSPo8mP7GNZXpxKMBVjFNIZNbBIcnRw==",
"path": "microsoft.extensions.options.configurationextensions/9.0.6",
"hashPath": "microsoft.extensions.options.configurationextensions.9.0.6.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BHniU24QV67qp1pJknqYSofAPYGmijGI8D+ci9yfw33iuFdyOeB9lWTg78ThyYLyQwZw3s0vZ36VMb0MqbUuLw==",
"path": "microsoft.extensions.primitives/9.0.6",
"hashPath": "microsoft.extensions.primitives.9.0.6.nupkg.sha512"
},
"Newtonsoft.Json/13.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
"path": "newtonsoft.json/13.0.3",
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
},
"System.Diagnostics.EventLog/9.0.6": {
"type": "package",
"serviceable": true,
"sha512": "sha512-lum+Dv+8S4gqN5H1C576UcQe0M2buoRjEUVs4TctXRSWjBH3ay3w2KyQrOo1yPdRs1I+xK69STz+4mjIisFI5w==",
"path": "system.diagnostics.eventlog/9.0.6",
"hashPath": "system.diagnostics.eventlog.9.0.6.nupkg.sha512"
},
"VaultSharp/1.17.5.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1O/F+AQCkyK4K709pBDYEbDDfJ12OlaE5lnOs9dffq+KxqrnPxh8FIdQtEst9yBJmC7I0BptftzTJyRSwhZR/A==",
"path": "vaultsharp/1.17.5.1",
"hashPath": "vaultsharp.1.17.5.1.nupkg.sha512"
}
}
}

View File

@ -1,12 +0,0 @@
{
"runtimeOptions": {
"tfm": "net9.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "9.0.0"
},
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

Binary file not shown.

View File

@ -1,8 +0,0 @@
{
"vaultsetting": {
"token": "hvs.hAMzTj712JyYxscMP7JussQi",
"url": "https://vault.testsvk.site:8200",
"path": "check/value",
"mountPoint": "kv"
}
}

View File

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

View File

@ -1,22 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// 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("Vault.Demo.hashicorp.Console")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+68543df351402cd4edd2e0931ad30d12f91d1e06")]
[assembly: System.Reflection.AssemblyProductAttribute("Vault.Demo.hashicorp.Console")]
[assembly: System.Reflection.AssemblyTitleAttribute("Vault.Demo.hashicorp.Console")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@ -1 +0,0 @@
aa45860ddd933a0793d80400f5cabc163a673ea9c5f28cfba3345c9733abde4d

View File

@ -1,15 +0,0 @@
is_global = true
build_property.TargetFramework = net9.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Vault.Demo.hashicorp.Console
build_property.ProjectDir = C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 9.0
build_property.EnableCodeStyleSeverity =

View File

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

@ -1 +0,0 @@
1d8856716917113173c19165977aadccfd0bde4074d1dd15f03bd13a87112b62

View File

@ -1,50 +0,0 @@
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Vault.Demo.hashicorp.Console.exe
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\appsettings.json
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Vault.Demo.hashicorp.Console.deps.json
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Vault.Demo.hashicorp.Console.runtimeconfig.json
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Vault.Demo.hashicorp.Console.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Vault.Demo.hashicorp.Console.pdb
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Configuration.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Configuration.Abstractions.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Configuration.Binder.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Configuration.CommandLine.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Configuration.FileExtensions.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Configuration.Json.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Configuration.UserSecrets.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Diagnostics.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Diagnostics.Abstractions.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.FileProviders.Abstractions.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.FileProviders.Physical.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.FileSystemGlobbing.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Hosting.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Hosting.Abstractions.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Logging.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Logging.Abstractions.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Logging.Configuration.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Logging.Console.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Logging.Debug.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Logging.EventLog.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Logging.EventSource.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Options.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Microsoft.Extensions.Primitives.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\System.Diagnostics.EventLog.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\VaultSharp.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\runtimes\win\lib\net9.0\System.Diagnostics.EventLog.Messages.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\runtimes\win\lib\net9.0\System.Diagnostics.EventLog.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\obj\Debug\net9.0\Vault.Demo.hashicorp.Console.csproj.AssemblyReference.cache
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\obj\Debug\net9.0\Vault.Demo.hashicorp.Console.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\obj\Debug\net9.0\Vault.Demo.hashicorp.Console.AssemblyInfoInputs.cache
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\obj\Debug\net9.0\Vault.Demo.hashicorp.Console.AssemblyInfo.cs
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\obj\Debug\net9.0\Vault.Demo.hashicorp.Console.csproj.CoreCompileInputs.cache
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\obj\Debug\net9.0\Vault.De.58231F3E.Up2Date
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\obj\Debug\net9.0\Vault.Demo.hashicorp.Console.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\obj\Debug\net9.0\refint\Vault.Demo.hashicorp.Console.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\obj\Debug\net9.0\Vault.Demo.hashicorp.Console.pdb
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\obj\Debug\net9.0\Vault.Demo.hashicorp.Console.genruntimeconfig.cache
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\obj\Debug\net9.0\ref\Vault.Demo.hashicorp.Console.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Json.Net.dll
C:\Users\SENTIENTGEEKS\Desktop\New_folder_(2)\Vault.Demo.hashicorp.Console\bin\Debug\net9.0\Newtonsoft.Json.dll

View File

@ -1 +0,0 @@
6d57c206e3ae31fdd507411119547887be1be011968a53cb3b72e5d6bf21716d

Binary file not shown.

View File

@ -1,92 +0,0 @@
{
"format": 1,
"restore": {
"C:\\Users\\SENTIENTGEEKS\\Desktop\\New_folder_(2)\\Vault.Demo.hashicorp.Console\\Vault.Demo.hashicorp.Console.csproj": {}
},
"projects": {
"C:\\Users\\SENTIENTGEEKS\\Desktop\\New_folder_(2)\\Vault.Demo.hashicorp.Console\\Vault.Demo.hashicorp.Console.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\SENTIENTGEEKS\\Desktop\\New_folder_(2)\\Vault.Demo.hashicorp.Console\\Vault.Demo.hashicorp.Console.csproj",
"projectName": "Vault.Demo.hashicorp.Console",
"projectPath": "C:\\Users\\SENTIENTGEEKS\\Desktop\\New_folder_(2)\\Vault.Demo.hashicorp.Console\\Vault.Demo.hashicorp.Console.csproj",
"packagesPath": "C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\",
"outputPath": "C:\\Users\\SENTIENTGEEKS\\Desktop\\New_folder_(2)\\Vault.Demo.hashicorp.Console\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\SENTIENTGEEKS\\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": [
"net9.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net9.0": {
"targetAlias": "net9.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
},
"SdkAnalysisLevel": "9.0.300"
},
"frameworks": {
"net9.0": {
"targetAlias": "net9.0",
"dependencies": {
"Json.Net": {
"target": "Package",
"version": "[1.0.33, )"
},
"Microsoft.Extensions.Hosting": {
"target": "Package",
"version": "[9.0.6, )"
},
"Newtonsoft.Json": {
"target": "Package",
"version": "[13.0.3, )"
},
"VaultSharp": {
"target": "Package",
"version": "[1.17.5.1, )"
}
},
"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"
}
}
}
}
}

View File

@ -1,19 +0,0 @@
<?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\SENTIENTGEEKS\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\SENTIENTGEEKS\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets\9.0.6\buildTransitive\net8.0\Microsoft.Extensions.Configuration.UserSecrets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets\9.0.6\buildTransitive\net8.0\Microsoft.Extensions.Configuration.UserSecrets.props')" />
</ImportGroup>
</Project>

View File

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options\9.0.6\buildTransitive\net8.0\Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options\9.0.6\buildTransitive\net8.0\Microsoft.Extensions.Options.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.binder\9.0.6\buildTransitive\netstandard2.0\Microsoft.Extensions.Configuration.Binder.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.binder\9.0.6\buildTransitive\netstandard2.0\Microsoft.Extensions.Configuration.Binder.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\9.0.6\buildTransitive\net8.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\9.0.6\buildTransitive\net8.0\Microsoft.Extensions.Logging.Abstractions.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets\9.0.6\buildTransitive\net8.0\Microsoft.Extensions.Configuration.UserSecrets.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets\9.0.6\buildTransitive\net8.0\Microsoft.Extensions.Configuration.UserSecrets.targets')" />
</ImportGroup>
</Project>

File diff suppressed because it is too large Load Diff

View File

@ -1,40 +0,0 @@
{
"version": 2,
"dgSpecHash": "nSBK8OQliC4=",
"success": true,
"projectFilePath": "C:\\Users\\SENTIENTGEEKS\\Desktop\\New_folder_(2)\\Vault.Demo.hashicorp.Console\\Vault.Demo.hashicorp.Console.csproj",
"expectedPackageFiles": [
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\json.net\\1.0.33\\json.net.1.0.33.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.configuration\\9.0.6\\microsoft.extensions.configuration.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.6\\microsoft.extensions.configuration.abstractions.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.configuration.binder\\9.0.6\\microsoft.extensions.configuration.binder.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\9.0.6\\microsoft.extensions.configuration.commandline.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\9.0.6\\microsoft.extensions.configuration.environmentvariables.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\9.0.6\\microsoft.extensions.configuration.fileextensions.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.configuration.json\\9.0.6\\microsoft.extensions.configuration.json.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\9.0.6\\microsoft.extensions.configuration.usersecrets.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.6\\microsoft.extensions.dependencyinjection.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.6\\microsoft.extensions.dependencyinjection.abstractions.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.diagnostics\\9.0.6\\microsoft.extensions.diagnostics.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.diagnostics.abstractions\\9.0.6\\microsoft.extensions.diagnostics.abstractions.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\9.0.6\\microsoft.extensions.fileproviders.abstractions.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\9.0.6\\microsoft.extensions.fileproviders.physical.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\9.0.6\\microsoft.extensions.filesystemglobbing.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.hosting\\9.0.6\\microsoft.extensions.hosting.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\9.0.6\\microsoft.extensions.hosting.abstractions.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.logging\\9.0.6\\microsoft.extensions.logging.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.6\\microsoft.extensions.logging.abstractions.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.logging.configuration\\9.0.6\\microsoft.extensions.logging.configuration.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.logging.console\\9.0.6\\microsoft.extensions.logging.console.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.logging.debug\\9.0.6\\microsoft.extensions.logging.debug.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.logging.eventlog\\9.0.6\\microsoft.extensions.logging.eventlog.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.logging.eventsource\\9.0.6\\microsoft.extensions.logging.eventsource.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.options\\9.0.6\\microsoft.extensions.options.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\9.0.6\\microsoft.extensions.options.configurationextensions.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.6\\microsoft.extensions.primitives.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\system.diagnostics.eventlog\\9.0.6\\system.diagnostics.eventlog.9.0.6.nupkg.sha512",
"C:\\Users\\SENTIENTGEEKS\\.nuget\\packages\\vaultsharp\\1.17.5.1\\vaultsharp.1.17.5.1.nupkg.sha512"
],
"logs": []
}

View File

@ -1 +0,0 @@
"restore":{"projectUniqueName":"C:\\Users\\SENTIENTGEEKS\\Desktop\\New_folder_(2)\\Vault.Demo.hashicorp.Console\\Vault.Demo.hashicorp.Console.csproj","projectName":"Vault.Demo.hashicorp.Console","projectPath":"C:\\Users\\SENTIENTGEEKS\\Desktop\\New_folder_(2)\\Vault.Demo.hashicorp.Console\\Vault.Demo.hashicorp.Console.csproj","outputPath":"C:\\Users\\SENTIENTGEEKS\\Desktop\\New_folder_(2)\\Vault.Demo.hashicorp.Console\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net9.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"C:\\Program Files\\dotnet\\library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"Json.Net":{"target":"Package","version":"[1.0.33, )"},"Microsoft.Extensions.Hosting":{"target":"Package","version":"[9.0.6, )"},"Newtonsoft.Json":{"target":"Package","version":"[13.0.3, )"},"VaultSharp":{"target":"Package","version":"[1.17.5.1, )"}},"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"}}

View File

@ -1 +0,0 @@
17506783451958922

View File

@ -1 +0,0 @@
17506783451958922