🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

SqlAugur

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sqlaugur - nuget Package Compare versions

Comparing version
1.6.1
to
1.5.0
services/metadata/...ab0ee6d12e9543ed9b6e28935718e312.psmdcp

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

+101
-74

@@ -31,10 +31,86 @@ <!-- mcp-name: io.github.mbentham/sqlaugur -->

Use this order for all install methods:
1. Install SqlAugur
2. Save `appsettings.json` in the correct location
3. Add SqlAugur to your MCP client config
4. Verify by asking your assistant to call `list_servers`
Prerequisite: [.NET 10.0 runtime](https://dotnet.microsoft.com/download)
Start with [Installation](#installation) for exact commands and file paths.
**1. Install**
```bash
dotnet tool install -g SqlAugur
```
**2. Configure** — create `~/.config/sqlaugur/appsettings.json` (Linux/macOS) or `%APPDATA%\sqlaugur\appsettings.json` (Windows), setting the connection string for your environment:
```json
{
"SqlAugur": {
"Servers": {
"production": {
"ConnectionString": "Server=myserver;Database=master;Integrated Security=True;TrustServerCertificate=False;Encrypt=True;"
}
}
}
}
```
**3. Connect** — add to your MCP client:
<details open>
<summary><strong>Claude Desktop</strong></summary>
Add to your [Claude Desktop config](https://modelcontextprotocol.io/quickstart/user) (`claude_desktop_config.json`):
```json
{
"mcpServers": {
"sqlaugur": {
"command": "sqlaugur"
}
}
}
```
</details>
<details>
<summary><strong>Claude Code</strong></summary>
```bash
claude mcp add --transport stdio sqlaugur -- sqlaugur
```
Or add to `.mcp.json` in your project root:
```json
{
"mcpServers": {
"sqlaugur": {
"type": "stdio",
"command": "sqlaugur"
}
}
}
```
</details>
<details>
<summary><strong>VS Code / Copilot</strong></summary>
Add to `.vscode/mcp.json` in your workspace:
```json
{
"servers": {
"sqlaugur": {
"command": "sqlaugur"
}
}
}
```
</details>
**4. Verify** — ask your AI assistant to `list_servers` and you should see your configured connection.
For Docker, Podman, and other install methods, see [Installation](#installation).
## Why This Approach

@@ -50,3 +126,3 @@

- **Progressive discovery** — Up to 31 tools organized into toolsets that load on demand. Only 6 core tools are exposed initially, keeping the AI's context window small and reducing token usage. Additional toolsets are discovered and enabled as needed.
- **Progressive discovery** — Up to 29 tools organized into toolsets that load on demand. Only 6 core tools are exposed initially, keeping the AI's context window small and reducing token usage. Additional toolsets are discovered and enabled as needed.

@@ -73,7 +149,7 @@ ## Features

All methods produce the same MCP server. Follow this order: install, save config, wire client, verify.
All methods produce the same MCP server.
### NuGet Global Tool (recommended)
**1. Install** (prerequisite: [.NET 10.0 runtime](https://dotnet.microsoft.com/download))
Prerequisite: [.NET 10.0 runtime](https://dotnet.microsoft.com/download)

@@ -84,3 +160,3 @@ ```bash

**2. Save config file**
Create your configuration file:

@@ -97,22 +173,8 @@ ```bash

Example `appsettings.json` to save at that location:
MCP client configuration:
```json
{
"SqlAugur": {
"Servers": {
"production": {
"ConnectionString": "Server=myserver;Database=master;Integrated Security=True;TrustServerCertificate=False;Encrypt=True;"
}
}
}
}
```
**3. Add to MCP client**
```json
{
"mcpServers": {
"sqlaugur": {
"sqlserver": {
"command": "sqlaugur"

@@ -128,4 +190,2 @@ }

**1. Run SqlAugur container**
```bash

@@ -145,10 +205,8 @@ # Volume-mount a config file

If you mount a config file, save it as `/path/to/appsettings.json` and mount it to `/app/appsettings.json`.
MCP client configuration:
**2. Add to MCP client**
```json
{
"mcpServers": {
"sqlaugur": {
"sqlserver": {
"command": "docker",

@@ -180,3 +238,3 @@ "args": ["run", "-i", "--rm",

"mcpServers": {
"sqlaugur": {
"sqlserver": {
"command": "docker",

@@ -194,3 +252,3 @@ "args": ["compose", "run", "-i", "--rm", "sqlaugur"]

**1. Build** (prerequisite: [.NET 10.0 SDK](https://dotnet.microsoft.com/download))
Prerequisite: [.NET 10.0 SDK](https://dotnet.microsoft.com/download)

@@ -201,17 +259,7 @@ ```bash

dotnet publish SqlAugur -c Release -o SqlAugur/publish
```
**2. Save config file**
```bash
# Linux/macOS
cp SqlAugur/appsettings.example.json SqlAugur/publish/appsettings.json
# Edit SqlAugur/publish/appsettings.json with your server connections
# Windows (PowerShell)
Copy-Item SqlAugur\appsettings.example.json SqlAugur\publish\appsettings.json
# Edit SqlAugur\publish\appsettings.json with your server connections
```
**3. Add to MCP client**
MCP client configuration:

@@ -221,3 +269,3 @@ ```json

"mcpServers": {
"sqlaugur": {
"sqlserver": {
"command": "dotnet",

@@ -230,22 +278,2 @@ "args": ["/absolute/path/to/SqlAugur/publish/SqlAugur.dll"]

### Verify the MCP connection (LLM-first)
After restarting your MCP client, ask the assistant:
- `Call list_servers`
- `Call list_databases for server "production"`
Expected result:
- `list_servers` returns your configured server name (for example `production`)
- `list_databases` returns a JSON array of databases, not a connection or authentication error
If verification fails:
1. Confirm MCP config runs the expected command (`sqlaugur`, `docker run ...`, or `dotnet /path/to/SqlAugur.dll`)
2. Confirm `appsettings.json` is saved where your install method expects it:
- Local tool: `~/.config/sqlaugur/appsettings.json` (Linux/macOS) or `%APPDATA%\sqlaugur\appsettings.json` (Windows)
- Container: mounted to `/app/appsettings.json`
- Source build: next to the published DLL (`SqlAugur/publish/appsettings.json`)
3. Confirm the tool call uses a configured server key (for example `production`)
4. Confirm SQL connectivity and authentication in the connection string
## Configuration

@@ -291,4 +319,4 @@

| `MaxQueriesPerMinute` | 60 | Maximum queries allowed per minute (token bucket rate limit) |
| `EnableFirstResponderKit` | false | Enable First Responder Kit diagnostic tools (sp_Blitz, sp_BlitzFirst, sp_BlitzCache, sp_BlitzIndex, sp_BlitzWho, sp_BlitzLock, sp_BlitzPlanCompare) |
| `EnableDarlingData` | false | Enable DarlingData diagnostic tools (sp_PressureDetector, sp_QuickieStore, sp_QuickieCache, sp_HealthParser, sp_LogHunter, sp_HumanEventsBlockViewer, sp_IndexCleanup, sp_QueryReproBuilder) |
| `EnableFirstResponderKit` | false | Enable First Responder Kit diagnostic tools (sp_Blitz, sp_BlitzFirst, sp_BlitzCache, sp_BlitzIndex, sp_BlitzWho, sp_BlitzLock) |
| `EnableDarlingData` | false | Enable DarlingData diagnostic tools (sp_PressureDetector, sp_QuickieStore, sp_HealthParser, sp_LogHunter, sp_HumanEventsBlockViewer, sp_IndexCleanup, sp_QueryReproBuilder) |
| `EnableWhoIsActive` | false | Enable sp_WhoIsActive session monitoring |

@@ -302,3 +330,3 @@ | `EnableDynamicToolsets` | false | Enable progressive tool discovery — DBA tools load on demand via 3 meta-tools instead of at startup. Reduces initial context window usage. The `Enable*` flags still control which toolsets are allowed. |

The server provides 31 tools organized into toolsets. Six core tools are always available. Additional toolsets are loaded at startup (static mode) or on demand (dynamic mode).
The server provides 30 tools organized into toolsets. Six core tools are always available. Additional toolsets are loaded at startup (static mode) or on demand (dynamic mode).

@@ -370,3 +398,3 @@ ### Core Tools

<details>
<summary><strong>DarlingData</strong> (8 tools) — requires <code>EnableDarlingData: true</code></summary>
<summary><strong>DarlingData</strong> (7 tools) — requires <code>EnableDarlingData: true</code></summary>

@@ -379,3 +407,2 @@ Install from: [github.com/erikdarling/DarlingData](https://github.com/erikdarling/DarlingData)

| `sp_quickie_store` | Query Store analysis — top resource-consuming queries, plan regressions, wait statistics. |
| `sp_quickie_cache` | Plan cache analysis — high-impact queries ranked by impact score over the `dm_exec_*_stats` DMVs (the plan-cache companion to `sp_quickie_store`). |
| `sp_health_parser` | Parses the `system_health` extended event session for historical waits, disk latency, CPU, memory, and locking. |

@@ -412,4 +439,4 @@ | `sp_log_hunter` | Searches SQL Server error logs for errors, warnings, and custom messages. |

1. AI calls `list_toolsets` — sees `first_responder_kit` is "available" (configured but not yet enabled)
2. AI calls `get_toolset_tools("first_responder_kit")` — reviews the 7 tools and their parameters
3. AI calls `enable_toolset("first_responder_kit")` — the 7 tools are now registered and usable
2. AI calls `get_toolset_tools("first_responder_kit")` — reviews the 6 tools and their parameters
3. AI calls `enable_toolset("first_responder_kit")` — the 6 tools are now registered and usable
4. AI calls `sp_blitz` — runs the health check as normal

@@ -455,3 +482,3 @@

- This project depends on the official Microsoft [MCP C# SDK](https://github.com/modelcontextprotocol/csharp-sdk) (`ModelContextProtocol` NuGet package, version 1.3.0). As the MCP framework handles all protocol I/O, any vulnerability in it directly affects this application's security boundary. Monitor the package for updates and upgrade when new versions are released.
- This project depends on the official Microsoft [MCP C# SDK](https://github.com/modelcontextprotocol/csharp-sdk) (`ModelContextProtocol` NuGet package, version 1.2.0). As the MCP framework handles all protocol I/O, any vulnerability in it directly affects this application's security boundary. Monitor the package for updates and upgrade when new versions are released.
- The data returned from a SQL Server query could include malicious prompt injection targeting AIs. This is a risk of all AI use and cannot be mitigated by this project. Ensure you're following best practices for AI security and only connecting to trusted data sources.

@@ -458,0 +485,0 @@

@@ -5,3 +5,3 @@ <?xml version="1.0" encoding="utf-8"?>

<id>SqlAugur</id>
<version>1.6.1</version>
<version>1.5.0</version>
<authors>mbentham</authors>

@@ -17,4 +17,4 @@ <license type="file">LICENSE</license>

</packageTypes>
<repository type="git" url="https://github.com/mbentham/SqlAugur.git" commit="e3b17e07a9dd0ef4c5ad83a205ce0612a62ffd90" />
<repository type="git" url="https://github.com/mbentham/SqlAugur.git" commit="0d981e525447b83c6a8067808f8e7aa5756a9aed" />
</metadata>
</package>

@@ -9,10 +9,10 @@ {

".NETCoreApp,Version=v10.0": {
"SqlAugur/1.6.1": {
"SqlAugur/1.5.0": {
"dependencies": {
"Azure.Extensions.AspNetCore.Configuration.Secrets": "1.5.1",
"Microsoft.Data.SqlClient": "7.0.1",
"Microsoft.Extensions.Hosting": "10.0.8",
"Microsoft.SqlServer.TransactSql.ScriptDom": "180.18.1",
"ModelContextProtocol": "1.3.0",
"System.Threading.RateLimiting": "10.0.8"
"Azure.Extensions.AspNetCore.Configuration.Secrets": "1.5.0",
"Microsoft.Data.SqlClient": "7.0.0",
"Microsoft.Extensions.Hosting": "10.0.7",
"Microsoft.SqlServer.TransactSql.ScriptDom": "180.6.0",
"ModelContextProtocol": "1.2.0",
"System.Threading.RateLimiting": "10.0.7"
},

@@ -23,48 +23,60 @@ "runtime": {

},
"Azure.Core/1.54.0": {
"Azure.Core/1.51.1": {
"dependencies": {
"Microsoft.Bcl.AsyncInterfaces": "10.0.3",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.8",
"Microsoft.Extensions.Hosting.Abstractions": "10.0.8",
"Microsoft.Identity.Client": "4.83.1",
"Microsoft.Identity.Client.Extensions.Msal": "4.83.1",
"System.ClientModel": "1.10.0",
"System.Memory.Data": "10.0.3"
"Microsoft.Bcl.AsyncInterfaces": "10.0.2",
"System.ClientModel": "1.9.0",
"System.Memory.Data": "10.0.1"
},
"runtime": {
"lib/net10.0/Azure.Core.dll": {
"assemblyVersion": "1.54.0.0",
"fileVersion": "1.5400.26.22404"
"assemblyVersion": "1.51.1.0",
"fileVersion": "1.5100.126.10405"
}
}
},
"Azure.Extensions.AspNetCore.Configuration.Secrets/1.5.1": {
"Azure.Extensions.AspNetCore.Configuration.Secrets/1.5.0": {
"dependencies": {
"Azure.Core": "1.54.0",
"Azure.Security.KeyVault.Secrets": "4.10.0",
"Microsoft.Extensions.Configuration": "10.0.8"
"Azure.Core": "1.51.1",
"Azure.Identity": "1.18.0",
"Azure.Security.KeyVault.Secrets": "4.9.0",
"Microsoft.Extensions.Configuration": "10.0.7"
},
"runtime": {
"lib/net10.0/Azure.Extensions.AspNetCore.Configuration.Secrets.dll": {
"assemblyVersion": "1.5.1.0",
"fileVersion": "1.500.126.22903"
"assemblyVersion": "1.5.0.0",
"fileVersion": "1.500.26.15402"
}
}
},
"Azure.Security.KeyVault.Secrets/4.10.0": {
"Azure.Identity/1.18.0": {
"dependencies": {
"Azure.Core": "1.54.0"
"Azure.Core": "1.51.1",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.7",
"Microsoft.Extensions.Hosting.Abstractions": "10.0.7",
"Microsoft.Identity.Client": "4.78.0",
"Microsoft.Identity.Client.Extensions.Msal": "4.78.0"
},
"runtime": {
"lib/net10.0/Azure.Identity.dll": {
"assemblyVersion": "1.18.0.0",
"fileVersion": "1.1800.26.12602"
}
}
},
"Azure.Security.KeyVault.Secrets/4.9.0": {
"dependencies": {
"Azure.Core": "1.51.1"
},
"runtime": {
"lib/net10.0/Azure.Security.KeyVault.Secrets.dll": {
"assemblyVersion": "4.10.0.0",
"fileVersion": "4.1000.26.21401"
"assemblyVersion": "4.9.0.0",
"fileVersion": "4.900.26.12407"
}
}
},
"Microsoft.Bcl.AsyncInterfaces/10.0.3": {
"Microsoft.Bcl.AsyncInterfaces/10.0.2": {
"runtime": {
"lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
"assemblyVersion": "10.0.0.3",
"fileVersion": "10.0.326.7603"
"assemblyVersion": "10.0.0.2",
"fileVersion": "10.0.225.61305"
}

@@ -81,3 +93,3 @@ }

},
"Microsoft.Data.SqlClient/7.0.1": {
"Microsoft.Data.SqlClient/7.0.0": {
"dependencies": {

@@ -98,3 +110,3 @@ "Microsoft.Bcl.Cryptography": "9.0.13",

"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.1.26114"
"fileVersion": "7.0.0.26076"
}

@@ -148,3 +160,3 @@ },

"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.1.26114"
"fileVersion": "7.0.0.26076"
},

@@ -155,3 +167,3 @@ "runtimes/win/lib/net9.0/Microsoft.Data.SqlClient.dll": {

"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.1.26114"
"fileVersion": "7.0.0.26076"
}

@@ -198,13 +210,13 @@ }

},
"Microsoft.Extensions.AI.Abstractions/10.5.2": {
"Microsoft.Extensions.AI.Abstractions/10.4.1": {
"runtime": {
"lib/net10.0/Microsoft.Extensions.AI.Abstractions.dll": {
"assemblyVersion": "10.5.0.0",
"fileVersion": "10.500.226.25501"
"assemblyVersion": "10.4.0.0",
"fileVersion": "10.400.126.16803"
}
}
},
"Microsoft.Extensions.Caching.Abstractions/10.0.7": {
"Microsoft.Extensions.Caching.Abstractions/10.0.5": {
"dependencies": {
"Microsoft.Extensions.Primitives": "10.0.8"
"Microsoft.Extensions.Primitives": "10.0.7"
},

@@ -214,3 +226,3 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.726.21808"
"fileVersion": "10.0.526.15411"
}

@@ -221,7 +233,7 @@ }

"dependencies": {
"Microsoft.Extensions.Caching.Abstractions": "10.0.7",
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.8",
"Microsoft.Extensions.Logging.Abstractions": "10.0.8",
"Microsoft.Extensions.Options": "10.0.8",
"Microsoft.Extensions.Primitives": "10.0.8"
"Microsoft.Extensions.Caching.Abstractions": "10.0.5",
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.7",
"Microsoft.Extensions.Logging.Abstractions": "10.0.7",
"Microsoft.Extensions.Options": "10.0.7",
"Microsoft.Extensions.Primitives": "10.0.7"
},

@@ -235,6 +247,6 @@ "runtime": {

},
"Microsoft.Extensions.Configuration/10.0.8": {
"Microsoft.Extensions.Configuration/10.0.7": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "10.0.8",
"Microsoft.Extensions.Primitives": "10.0.8"
"Microsoft.Extensions.Configuration.Abstractions": "10.0.7",
"Microsoft.Extensions.Primitives": "10.0.7"
},

@@ -244,9 +256,9 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Configuration.Abstractions/10.0.8": {
"Microsoft.Extensions.Configuration.Abstractions/10.0.7": {
"dependencies": {
"Microsoft.Extensions.Primitives": "10.0.8"
"Microsoft.Extensions.Primitives": "10.0.7"
},

@@ -256,10 +268,10 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Configuration.Binder/10.0.8": {
"Microsoft.Extensions.Configuration.Binder/10.0.7": {
"dependencies": {
"Microsoft.Extensions.Configuration": "10.0.8",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.8"
"Microsoft.Extensions.Configuration": "10.0.7",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.7"
},

@@ -269,10 +281,10 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Configuration.CommandLine/10.0.8": {
"Microsoft.Extensions.Configuration.CommandLine/10.0.7": {
"dependencies": {
"Microsoft.Extensions.Configuration": "10.0.8",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.8"
"Microsoft.Extensions.Configuration": "10.0.7",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.7"
},

@@ -282,10 +294,10 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Configuration.EnvironmentVariables/10.0.8": {
"Microsoft.Extensions.Configuration.EnvironmentVariables/10.0.7": {
"dependencies": {
"Microsoft.Extensions.Configuration": "10.0.8",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.8"
"Microsoft.Extensions.Configuration": "10.0.7",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.7"
},

@@ -295,13 +307,13 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/10.0.8": {
"Microsoft.Extensions.Configuration.FileExtensions/10.0.7": {
"dependencies": {
"Microsoft.Extensions.Configuration": "10.0.8",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.8",
"Microsoft.Extensions.FileProviders.Abstractions": "10.0.8",
"Microsoft.Extensions.FileProviders.Physical": "10.0.8",
"Microsoft.Extensions.Primitives": "10.0.8"
"Microsoft.Extensions.Configuration": "10.0.7",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.7",
"Microsoft.Extensions.FileProviders.Abstractions": "10.0.7",
"Microsoft.Extensions.FileProviders.Physical": "10.0.7",
"Microsoft.Extensions.Primitives": "10.0.7"
},

@@ -311,12 +323,12 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Configuration.Json/10.0.8": {
"Microsoft.Extensions.Configuration.Json/10.0.7": {
"dependencies": {
"Microsoft.Extensions.Configuration": "10.0.8",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.8",
"Microsoft.Extensions.Configuration.FileExtensions": "10.0.8",
"Microsoft.Extensions.FileProviders.Abstractions": "10.0.8"
"Microsoft.Extensions.Configuration": "10.0.7",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.7",
"Microsoft.Extensions.Configuration.FileExtensions": "10.0.7",
"Microsoft.Extensions.FileProviders.Abstractions": "10.0.7"
},

@@ -326,12 +338,12 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Configuration.UserSecrets/10.0.8": {
"Microsoft.Extensions.Configuration.UserSecrets/10.0.7": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "10.0.8",
"Microsoft.Extensions.Configuration.Json": "10.0.8",
"Microsoft.Extensions.FileProviders.Abstractions": "10.0.8",
"Microsoft.Extensions.FileProviders.Physical": "10.0.8"
"Microsoft.Extensions.Configuration.Abstractions": "10.0.7",
"Microsoft.Extensions.Configuration.Json": "10.0.7",
"Microsoft.Extensions.FileProviders.Abstractions": "10.0.7",
"Microsoft.Extensions.FileProviders.Physical": "10.0.7"
},

@@ -341,9 +353,9 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.DependencyInjection/10.0.8": {
"Microsoft.Extensions.DependencyInjection/10.0.7": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.8"
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.7"
},

@@ -353,19 +365,19 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/10.0.8": {
"Microsoft.Extensions.DependencyInjection.Abstractions/10.0.7": {
"runtime": {
"lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Diagnostics/10.0.8": {
"Microsoft.Extensions.Diagnostics/10.0.7": {
"dependencies": {
"Microsoft.Extensions.Configuration": "10.0.8",
"Microsoft.Extensions.Diagnostics.Abstractions": "10.0.8",
"Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.8"
"Microsoft.Extensions.Configuration": "10.0.7",
"Microsoft.Extensions.Diagnostics.Abstractions": "10.0.7",
"Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.7"
},

@@ -375,10 +387,10 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Diagnostics.Abstractions/10.0.8": {
"Microsoft.Extensions.Diagnostics.Abstractions/10.0.7": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.8",
"Microsoft.Extensions.Options": "10.0.8"
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.7",
"Microsoft.Extensions.Options": "10.0.7"
},

@@ -388,9 +400,9 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/10.0.8": {
"Microsoft.Extensions.FileProviders.Abstractions/10.0.7": {
"dependencies": {
"Microsoft.Extensions.Primitives": "10.0.8"
"Microsoft.Extensions.Primitives": "10.0.7"
},

@@ -400,11 +412,11 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.FileProviders.Physical/10.0.8": {
"Microsoft.Extensions.FileProviders.Physical/10.0.7": {
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "10.0.8",
"Microsoft.Extensions.FileSystemGlobbing": "10.0.8",
"Microsoft.Extensions.Primitives": "10.0.8"
"Microsoft.Extensions.FileProviders.Abstractions": "10.0.7",
"Microsoft.Extensions.FileSystemGlobbing": "10.0.7",
"Microsoft.Extensions.Primitives": "10.0.7"
},

@@ -414,38 +426,38 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.FileSystemGlobbing/10.0.8": {
"Microsoft.Extensions.FileSystemGlobbing/10.0.7": {
"runtime": {
"lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Hosting/10.0.8": {
"Microsoft.Extensions.Hosting/10.0.7": {
"dependencies": {
"Microsoft.Extensions.Configuration": "10.0.8",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.8",
"Microsoft.Extensions.Configuration.Binder": "10.0.8",
"Microsoft.Extensions.Configuration.CommandLine": "10.0.8",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "10.0.8",
"Microsoft.Extensions.Configuration.FileExtensions": "10.0.8",
"Microsoft.Extensions.Configuration.Json": "10.0.8",
"Microsoft.Extensions.Configuration.UserSecrets": "10.0.8",
"Microsoft.Extensions.DependencyInjection": "10.0.8",
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.8",
"Microsoft.Extensions.Diagnostics": "10.0.8",
"Microsoft.Extensions.FileProviders.Abstractions": "10.0.8",
"Microsoft.Extensions.FileProviders.Physical": "10.0.8",
"Microsoft.Extensions.Hosting.Abstractions": "10.0.8",
"Microsoft.Extensions.Logging": "10.0.8",
"Microsoft.Extensions.Logging.Abstractions": "10.0.8",
"Microsoft.Extensions.Logging.Configuration": "10.0.8",
"Microsoft.Extensions.Logging.Console": "10.0.8",
"Microsoft.Extensions.Logging.Debug": "10.0.8",
"Microsoft.Extensions.Logging.EventLog": "10.0.8",
"Microsoft.Extensions.Logging.EventSource": "10.0.8",
"Microsoft.Extensions.Options": "10.0.8"
"Microsoft.Extensions.Configuration": "10.0.7",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.7",
"Microsoft.Extensions.Configuration.Binder": "10.0.7",
"Microsoft.Extensions.Configuration.CommandLine": "10.0.7",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "10.0.7",
"Microsoft.Extensions.Configuration.FileExtensions": "10.0.7",
"Microsoft.Extensions.Configuration.Json": "10.0.7",
"Microsoft.Extensions.Configuration.UserSecrets": "10.0.7",
"Microsoft.Extensions.DependencyInjection": "10.0.7",
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.7",
"Microsoft.Extensions.Diagnostics": "10.0.7",
"Microsoft.Extensions.FileProviders.Abstractions": "10.0.7",
"Microsoft.Extensions.FileProviders.Physical": "10.0.7",
"Microsoft.Extensions.Hosting.Abstractions": "10.0.7",
"Microsoft.Extensions.Logging": "10.0.7",
"Microsoft.Extensions.Logging.Abstractions": "10.0.7",
"Microsoft.Extensions.Logging.Configuration": "10.0.7",
"Microsoft.Extensions.Logging.Console": "10.0.7",
"Microsoft.Extensions.Logging.Debug": "10.0.7",
"Microsoft.Extensions.Logging.EventLog": "10.0.7",
"Microsoft.Extensions.Logging.EventSource": "10.0.7",
"Microsoft.Extensions.Options": "10.0.7"
},

@@ -455,13 +467,13 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Hosting.Abstractions/10.0.8": {
"Microsoft.Extensions.Hosting.Abstractions/10.0.7": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "10.0.8",
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.8",
"Microsoft.Extensions.Diagnostics.Abstractions": "10.0.8",
"Microsoft.Extensions.FileProviders.Abstractions": "10.0.8",
"Microsoft.Extensions.Logging.Abstractions": "10.0.8"
"Microsoft.Extensions.Configuration.Abstractions": "10.0.7",
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.7",
"Microsoft.Extensions.Diagnostics.Abstractions": "10.0.7",
"Microsoft.Extensions.FileProviders.Abstractions": "10.0.7",
"Microsoft.Extensions.Logging.Abstractions": "10.0.7"
},

@@ -471,11 +483,11 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Logging/10.0.8": {
"Microsoft.Extensions.Logging/10.0.7": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection": "10.0.8",
"Microsoft.Extensions.Logging.Abstractions": "10.0.8",
"Microsoft.Extensions.Options": "10.0.8"
"Microsoft.Extensions.DependencyInjection": "10.0.7",
"Microsoft.Extensions.Logging.Abstractions": "10.0.7",
"Microsoft.Extensions.Options": "10.0.7"
},

@@ -485,9 +497,9 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Logging.Abstractions/10.0.8": {
"Microsoft.Extensions.Logging.Abstractions/10.0.7": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.8"
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.7"
},

@@ -497,16 +509,16 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Logging.Configuration/10.0.8": {
"Microsoft.Extensions.Logging.Configuration/10.0.7": {
"dependencies": {
"Microsoft.Extensions.Configuration": "10.0.8",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.8",
"Microsoft.Extensions.Configuration.Binder": "10.0.8",
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.8",
"Microsoft.Extensions.Logging": "10.0.8",
"Microsoft.Extensions.Logging.Abstractions": "10.0.8",
"Microsoft.Extensions.Options": "10.0.8",
"Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.8"
"Microsoft.Extensions.Configuration": "10.0.7",
"Microsoft.Extensions.Configuration.Abstractions": "10.0.7",
"Microsoft.Extensions.Configuration.Binder": "10.0.7",
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.7",
"Microsoft.Extensions.Logging": "10.0.7",
"Microsoft.Extensions.Logging.Abstractions": "10.0.7",
"Microsoft.Extensions.Options": "10.0.7",
"Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.7"
},

@@ -516,13 +528,13 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Logging.Console/10.0.8": {
"Microsoft.Extensions.Logging.Console/10.0.7": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.8",
"Microsoft.Extensions.Logging": "10.0.8",
"Microsoft.Extensions.Logging.Abstractions": "10.0.8",
"Microsoft.Extensions.Logging.Configuration": "10.0.8",
"Microsoft.Extensions.Options": "10.0.8"
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.7",
"Microsoft.Extensions.Logging": "10.0.7",
"Microsoft.Extensions.Logging.Abstractions": "10.0.7",
"Microsoft.Extensions.Logging.Configuration": "10.0.7",
"Microsoft.Extensions.Options": "10.0.7"
},

@@ -532,11 +544,11 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Logging.Debug/10.0.8": {
"Microsoft.Extensions.Logging.Debug/10.0.7": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.8",
"Microsoft.Extensions.Logging": "10.0.8",
"Microsoft.Extensions.Logging.Abstractions": "10.0.8"
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.7",
"Microsoft.Extensions.Logging": "10.0.7",
"Microsoft.Extensions.Logging.Abstractions": "10.0.7"
},

@@ -546,13 +558,13 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Logging.EventLog/10.0.8": {
"Microsoft.Extensions.Logging.EventLog/10.0.7": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.8",
"Microsoft.Extensions.Logging": "10.0.8",
"Microsoft.Extensions.Logging.Abstractions": "10.0.8",
"Microsoft.Extensions.Options": "10.0.8",
"System.Diagnostics.EventLog": "10.0.8"
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.7",
"Microsoft.Extensions.Logging": "10.0.7",
"Microsoft.Extensions.Logging.Abstractions": "10.0.7",
"Microsoft.Extensions.Options": "10.0.7",
"System.Diagnostics.EventLog": "10.0.7"
},

@@ -562,13 +574,13 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Logging.EventSource/10.0.8": {
"Microsoft.Extensions.Logging.EventSource/10.0.7": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.8",
"Microsoft.Extensions.Logging": "10.0.8",
"Microsoft.Extensions.Logging.Abstractions": "10.0.8",
"Microsoft.Extensions.Options": "10.0.8",
"Microsoft.Extensions.Primitives": "10.0.8"
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.7",
"Microsoft.Extensions.Logging": "10.0.7",
"Microsoft.Extensions.Logging.Abstractions": "10.0.7",
"Microsoft.Extensions.Options": "10.0.7",
"Microsoft.Extensions.Primitives": "10.0.7"
},

@@ -578,10 +590,10 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Options/10.0.8": {
"Microsoft.Extensions.Options/10.0.7": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.8",
"Microsoft.Extensions.Primitives": "10.0.8"
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.7",
"Microsoft.Extensions.Primitives": "10.0.7"
},

@@ -591,13 +603,13 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Options.ConfigurationExtensions/10.0.8": {
"Microsoft.Extensions.Options.ConfigurationExtensions/10.0.7": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "10.0.8",
"Microsoft.Extensions.Configuration.Binder": "10.0.8",
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.8",
"Microsoft.Extensions.Options": "10.0.8",
"Microsoft.Extensions.Primitives": "10.0.8"
"Microsoft.Extensions.Configuration.Abstractions": "10.0.7",
"Microsoft.Extensions.Configuration.Binder": "10.0.7",
"Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.7",
"Microsoft.Extensions.Options": "10.0.7",
"Microsoft.Extensions.Primitives": "10.0.7"
},

@@ -607,15 +619,15 @@ "runtime": {

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Extensions.Primitives/10.0.8": {
"Microsoft.Extensions.Primitives/10.0.7": {
"runtime": {
"lib/net10.0/Microsoft.Extensions.Primitives.dll": {
"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}
}
},
"Microsoft.Identity.Client/4.83.1": {
"Microsoft.Identity.Client/4.78.0": {
"dependencies": {

@@ -626,10 +638,10 @@ "Microsoft.IdentityModel.Abstractions": "8.16.0"

"lib/net8.0/Microsoft.Identity.Client.dll": {
"assemblyVersion": "4.83.1.0",
"fileVersion": "4.83.1.0"
"assemblyVersion": "4.78.0.0",
"fileVersion": "4.78.0.0"
}
}
},
"Microsoft.Identity.Client.Extensions.Msal/4.83.1": {
"Microsoft.Identity.Client.Extensions.Msal/4.78.0": {
"dependencies": {
"Microsoft.Identity.Client": "4.83.1",
"Microsoft.Identity.Client": "4.78.0",
"System.Security.Cryptography.ProtectedData": "9.0.13"

@@ -639,4 +651,4 @@ },

"lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
"assemblyVersion": "4.83.1.0",
"fileVersion": "4.83.1.0"
"assemblyVersion": "4.78.0.0",
"fileVersion": "4.78.0.0"
}

@@ -700,3 +712,3 @@ }

"dependencies": {
"Microsoft.Extensions.Logging.Abstractions": "10.0.8",
"Microsoft.Extensions.Logging.Abstractions": "10.0.7",
"Microsoft.IdentityModel.Logging": "8.16.0"

@@ -719,7 +731,7 @@ },

},
"Microsoft.SqlServer.TransactSql.ScriptDom/180.18.1": {
"Microsoft.SqlServer.TransactSql.ScriptDom/180.6.0": {
"runtime": {
"lib/net8.0/Microsoft.SqlServer.TransactSql.ScriptDom.dll": {
"assemblyVersion": "18.0.0.0",
"fileVersion": "18.0.18.1"
"fileVersion": "18.0.6.0"
}

@@ -769,38 +781,38 @@ },

},
"ModelContextProtocol/1.3.0": {
"ModelContextProtocol/1.2.0": {
"dependencies": {
"Microsoft.Extensions.Caching.Abstractions": "10.0.7",
"Microsoft.Extensions.Hosting.Abstractions": "10.0.8",
"ModelContextProtocol.Core": "1.3.0"
"Microsoft.Extensions.Caching.Abstractions": "10.0.5",
"Microsoft.Extensions.Hosting.Abstractions": "10.0.7",
"ModelContextProtocol.Core": "1.2.0"
},
"runtime": {
"lib/net10.0/ModelContextProtocol.dll": {
"assemblyVersion": "1.3.0.0",
"fileVersion": "1.3.0.0"
"assemblyVersion": "1.2.0.0",
"fileVersion": "1.2.0.0"
}
}
},
"ModelContextProtocol.Core/1.3.0": {
"ModelContextProtocol.Core/1.2.0": {
"dependencies": {
"Microsoft.Extensions.AI.Abstractions": "10.5.2",
"Microsoft.Extensions.Logging.Abstractions": "10.0.8"
"Microsoft.Extensions.AI.Abstractions": "10.4.1",
"Microsoft.Extensions.Logging.Abstractions": "10.0.7"
},
"runtime": {
"lib/net10.0/ModelContextProtocol.Core.dll": {
"assemblyVersion": "1.3.0.0",
"fileVersion": "1.3.0.0"
"assemblyVersion": "1.2.0.0",
"fileVersion": "1.2.0.0"
}
}
},
"System.ClientModel/1.10.0": {
"System.ClientModel/1.9.0": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "10.0.8",
"Microsoft.Extensions.Hosting.Abstractions": "10.0.8",
"Microsoft.Extensions.Logging.Abstractions": "10.0.8",
"System.Memory.Data": "10.0.3"
"Microsoft.Extensions.Configuration.Abstractions": "10.0.7",
"Microsoft.Extensions.Hosting.Abstractions": "10.0.7",
"Microsoft.Extensions.Logging.Abstractions": "10.0.7",
"System.Memory.Data": "10.0.1"
},
"runtime": {
"lib/net10.0/System.ClientModel.dll": {
"assemblyVersion": "1.10.0.0",
"fileVersion": "1.1000.26.16607"
"assemblyVersion": "1.9.0.0",
"fileVersion": "1.900.26.7706"
}

@@ -811,3 +823,3 @@ }

"dependencies": {
"System.Diagnostics.EventLog": "10.0.8",
"System.Diagnostics.EventLog": "10.0.7",
"System.Security.Cryptography.ProtectedData": "9.0.13"

@@ -822,7 +834,7 @@ },

},
"System.Diagnostics.EventLog/10.0.8": {
"System.Diagnostics.EventLog/10.0.7": {
"runtime": {
"lib/net10.0/System.Diagnostics.EventLog.dll": {
"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}

@@ -841,3 +853,3 @@ },

"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}

@@ -858,7 +870,7 @@ }

},
"System.Memory.Data/10.0.3": {
"System.Memory.Data/10.0.1": {
"runtime": {
"lib/net10.0/System.Memory.Data.dll": {
"assemblyVersion": "10.0.0.3",
"fileVersion": "10.0.326.7603"
"assemblyVersion": "10.0.0.1",
"fileVersion": "10.0.125.57005"
}

@@ -891,7 +903,7 @@ }

},
"System.Threading.RateLimiting/10.0.8": {
"System.Threading.RateLimiting/10.0.7": {
"runtime": {
"lib/net10.0/System.Threading.RateLimiting.dll": {
"assemblyVersion": "10.0.0.0",
"fileVersion": "10.0.826.23019"
"fileVersion": "10.0.726.21808"
}

@@ -903,3 +915,3 @@ }

"libraries": {
"SqlAugur/1.6.1": {
"SqlAugur/1.5.0": {
"type": "project",

@@ -909,30 +921,37 @@ "serviceable": false,

},
"Azure.Core/1.54.0": {
"Azure.Core/1.51.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-m6hHbx1q9+GCBZ5A9ykzFylPdTwscX2APH7PlnqV+yu+DH3RRtuIDJMRqdU17cMyinv0hCPofpegoyQ6qWPW7g==",
"path": "azure.core/1.54.0",
"hashPath": "azure.core.1.54.0.nupkg.sha512"
"sha512": "sha512-JRANrRvN5O5FFRh+pMUb8qqWU7jBQ39qXEbVr7Rkb1/s7rqc6RSzVHKGBz5Ro1gDy2WSGjG5YEOJKpPIBiCMcA==",
"path": "azure.core/1.51.1",
"hashPath": "azure.core.1.51.1.nupkg.sha512"
},
"Azure.Extensions.AspNetCore.Configuration.Secrets/1.5.1": {
"Azure.Extensions.AspNetCore.Configuration.Secrets/1.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2Io9af/y8GH1jfu//BQrYcwb+MZOJG+au2KCv+ltWM6PBCghbhaDyZWDkYWNWIougZgoHtyKM0CnlGi+9XAu/A==",
"path": "azure.extensions.aspnetcore.configuration.secrets/1.5.1",
"hashPath": "azure.extensions.aspnetcore.configuration.secrets.1.5.1.nupkg.sha512"
"sha512": "sha512-6dwMdsiW/bH4jYA8cmynQ2FclwDTERHE897NqdGRy+OROZdF9oTdz3sQIlezMoFGDg8IX8O2mPp8SbPymyuSnw==",
"path": "azure.extensions.aspnetcore.configuration.secrets/1.5.0",
"hashPath": "azure.extensions.aspnetcore.configuration.secrets.1.5.0.nupkg.sha512"
},
"Azure.Security.KeyVault.Secrets/4.10.0": {
"Azure.Identity/1.18.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-lcJtcgTkk1gGy59RQhGLJLMyad+zgASMn975PVjMft69q+jjFTo6Nyq5SCtOhPY1WvA0gNI1qYIVN2oikVXDjw==",
"path": "azure.security.keyvault.secrets/4.10.0",
"hashPath": "azure.security.keyvault.secrets.4.10.0.nupkg.sha512"
"sha512": "sha512-HiTpL2XRANXSPyrIkaq7eNDthi99UFbbJwMfpkkbVcdo3Au6yl3vPNWveoa4nO24JTcwyyXATZHn+eVnrVAWEQ==",
"path": "azure.identity/1.18.0",
"hashPath": "azure.identity.1.18.0.nupkg.sha512"
},
"Microsoft.Bcl.AsyncInterfaces/10.0.3": {
"Azure.Security.KeyVault.Secrets/4.9.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-TV62UsrJZPX6gbt3c4WrtXh7bmaDIcMqf9uft1cc4L6gJXOU07hDGEh+bFQh/L2Az0R1WVOkiT66lFqS6G2NmA==",
"path": "microsoft.bcl.asyncinterfaces/10.0.3",
"hashPath": "microsoft.bcl.asyncinterfaces.10.0.3.nupkg.sha512"
"sha512": "sha512-3cQKaNCfP6QQwEoqmxShIkzCQFJ9SlCbLzIb/UH/lMhpiqjVRkF62qOUP6T7NB4fnf7RV+TxsvjWpkNddu22EA==",
"path": "azure.security.keyvault.secrets/4.9.0",
"hashPath": "azure.security.keyvault.secrets.4.9.0.nupkg.sha512"
},
"Microsoft.Bcl.AsyncInterfaces/10.0.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-qE5JhRoeJbAipLqpUCZyNfNwnpAvUttXgIQDnTiJ15d8ji+/bPgoPkB3xLzK5cQTobN2D2ditUesUlDHb7p3Pg==",
"path": "microsoft.bcl.asyncinterfaces/10.0.2",
"hashPath": "microsoft.bcl.asyncinterfaces.10.0.2.nupkg.sha512"
},
"Microsoft.Bcl.Cryptography/9.0.13": {

@@ -945,8 +964,8 @@ "type": "package",

},
"Microsoft.Data.SqlClient/7.0.1": {
"Microsoft.Data.SqlClient/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-9jZFXAJ2ThNYK7lhj2RhH7klXVNaWSvZpQncq3bPIOjmHBrdjwgeO4c8wucUVxQwFT8rAA13Z2F2jzoYR7ICDw==",
"path": "microsoft.data.sqlclient/7.0.1",
"hashPath": "microsoft.data.sqlclient.7.0.1.nupkg.sha512"
"sha512": "sha512-/oolEwtHuDtpLKU8OItOTTxVJalgPtIkcNBwzXJ3YGyrkOAvLYqMtin9Z1jxqryJpds3PjuZBF5iKIYVVYVSvQ==",
"path": "microsoft.data.sqlclient/7.0.0",
"hashPath": "microsoft.data.sqlclient.7.0.0.nupkg.sha512"
},

@@ -974,15 +993,15 @@ "Microsoft.Data.SqlClient.Extensions.Abstractions/1.0.0": {

},
"Microsoft.Extensions.AI.Abstractions/10.5.2": {
"Microsoft.Extensions.AI.Abstractions/10.4.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Ei+YWV9Ybnps7pR1dgjlG29gelXEwZkhLVAcWmKe6HvXS6LNBYgSdWiY3Hk9OZXYtK34rv/NtLWBQYQGOBQYPQ==",
"path": "microsoft.extensions.ai.abstractions/10.5.2",
"hashPath": "microsoft.extensions.ai.abstractions.10.5.2.nupkg.sha512"
"sha512": "sha512-ZxhU/wg9BOc3ohibhLl18toPLWm96ysQoE+3OhCgrZ0TUPZd7bsUmGteeatz08yweyuPIEhtyUzEZTF+3bMWEQ==",
"path": "microsoft.extensions.ai.abstractions/10.4.1",
"hashPath": "microsoft.extensions.ai.abstractions.10.4.1.nupkg.sha512"
},
"Microsoft.Extensions.Caching.Abstractions/10.0.7": {
"Microsoft.Extensions.Caching.Abstractions/10.0.5": {
"type": "package",
"serviceable": true,
"sha512": "sha512-pUDgQKEqNUFlerDIFRg7zzoDVRPEWIG7nR40h8Gzg8RXza4Ry0lWZ7u91bmwu3iUDCxw3Dv6TLHVFoAgY0gy7Q==",
"path": "microsoft.extensions.caching.abstractions/10.0.7",
"hashPath": "microsoft.extensions.caching.abstractions.10.0.7.nupkg.sha512"
"sha512": "sha512-k/QDdQ94/0Shi0KfU+e12m73jfQo+3JpErTtgpZfsCIqkvdEEO0XIx6R+iTbN55rNPaNhOqNY4/sB+jZ8XxVPw==",
"path": "microsoft.extensions.caching.abstractions/10.0.5",
"hashPath": "microsoft.extensions.caching.abstractions.10.0.5.nupkg.sha512"
},

@@ -996,204 +1015,204 @@ "Microsoft.Extensions.Caching.Memory/9.0.13": {

},
"Microsoft.Extensions.Configuration/10.0.8": {
"Microsoft.Extensions.Configuration/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ehZcoPbjzWzS4XFvuz7R3V55SmpdkyMqFURLH3yXaN9NtXd9tR6CGB7pd49HYtCkenl+G7ctXSFLhNI08xLfRg==",
"path": "microsoft.extensions.configuration/10.0.8",
"hashPath": "microsoft.extensions.configuration.10.0.8.nupkg.sha512"
"sha512": "sha512-wZbGh7J8R1vXN525O6d8dlcDTxhRTnd5MyW4LdfP5S0tSnTwTCseYSrq6g0Mxh7W9xn8P/2xPuf0D/m6k2dy2w==",
"path": "microsoft.extensions.configuration/10.0.7",
"hashPath": "microsoft.extensions.configuration.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/10.0.8": {
"Microsoft.Extensions.Configuration.Abstractions/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-I63esIFbL3h5pSt7gXpXOlmcwDmYBUoYNEglKfDPFUqtYvSV84f2l28hO2lfVXsV0wdlplgAM7IVz16matapSg==",
"path": "microsoft.extensions.configuration.abstractions/10.0.8",
"hashPath": "microsoft.extensions.configuration.abstractions.10.0.8.nupkg.sha512"
"sha512": "sha512-t56nEgvECcyLPojZIUFWJknQQDAbgfTf9J+QMYJE1YYvVgz69vN6B/AKL8Grvj3Lcnp8kTpNqwmwFhb3YLJmtQ==",
"path": "microsoft.extensions.configuration.abstractions/10.0.7",
"hashPath": "microsoft.extensions.configuration.abstractions.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Binder/10.0.8": {
"Microsoft.Extensions.Configuration.Binder/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-R3NN1X+kVu14uoxLEW6sBSQyhogDSbaOQzILnCtuXxBN4hx22AgjWPwZX6v/suERFkEDgU1lk12AglHTrUxhlw==",
"path": "microsoft.extensions.configuration.binder/10.0.8",
"hashPath": "microsoft.extensions.configuration.binder.10.0.8.nupkg.sha512"
"sha512": "sha512-8bS1qIaRivny+WX+49pmeJ6iAylbtX8C0DLEcCQWZjdxQvLqaMssXiGD9P/6pYElrHbK5/nAHmjbQ8STqdMYeg==",
"path": "microsoft.extensions.configuration.binder/10.0.7",
"hashPath": "microsoft.extensions.configuration.binder.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.CommandLine/10.0.8": {
"Microsoft.Extensions.Configuration.CommandLine/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-nQXq1a4MiInYh+0VF9fguxAl06q2ftmOyYQ+5e933s4rk57xjgkbTjUdFUySzjrcrvDeWsSqlZB+TE8+TbM2HA==",
"path": "microsoft.extensions.configuration.commandline/10.0.8",
"hashPath": "microsoft.extensions.configuration.commandline.10.0.8.nupkg.sha512"
"sha512": "sha512-3lNjglxfFxOzI9zG+3HSg/YSGqo//8Fqw6u6iuIamZb4JCorbA3JLaeWOpfKTAPi2UJwaispOXWx14dUqcGz4A==",
"path": "microsoft.extensions.configuration.commandline/10.0.7",
"hashPath": "microsoft.extensions.configuration.commandline.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.EnvironmentVariables/10.0.8": {
"Microsoft.Extensions.Configuration.EnvironmentVariables/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bVGqctAfPGfTxJvNp8pMshtvpsUj6r6JkeiCNVIGVYO5gBxuxdN0Lbr25kEvE/zXdctkEc44g8HssnPgDnFGVA==",
"path": "microsoft.extensions.configuration.environmentvariables/10.0.8",
"hashPath": "microsoft.extensions.configuration.environmentvariables.10.0.8.nupkg.sha512"
"sha512": "sha512-TWto3imA+mJMLZI+5sbgLiFFoOFNFkizQYNaC5jTuiHKn3diwm1RN7mWDOEZN9kG2bixw7IvgpvtUG5/teSRzA==",
"path": "microsoft.extensions.configuration.environmentvariables/10.0.7",
"hashPath": "microsoft.extensions.configuration.environmentvariables.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.FileExtensions/10.0.8": {
"Microsoft.Extensions.Configuration.FileExtensions/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1g9mzuu8gIHkjYb0jLxOTQVl/QDG5nn0b0JzgT/gbgNKr6gXZzxOHRAsdYRc1eDApB7LdHR8uK5vQrNjIQdRrQ==",
"path": "microsoft.extensions.configuration.fileextensions/10.0.8",
"hashPath": "microsoft.extensions.configuration.fileextensions.10.0.8.nupkg.sha512"
"sha512": "sha512-qbZLvLsoTdArSloEnSxs21P781YUmwVmHc5NJPQD/ezAreQ7884z+6QfAZVKi86WAZtzx83jK2uC4itxOM44gQ==",
"path": "microsoft.extensions.configuration.fileextensions/10.0.7",
"hashPath": "microsoft.extensions.configuration.fileextensions.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Json/10.0.8": {
"Microsoft.Extensions.Configuration.Json/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KLtAZ6A38s1pIfCO2ns6aG14NNGMYNZ4PBYfFK4M+R4A+xuSc6oklhqDcpHZxvDpyBWeFtR5C8iQBw2ng8tUHQ==",
"path": "microsoft.extensions.configuration.json/10.0.8",
"hashPath": "microsoft.extensions.configuration.json.10.0.8.nupkg.sha512"
"sha512": "sha512-64dimvyyKk0dbUbrLg/YCv4ugJ4sVz2aXLwfvZwR1EC4tJqW9ru/oVRcXwoJRa2lQGXtYtlpk4maWOeIb48tQw==",
"path": "microsoft.extensions.configuration.json/10.0.7",
"hashPath": "microsoft.extensions.configuration.json.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.UserSecrets/10.0.8": {
"Microsoft.Extensions.Configuration.UserSecrets/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6XTfFOnf27WY8kEeZkTZ4YNn0t+imgvdQ0YaAdR4vgURKATo9bCaVJ1KB71IOJAQtJP7Elb53VHlTNXg2CtSsA==",
"path": "microsoft.extensions.configuration.usersecrets/10.0.8",
"hashPath": "microsoft.extensions.configuration.usersecrets.10.0.8.nupkg.sha512"
"sha512": "sha512-YqVIICoIdl0016wkeO2WQS+uEbEXbUhMLKdC5rZNl1X3nu59F+nwaAHdHjq/4OK+Cx31DYmNUSFh+MUot8qSDw==",
"path": "microsoft.extensions.configuration.usersecrets/10.0.7",
"hashPath": "microsoft.extensions.configuration.usersecrets.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection/10.0.8": {
"Microsoft.Extensions.DependencyInjection/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-daf62xHIrq8pnE709hgaZZN9tSam9TGGepWe1+bE6V3GEuVwJiMs6ib+38lfMCyAJAHiX0vapxBhsuMSV7U+cg==",
"path": "microsoft.extensions.dependencyinjection/10.0.8",
"hashPath": "microsoft.extensions.dependencyinjection.10.0.8.nupkg.sha512"
"sha512": "sha512-91F/o3emPV/+xY/ip3s2LqDNF14kjttlVtq0BXgg6p4MnCzeSZxnUJm+t6WRrtD3JdGo88/oX+z7OwK4y8PZuw==",
"path": "microsoft.extensions.dependencyinjection/10.0.7",
"hashPath": "microsoft.extensions.dependencyinjection.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/10.0.8": {
"Microsoft.Extensions.DependencyInjection.Abstractions/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-21nbDV60SRPWGIivsyl6lqBeEJNG1sginhhfWgRrr3Ais7aQ12To25OAHQxgoiJkjqy1aQ6RxpZBGYuTi7Ge6A==",
"path": "microsoft.extensions.dependencyinjection.abstractions/10.0.8",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.8.nupkg.sha512"
"sha512": "sha512-Z6mfFEaFcwCfSboxJwOLfu7/31npCY9q70WUamHW/vRQhDvBKOT4Vf9YkZj5J6hLvJpb0oDEYfHunQZj0xxvKw==",
"path": "microsoft.extensions.dependencyinjection.abstractions/10.0.7",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Diagnostics/10.0.8": {
"Microsoft.Extensions.Diagnostics/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uduyw9d3Fi+sbredO5drA1S44AQS2FRNFyn72UmB2vmQIO1qaXprpp1U/2lYhYi8yFdVERfY9sy/pxw/qPOU9w==",
"path": "microsoft.extensions.diagnostics/10.0.8",
"hashPath": "microsoft.extensions.diagnostics.10.0.8.nupkg.sha512"
"sha512": "sha512-l+smp1qPlU0OUXD0OGfdp7OUFrbdq7ZaP5T7m2WpfZ4RFKD7iG73BAT7tjSMxNmbSXkhAn1jYHOAqzYG1r9sNg==",
"path": "microsoft.extensions.diagnostics/10.0.7",
"hashPath": "microsoft.extensions.diagnostics.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Diagnostics.Abstractions/10.0.8": {
"Microsoft.Extensions.Diagnostics.Abstractions/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+f4C5g78QCGNyxzUfrTYsB7qYx06Zca0e88s3qFlea9/lQhgPImYdNprlgzl1uHhRU3fVHLfmbijayU2sJEZ6w==",
"path": "microsoft.extensions.diagnostics.abstractions/10.0.8",
"hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.8.nupkg.sha512"
"sha512": "sha512-uJ9JP677y+uy+C0vtaSfi7XXgFAdz8DhU3M9lwwIXDfQKcyQ0yxM9DVYa0NXDtdVTYA2eBUtVFZ8LY0GCdeE/w==",
"path": "microsoft.extensions.diagnostics.abstractions/10.0.7",
"hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Abstractions/10.0.8": {
"Microsoft.Extensions.FileProviders.Abstractions/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-U+oquaPxFdY8lYeEIWO/AD7jDIl9sPW6aVWMQRHU/pZ/SWpLcOrAj2fcLe1HwXl4sYw1ONI56K/eELT3xr4RRQ==",
"path": "microsoft.extensions.fileproviders.abstractions/10.0.8",
"hashPath": "microsoft.extensions.fileproviders.abstractions.10.0.8.nupkg.sha512"
"sha512": "sha512-teioDgVpi8L186wUfrXQV1YuBt6lCSPmFZiMZo53+FZxHFjOV+f4GXo4LXgJ273Mku9//AdXWVjk9J7eJP6inw==",
"path": "microsoft.extensions.fileproviders.abstractions/10.0.7",
"hashPath": "microsoft.extensions.fileproviders.abstractions.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Physical/10.0.8": {
"Microsoft.Extensions.FileProviders.Physical/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GkPvQe6IdidLu6Q3Lw6+B8NJpW8feW8czZ5mBKt5rXM/x8MvZfEp5WvAsjznzDGd23chIDrW0b2mmt+ScnEgiw==",
"path": "microsoft.extensions.fileproviders.physical/10.0.8",
"hashPath": "microsoft.extensions.fileproviders.physical.10.0.8.nupkg.sha512"
"sha512": "sha512-zhgWg/i0ECj5v0jLFBSZHplvc5ygCI91DR4nne+BP4XAKF5ycz0pEKnFiTw8C1jCABJEZsnBZh6pXAvn71kFmw==",
"path": "microsoft.extensions.fileproviders.physical/10.0.7",
"hashPath": "microsoft.extensions.fileproviders.physical.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.FileSystemGlobbing/10.0.8": {
"Microsoft.Extensions.FileSystemGlobbing/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-IUQet3SY51xIFcFZKtAB6a54/Zdxs7T3SQ84kJtOD6yeXfZgiOMksACWD5qtTmXGQGFH4QYGBOT0KIO8Uy/dJw==",
"path": "microsoft.extensions.filesystemglobbing/10.0.8",
"hashPath": "microsoft.extensions.filesystemglobbing.10.0.8.nupkg.sha512"
"sha512": "sha512-NTUspqB+vH9g4wAD6KPOBx01xqYuKXR/cHXm449zpbq1GqfjdAxBmg7eJXrNsPw7SKwIdT2cJ05GxYVvc+lvsA==",
"path": "microsoft.extensions.filesystemglobbing/10.0.7",
"hashPath": "microsoft.extensions.filesystemglobbing.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Hosting/10.0.8": {
"Microsoft.Extensions.Hosting/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VfEyM2BipThcSd0GG/FS2ZPCVCTiosVq2zLKEDsfeMIg78sOVZPEmS7CgWlb+dqTlgXvLSL4OG2q6sM4xRhHNg==",
"path": "microsoft.extensions.hosting/10.0.8",
"hashPath": "microsoft.extensions.hosting.10.0.8.nupkg.sha512"
"sha512": "sha512-M/vBpfWcschvS2EUeq7cHfscsxabiGTptXwV7GeSueovGiSoNjyo1j5PMcWuOAAQrRW3nRqxZk8NeumrmpzUBg==",
"path": "microsoft.extensions.hosting/10.0.7",
"hashPath": "microsoft.extensions.hosting.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Hosting.Abstractions/10.0.8": {
"Microsoft.Extensions.Hosting.Abstractions/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MoOWFPT88/pDfmWpbU9PydKRX/rJFQkliowE/L9wbQcl94IicUphb5BFgepkWiDkYYxPnuEqjN4buzOGW4vJpQ==",
"path": "microsoft.extensions.hosting.abstractions/10.0.8",
"hashPath": "microsoft.extensions.hosting.abstractions.10.0.8.nupkg.sha512"
"sha512": "sha512-5s8d6qC6EA8UOI4wR/+zlsq7SXttJMRb9d7zvVZ7+bE3CQEfVtC9ITUDCommm87R1zzj6WJBbCnztuIJXnP3DA==",
"path": "microsoft.extensions.hosting.abstractions/10.0.7",
"hashPath": "microsoft.extensions.hosting.abstractions.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Logging/10.0.8": {
"Microsoft.Extensions.Logging/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-K60JhWC2hN/Gi7TP68tBxSzk5ACWOs7lkmPzsfA8Bcf/IXTajujt2ORMf9rSMk1bsng6Lv4Y3fuxp3bm1+15ug==",
"path": "microsoft.extensions.logging/10.0.8",
"hashPath": "microsoft.extensions.logging.10.0.8.nupkg.sha512"
"sha512": "sha512-hOeRIQ63GkgiYCB/MIFp+LQs8aXpJXpB55t6Aj37ab7t2/6WeFcPXxYM9hdy/o5tffzwf8mhqzLJP6mjGYCxjw==",
"path": "microsoft.extensions.logging/10.0.7",
"hashPath": "microsoft.extensions.logging.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Abstractions/10.0.8": {
"Microsoft.Extensions.Logging.Abstractions/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-fdVadZmsC8jRP0KvKy8mO8f6GV/HyBvElfcSxEhd+5FM5boAw/01iSaCto5G3G37ApJira4A3pNaVvBv8cUiLQ==",
"path": "microsoft.extensions.logging.abstractions/10.0.8",
"hashPath": "microsoft.extensions.logging.abstractions.10.0.8.nupkg.sha512"
"sha512": "sha512-tIEcQ2gvERrH2KiCjdsVcHGhXt9lIsuDStfOIeZWr7/fP8IXhGiYfx0/80PNI7WPO2IYuFtlZLSlnTS8+/Mchw==",
"path": "microsoft.extensions.logging.abstractions/10.0.7",
"hashPath": "microsoft.extensions.logging.abstractions.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Configuration/10.0.8": {
"Microsoft.Extensions.Logging.Configuration/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rxSLTO7xTbcC3DuEJHNEijBr8g14Jj62zQ+DeFu68bsoTYoU8jLcMhc1735PV21bESXsATlL5LsfaWH71FOWAg==",
"path": "microsoft.extensions.logging.configuration/10.0.8",
"hashPath": "microsoft.extensions.logging.configuration.10.0.8.nupkg.sha512"
"sha512": "sha512-7BBnoGF37USiu7j434put9mDp7EjdlNDIZsR4vHfC1FbLZeLqiWjgJbeEtF0p59Ryqt8AtraHawf0ZKbe5jibg==",
"path": "microsoft.extensions.logging.configuration/10.0.7",
"hashPath": "microsoft.extensions.logging.configuration.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Console/10.0.8": {
"Microsoft.Extensions.Logging.Console/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6cv53sHsPnFS56PJw8X4GbNcjeX1KGyFJRxJWvxOgK63cnqeSB1k1eRwjUdkse0tBhwlH6qc9EOYDlan+CYTuw==",
"path": "microsoft.extensions.logging.console/10.0.8",
"hashPath": "microsoft.extensions.logging.console.10.0.8.nupkg.sha512"
"sha512": "sha512-DA++Es6v6W0HfrOrw+K8WyN6jNnZHp640PDdEvl8yfeVmgflKdn6vSSFvufNUSOuY+M2ZaSUgfY+jUKtNpXcCw==",
"path": "microsoft.extensions.logging.console/10.0.7",
"hashPath": "microsoft.extensions.logging.console.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Debug/10.0.8": {
"Microsoft.Extensions.Logging.Debug/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4HW3M1lGHHDwEYcDZHRNptBQ48LCI2yW+XV4vuxdfQUqafTpVT8j9RqAsez08krZKhIiaArWu8iQq5uRKZ9Ffg==",
"path": "microsoft.extensions.logging.debug/10.0.8",
"hashPath": "microsoft.extensions.logging.debug.10.0.8.nupkg.sha512"
"sha512": "sha512-Y6DSt/JZApunYWKqTtqbdsR6iqAvHx3D0tavbNJ1rnC24MUpF+3XO/VKgFi+9PFqMyvQ2GHBBGb8H3cLSw7rDg==",
"path": "microsoft.extensions.logging.debug/10.0.7",
"hashPath": "microsoft.extensions.logging.debug.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Logging.EventLog/10.0.8": {
"Microsoft.Extensions.Logging.EventLog/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kK/C3SLIoGrcZvddYQw4eMm6YaROiSYBO7YgUR5Hdv5l+GIjBmbvQK5cST2FqjeubiAOPqFEimBT2N/8wVI+3A==",
"path": "microsoft.extensions.logging.eventlog/10.0.8",
"hashPath": "microsoft.extensions.logging.eventlog.10.0.8.nupkg.sha512"
"sha512": "sha512-1C8eTuxF6BLncNSJ1HCfmaBcjpUSqQDPlBVdYTlet9oldHTPpNh9iatxSJLs8TOqdp/FOpH+nSLdBve7fu9mTQ==",
"path": "microsoft.extensions.logging.eventlog/10.0.7",
"hashPath": "microsoft.extensions.logging.eventlog.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Logging.EventSource/10.0.8": {
"Microsoft.Extensions.Logging.EventSource/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HX2M0MgzwQM8jpLe3AYAEMd0YsUfOP5RgGrDuk+Ki9n7HSuMbvLm9TEV3qRI3Pg9aqxc56GfgK/KdMRBhfWwKw==",
"path": "microsoft.extensions.logging.eventsource/10.0.8",
"hashPath": "microsoft.extensions.logging.eventsource.10.0.8.nupkg.sha512"
"sha512": "sha512-YWfndnDX1jVMGCN8d5T+rO+BO8sDw6BkYlUk0BYui+WP7+HhlWx8QLdA4yUDjrkGVb3AQxIWWEPVKw5Nnfj5GQ==",
"path": "microsoft.extensions.logging.eventsource/10.0.7",
"hashPath": "microsoft.extensions.logging.eventsource.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Options/10.0.8": {
"Microsoft.Extensions.Options/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VBD+131DpTNCNDfA4kIyKTiCySvJGNhwibdWBSdFRu7GMfXLXcXODkgA+KStKbbhzraLglZWUN4nXyHgW4JIRA==",
"path": "microsoft.extensions.options/10.0.8",
"hashPath": "microsoft.extensions.options.10.0.8.nupkg.sha512"
"sha512": "sha512-00SHUGTh2jSMvIr6x9Xwd2nE+B5/qFCO/9hDwUDhJsjYRDlADmaBZ7tqehXzBDsfjHSXJzuRHJzPYPPjphBQ7Q==",
"path": "microsoft.extensions.options/10.0.7",
"hashPath": "microsoft.extensions.options.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Options.ConfigurationExtensions/10.0.8": {
"Microsoft.Extensions.Options.ConfigurationExtensions/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VOapXeO3lhBH0zYoyAH7tjapuo4V5pTHlevPpiSHueEquAajqd5nF0mttm+h/uE/exwAEuM5s26SzOJtletE3w==",
"path": "microsoft.extensions.options.configurationextensions/10.0.8",
"hashPath": "microsoft.extensions.options.configurationextensions.10.0.8.nupkg.sha512"
"sha512": "sha512-IT7f+EMXZtkjatEcF+o6aOw/7OE4etRrMiDGEWH/iiTu2R3uhC4NEQJCfHiibtX45U3sIQ5Fh6tbb1qaOz3YAg==",
"path": "microsoft.extensions.options.configurationextensions/10.0.7",
"hashPath": "microsoft.extensions.options.configurationextensions.10.0.7.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/10.0.8": {
"Microsoft.Extensions.Primitives/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OBPo4nYhMyIbtueoC10CBm6AGAbo/A9IV8QQ/6ryZS7VvmqpGT7hunazeHLxFawRzn3oLOq4jhqhpBX4tfswWQ==",
"path": "microsoft.extensions.primitives/10.0.8",
"hashPath": "microsoft.extensions.primitives.10.0.8.nupkg.sha512"
"sha512": "sha512-D5M0Jr551iTgwkZMN9rm0pSkgNLj5quUWQUmQPMZh7k/bnvZTnXRGfE2KuvXf1EEjt/ofD9yw9IumpgdP9QCnw==",
"path": "microsoft.extensions.primitives/10.0.7",
"hashPath": "microsoft.extensions.primitives.10.0.7.nupkg.sha512"
},
"Microsoft.Identity.Client/4.83.1": {
"Microsoft.Identity.Client/4.78.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-jOLIrZ3cynoqHLLO1cXplFFabrhrMEYs/EuKHvmCyrOm1axqiVFT6nCSnHxk7w5+d2BeQfCdM12Yf/0X7OeS1g==",
"path": "microsoft.identity.client/4.83.1",
"hashPath": "microsoft.identity.client.4.83.1.nupkg.sha512"
"sha512": "sha512-vZ50HE9INSN+Ew8pCgTm0t7wzxQTqozF9L4MAsl64etXz0Teo0dbUvjpVzqDHRs6m1Vn8mHF04fGaxXrIvGpsg==",
"path": "microsoft.identity.client/4.78.0",
"hashPath": "microsoft.identity.client.4.78.0.nupkg.sha512"
},
"Microsoft.Identity.Client.Extensions.Msal/4.83.1": {
"Microsoft.Identity.Client.Extensions.Msal/4.78.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-I3k4J4Hj4KbLEFanjeUzzDOVecukETaTgEkJ7h2pP/Yazs6SLp6TVUTo/Eo+ptPXMwvc+iX7rBFtMSUrA7R+Mg==",
"path": "microsoft.identity.client.extensions.msal/4.83.1",
"hashPath": "microsoft.identity.client.extensions.msal.4.83.1.nupkg.sha512"
"sha512": "sha512-DYU9o+DrDQuyZxeq91GBA9eNqBvA3ZMkLzQpF7L9dTk6FcIBM1y1IHXWqiKXTvptPF7CZE59upbyUoa+FJ5eiA==",
"path": "microsoft.identity.client.extensions.msal/4.78.0",
"hashPath": "microsoft.identity.client.extensions.msal.4.78.0.nupkg.sha512"
},

@@ -1249,29 +1268,29 @@ "Microsoft.IdentityModel.Abstractions/8.16.0": {

},
"Microsoft.SqlServer.TransactSql.ScriptDom/180.18.1": {
"Microsoft.SqlServer.TransactSql.ScriptDom/180.6.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CULNOChk4ia9Z4c7CXlFYJWMJkn0DkyZMMt/xPZPBW184r7+o84IFq5vuI6yVt0WIiL71oWBp5EwzhhHX28jOw==",
"path": "microsoft.sqlserver.transactsql.scriptdom/180.18.1",
"hashPath": "microsoft.sqlserver.transactsql.scriptdom.180.18.1.nupkg.sha512"
"sha512": "sha512-bGkiYIT1fjcrtMsaGs8l8Q5A/5qNswfrA6bVZQXPKhssytxtF6pM/1Gyg1suiGfN0U+0NOwUngzN8jL5tKuLfQ==",
"path": "microsoft.sqlserver.transactsql.scriptdom/180.6.0",
"hashPath": "microsoft.sqlserver.transactsql.scriptdom.180.6.0.nupkg.sha512"
},
"ModelContextProtocol/1.3.0": {
"ModelContextProtocol/1.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WDaD6z9KkkCUHSo15xK7tYBERHy8uqP+cIUp8uIxhR0yrlpJLXTRcJcUUVqpXlBkV7MK9Eo3mTrAnctLnJuHDQ==",
"path": "modelcontextprotocol/1.3.0",
"hashPath": "modelcontextprotocol.1.3.0.nupkg.sha512"
"sha512": "sha512-8lHIp8EY8faMFwDL+JynpFOeFZdsEE/Kxq8XMVfaA+RmQyNWjoWyvNXNQtWzVq+lDUlHLBx0ozerByNfcrciCw==",
"path": "modelcontextprotocol/1.2.0",
"hashPath": "modelcontextprotocol.1.2.0.nupkg.sha512"
},
"ModelContextProtocol.Core/1.3.0": {
"ModelContextProtocol.Core/1.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OWmdxDSwA7K9pNNg4t98MXNIssHG/wOQEr/G8pG5B7synDdw4MnmZ/IIVeb3yUdeznPqnDHvd3FBCK0jRk4IZQ==",
"path": "modelcontextprotocol.core/1.3.0",
"hashPath": "modelcontextprotocol.core.1.3.0.nupkg.sha512"
"sha512": "sha512-x0eQqFKtV30nWP6yVy0d/3RnAKwM14ay1CHnUNb7EpwZEXJJJqjPENYvpzwqi8+8LNMMK/g33WnnLYIf1JGMOg==",
"path": "modelcontextprotocol.core/1.2.0",
"hashPath": "modelcontextprotocol.core.1.2.0.nupkg.sha512"
},
"System.ClientModel/1.10.0": {
"System.ClientModel/1.9.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-lBEWs54F5Y5pZ9hC+8z4S/X76957ex+DPk7WecRHlbIHtrPfbRMMlOgI3iDn4Jpb3bSxvBnKaaHoD59auFjlBA==",
"path": "system.clientmodel/1.10.0",
"hashPath": "system.clientmodel.1.10.0.nupkg.sha512"
"sha512": "sha512-1wdwKtMMMEFEYsxJmtrOd3G+7zVOVO3MlVZAsbKv9H0PnIx6J27fYAarMn0eQS0vKJPQL018DOb7YRK1O97p0A==",
"path": "system.clientmodel/1.9.0",
"hashPath": "system.clientmodel.1.9.0.nupkg.sha512"
},

@@ -1285,8 +1304,8 @@ "System.Configuration.ConfigurationManager/9.0.13": {

},
"System.Diagnostics.EventLog/10.0.8": {
"System.Diagnostics.EventLog/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+Ro7WgIom+BDNH+YhTuZKL6QJ0ctfOpTyfUG/h3aU5KwXt3OaNf0wYWrTvoBUj+34Dy5V8dN9yCco1hAJQ4txw==",
"path": "system.diagnostics.eventlog/10.0.8",
"hashPath": "system.diagnostics.eventlog.10.0.8.nupkg.sha512"
"sha512": "sha512-WbmDLeTPYhEzXhvYVioTVn/D1XX6bovyny9n5p8Zxtf03+eY385RB818teZm6n+fA63iZNvng0/Np4tLuhkMhQ==",
"path": "system.diagnostics.eventlog/10.0.7",
"hashPath": "system.diagnostics.eventlog.10.0.7.nupkg.sha512"
},

@@ -1300,8 +1319,8 @@ "System.IdentityModel.Tokens.Jwt/8.16.0": {

},
"System.Memory.Data/10.0.3": {
"System.Memory.Data/10.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MaGhRfGunmrj/nHjtsi9XkhlYJ/ERGWrbA+BiSKNtGnAjc9XlG5EhAvak6VRcX5LYzPF6pBO8nJ613dTgzabig==",
"path": "system.memory.data/10.0.3",
"hashPath": "system.memory.data.10.0.3.nupkg.sha512"
"sha512": "sha512-BZC4mhdL569AXV56ep9YO6ShjhxFXGP7SwVX0Bc/e0dJPWnS6aBEXZJXqh64RVx8HquqWHkJUINBydLRQ1yq0g==",
"path": "system.memory.data/10.0.1",
"hashPath": "system.memory.data.10.0.1.nupkg.sha512"
},

@@ -1322,10 +1341,10 @@ "System.Security.Cryptography.Pkcs/9.0.13": {

},
"System.Threading.RateLimiting/10.0.8": {
"System.Threading.RateLimiting/10.0.7": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/xN6RLDCClJl4wkwN6UGuDBJev7DUyXBi43h1/dDiZLP5nzkiHV/LVzutNkO00nCGLpybKYbih4VwYIFoaIxsQ==",
"path": "system.threading.ratelimiting/10.0.8",
"hashPath": "system.threading.ratelimiting.10.0.8.nupkg.sha512"
"sha512": "sha512-jyE25vnx7GODTj0HyNLw0N1xZZnC393yheswsr4OMCZIrJ8VrBzgpPf9a+qJyDoQXt49cekHy1dIY1eQa5uhOg==",
"path": "system.threading.ratelimiting/10.0.7",
"hashPath": "system.threading.ratelimiting.10.0.7.nupkg.sha512"
}
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet