first commit
This commit is contained in:
commit
68543df351
Binary file not shown.
Binary file not shown.
BIN
.vs/Vault.Demo.hashicorp.Console/DesignTimeBuild/.dtbcache.v2
Normal file
BIN
.vs/Vault.Demo.hashicorp.Console/DesignTimeBuild/.dtbcache.v2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1011
.vs/Vault.Demo.hashicorp.Console/config/applicationhost.config
Normal file
1011
.vs/Vault.Demo.hashicorp.Console/config/applicationhost.config
Normal file
File diff suppressed because it is too large
Load Diff
BIN
.vs/Vault.Demo.hashicorp.Console/v17/.futdcache.v2
Normal file
BIN
.vs/Vault.Demo.hashicorp.Console/v17/.futdcache.v2
Normal file
Binary file not shown.
BIN
.vs/Vault.Demo.hashicorp.Console/v17/.suo
Normal file
BIN
.vs/Vault.Demo.hashicorp.Console/v17/.suo
Normal file
Binary file not shown.
44
App.cs
Normal file
44
App.cs
Normal file
@ -0,0 +1,44 @@
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Threading.Tasks;
|
||||
using Vault.Demo.hashicorp.Console.Helper;
|
||||
|
||||
namespace Vault.Demo.hashicorp.Console;
|
||||
internal class App
|
||||
{
|
||||
private readonly IConnectionStringProvider _connectionStringProvider;
|
||||
|
||||
public App(IConnectionStringProvider connectionStringProvider) =>
|
||||
this._connectionStringProvider = connectionStringProvider;
|
||||
|
||||
public async Task Run(string[] args)
|
||||
{
|
||||
var files = Directory.GetFiles(args[0], "appsettings*.json", SearchOption.AllDirectories);
|
||||
foreach (var file in files)
|
||||
{
|
||||
if (file.Contains("/bin/") || file.Contains("\\bin\\"))
|
||||
continue;
|
||||
|
||||
await UpdateAppSettingFile(file);
|
||||
}
|
||||
}
|
||||
|
||||
private async Task UpdateAppSettingFile(string file)
|
||||
{
|
||||
var content = JObject.Parse(File.ReadAllText(file));
|
||||
var jsonReader = content["ConnectionStrings"] as JObject;
|
||||
if (jsonReader == null)
|
||||
return;
|
||||
foreach (var item in jsonReader.Properties())
|
||||
{
|
||||
var value = await _connectionStringProvider.GetConnectionString(item.Name);
|
||||
jsonReader[item.Name] = value;
|
||||
}
|
||||
File.WriteAllText(file, jsonReader.ToString());
|
||||
}
|
||||
}
|
9
Handler/IValueClientProvider.cs
Normal file
9
Handler/IValueClientProvider.cs
Normal file
@ -0,0 +1,9 @@
|
||||
using VaultSharp;
|
||||
using VaultSharp.V1.Commons;
|
||||
|
||||
namespace Vault.Demo.hashicorp.Console.Handler;
|
||||
internal interface IValueClientProvider
|
||||
{
|
||||
IVaultClient GetValueClient();
|
||||
Task<Secret<SecretData>> GetSecret(IVaultClient client);
|
||||
}
|
41
Handler/ValueClientProvider.cs
Normal file
41
Handler/ValueClientProvider.cs
Normal file
@ -0,0 +1,41 @@
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using VaultSharp;
|
||||
using VaultSharp.V1.AuthMethods.Token;
|
||||
using VaultSharp.V1.Commons;
|
||||
|
||||
namespace Vault.Demo.hashicorp.Console.Handler;
|
||||
internal class ValueClientProvider : IValueClientProvider
|
||||
{
|
||||
private readonly IConfiguration _configuration;
|
||||
|
||||
public ValueClientProvider(IConfiguration configuration) =>
|
||||
this._configuration = configuration;
|
||||
|
||||
public IVaultClient GetValueClient()
|
||||
{
|
||||
var token = _configuration.GetValue<string>("vaultsetting:token")
|
||||
?? throw new ArgumentNullException("vaultsetting:token");
|
||||
var url = _configuration.GetValue<string>("vaultsetting:url")
|
||||
?? throw new ArgumentNullException("vaultsetting:url");
|
||||
var authMethod = new TokenAuthMethodInfo(token);
|
||||
var vaultClientSettings = new VaultClientSettings(url, authMethod);
|
||||
return new VaultClient(vaultClientSettings);
|
||||
}
|
||||
|
||||
public async Task<Secret<SecretData>> GetSecret(IVaultClient client)
|
||||
{
|
||||
var path = _configuration.GetValue<string>("vaultsetting:path")
|
||||
?? throw new ArgumentNullException("vaultsetting:path");
|
||||
var mountPoint = _configuration.GetValue<string>("vaultsetting:mountPoint")
|
||||
?? throw new ArgumentNullException("vaultsetting:mountPoint");
|
||||
var kv2Secret = await client.V1.Secrets.KeyValue.V2
|
||||
.ReadSecretAsync(path: path, mountPoint: mountPoint);
|
||||
|
||||
return kv2Secret;
|
||||
}
|
||||
}
|
28
Helper/ConnectionStringProvider.cs
Normal file
28
Helper/ConnectionStringProvider.cs
Normal file
@ -0,0 +1,28 @@
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Vault.Demo.hashicorp.Console.Handler;
|
||||
using VaultSharp;
|
||||
|
||||
namespace Vault.Demo.hashicorp.Console.Helper;
|
||||
internal class ConnectionStringProvider : IConnectionStringProvider
|
||||
{
|
||||
private readonly IValueClientProvider _vaultClient;
|
||||
|
||||
public ConnectionStringProvider(IValueClientProvider vaultClient) =>
|
||||
this._vaultClient = vaultClient;
|
||||
|
||||
public async Task<string> GetConnectionString(string key)
|
||||
{
|
||||
ArgumentException.ThrowIfNullOrWhiteSpace(key, nameof(key));
|
||||
var client = _vaultClient.GetValueClient();
|
||||
var secrate = await _vaultClient.GetSecret(client);
|
||||
|
||||
return secrate.Data.Data.TryGetValue(key, out var val)
|
||||
? val?.ToString() ?? throw new ArgumentException()
|
||||
: string.Empty;
|
||||
}
|
||||
}
|
11
Helper/IConnectionStringProvider.cs
Normal file
11
Helper/IConnectionStringProvider.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Vault.Demo.hashicorp.Console.Helper;
|
||||
internal interface IConnectionStringProvider
|
||||
{
|
||||
Task<string> GetConnectionString(string key);
|
||||
}
|
20
Program.cs
Normal file
20
Program.cs
Normal file
@ -0,0 +1,20 @@
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
using Vault.Demo.hashicorp.Console;
|
||||
using Vault.Demo.hashicorp.Console.Handler;
|
||||
using Vault.Demo.hashicorp.Console.Helper;
|
||||
using VaultSharp;
|
||||
|
||||
var builder = Host.CreateDefaultBuilder(args);
|
||||
builder.ConfigureServices(s =>
|
||||
{
|
||||
s.AddSingleton<IValueClientProvider, ValueClientProvider>();
|
||||
s.AddSingleton<IConnectionStringProvider, ConnectionStringProvider>();
|
||||
s.AddSingleton<App>();
|
||||
});
|
||||
|
||||
|
||||
using var app = builder.Build();
|
||||
using var scope = app.Services.CreateScope();
|
||||
var application = scope.ServiceProvider.GetRequiredService<App>();
|
||||
await application.Run(["C:\\Users\\SENTIENTGEEKS\\Desktop\\New_folder_(2)\\Acme.BookStore"]);
|
26
Vault.Demo.hashicorp.Console.csproj
Normal file
26
Vault.Demo.hashicorp.Console.csproj
Normal file
@ -0,0 +1,26 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="appsettings.json" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Json.Net" Version="1.0.33" />
|
||||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.6" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||||
<PackageReference Include="VaultSharp" Version="1.17.5.1" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Include="appsettings.json">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
</Project>
|
8
appsettings.json
Normal file
8
appsettings.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"vaultsetting": {
|
||||
"token": "hvs.hAMzTj712JyYxscMP7JussQi",
|
||||
"url": "https://vault.testsvk.site:8200",
|
||||
"path": "check/value",
|
||||
"mountPoint": "kv"
|
||||
}
|
||||
}
|
BIN
bin/Debug/net9.0/Json.Net.dll
Normal file
BIN
bin/Debug/net9.0/Json.Net.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.Configuration.Binder.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.Configuration.Binder.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.Configuration.Json.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.Configuration.Json.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.Configuration.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.Configuration.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Physical.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Physical.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.Hosting.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.Hosting.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.Logging.Configuration.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.Logging.Configuration.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.Logging.Console.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.Logging.Console.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.Logging.Debug.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.Logging.Debug.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.Logging.EventLog.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.Logging.EventLog.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.Logging.EventSource.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.Logging.EventSource.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.Logging.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.Logging.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.Options.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.Options.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll
Normal file
BIN
bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/Newtonsoft.Json.dll
Normal file
BIN
bin/Debug/net9.0/Newtonsoft.Json.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/System.Diagnostics.EventLog.dll
Normal file
BIN
bin/Debug/net9.0/System.Diagnostics.EventLog.dll
Normal file
Binary file not shown.
651
bin/Debug/net9.0/Vault.Demo.hashicorp.Console.deps.json
Normal file
651
bin/Debug/net9.0/Vault.Demo.hashicorp.Console.deps.json
Normal file
@ -0,0 +1,651 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
BIN
bin/Debug/net9.0/Vault.Demo.hashicorp.Console.dll
Normal file
BIN
bin/Debug/net9.0/Vault.Demo.hashicorp.Console.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/Vault.Demo.hashicorp.Console.exe
Normal file
BIN
bin/Debug/net9.0/Vault.Demo.hashicorp.Console.exe
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/Vault.Demo.hashicorp.Console.pdb
Normal file
BIN
bin/Debug/net9.0/Vault.Demo.hashicorp.Console.pdb
Normal file
Binary file not shown.
@ -0,0 +1,12 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net9.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "9.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
BIN
bin/Debug/net9.0/VaultSharp.dll
Normal file
BIN
bin/Debug/net9.0/VaultSharp.dll
Normal file
Binary file not shown.
8
bin/Debug/net9.0/appsettings.json
Normal file
8
bin/Debug/net9.0/appsettings.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"vaultsetting": {
|
||||
"token": "hvs.hAMzTj712JyYxscMP7JussQi",
|
||||
"url": "https://vault.testsvk.site:8200",
|
||||
"path": "check/value",
|
||||
"mountPoint": "kv"
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
|
0
obj/Debug/net9.0/Vault.De.58231F3E.Up2Date
Normal file
0
obj/Debug/net9.0/Vault.De.58231F3E.Up2Date
Normal file
@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Vault.Demo.hashicorp.Console")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[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.
|
||||
|
@ -0,0 +1 @@
|
||||
02f9ff422eb824a828d6d1157659e667911d2e118ac124ece8137b1ee3fa0b9d
|
@ -0,0 +1,15 @@
|
||||
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 =
|
@ -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/net9.0/Vault.Demo.hashicorp.Console.assets.cache
Normal file
BIN
obj/Debug/net9.0/Vault.Demo.hashicorp.Console.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
1d8856716917113173c19165977aadccfd0bde4074d1dd15f03bd13a87112b62
|
@ -0,0 +1,50 @@
|
||||
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
|
BIN
obj/Debug/net9.0/Vault.Demo.hashicorp.Console.dll
Normal file
BIN
obj/Debug/net9.0/Vault.Demo.hashicorp.Console.dll
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
6d57c206e3ae31fdd507411119547887be1be011968a53cb3b72e5d6bf21716d
|
BIN
obj/Debug/net9.0/Vault.Demo.hashicorp.Console.pdb
Normal file
BIN
obj/Debug/net9.0/Vault.Demo.hashicorp.Console.pdb
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/apphost.exe
Normal file
BIN
obj/Debug/net9.0/apphost.exe
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/ref/Vault.Demo.hashicorp.Console.dll
Normal file
BIN
obj/Debug/net9.0/ref/Vault.Demo.hashicorp.Console.dll
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/refint/Vault.Demo.hashicorp.Console.dll
Normal file
BIN
obj/Debug/net9.0/refint/Vault.Demo.hashicorp.Console.dll
Normal file
Binary file not shown.
92
obj/Vault.Demo.hashicorp.Console.csproj.nuget.dgspec.json
Normal file
92
obj/Vault.Demo.hashicorp.Console.csproj.nuget.dgspec.json
Normal file
@ -0,0 +1,92 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
19
obj/Vault.Demo.hashicorp.Console.csproj.nuget.g.props
Normal file
19
obj/Vault.Demo.hashicorp.Console.csproj.nuget.g.props
Normal file
@ -0,0 +1,19 @@
|
||||
<?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>
|
9
obj/Vault.Demo.hashicorp.Console.csproj.nuget.g.targets
Normal file
9
obj/Vault.Demo.hashicorp.Console.csproj.nuget.g.targets
Normal file
@ -0,0 +1,9 @@
|
||||
<?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>
|
1691
obj/project.assets.json
Normal file
1691
obj/project.assets.json
Normal file
File diff suppressed because it is too large
Load Diff
40
obj/project.nuget.cache
Normal file
40
obj/project.nuget.cache
Normal file
@ -0,0 +1,40 @@
|
||||
{
|
||||
"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": []
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user