diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index deef4d8..bd76578 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,35 +1,42 @@ { - "name": "Polyglot Persistence", + "name": "Mix-and-Match Database", "image": "mcr.microsoft.com/devcontainers/dotnet:9.0", + "workspaceFolder": "/workspaces/developer-bootcamp/mix-and-match-database/", "features": { "ghcr.io/devcontainers/features/docker-in-docker:2": {} }, "containerEnv": { "DOTNET_NOLOGO": "true" }, - "onCreateCommand": "chmod +x /workspaces/developer-bootcamp/polyglot-persistence/onCreateCommand.sh && /workspaces/developer-bootcamp/polyglot-persistence/onCreateCommand.sh", - "forwardPorts": [27017, 5432, 6379, 2113, 1113], + "onCreateCommand": "chmod +x /workspaces/developer-bootcamp/mix-and-match-database/scripts/0-prebuild-containers.sh && /workspaces/developer-bootcamp/mix-and-match-database/scripts/0-prebuild-containers.sh", + // "postCreateCommand": "sudo cp /workspaces/developer-bootcamp/.devcontainer/welcome.txt /usr/local/etc/vscode-dev-containers/first-run-notice.txt", + "postCreateCommand": "/workspaces/developer-bootcamp/mix-and-match-database/scripts/start-db.sh && /workspaces/developer-bootcamp/mix-and-match-database/scripts/start-app.sh", + "forwardPorts": [27017, 5432, 6379, 2113, 1113, 5108], "portsAttributes": { "2113": { - "label": "EventStoreDB Admin UI", - "onAutoForward": "notify" + "label": "KurrentDB Admin UI", + "onAutoForward": "silent" }, "1113": { - "label": "EventStoreDB API", + "label": "KurrentDB API", "onAutoForward": "silent" }, "27017": { "label": "MongoDB", - "onAutoForward": "notify" + "onAutoForward": "silent" }, "5432": { "label": "PostgreSQL", - "onAutoForward": "notify" + "onAutoForward": "silent" }, "6379": { "label": "Redis", - "onAutoForward": "notify" - } + "onAutoForward": "silent" + }, + "5108": { + "label": "Demo Web Page", + "onAutoForward": "silent" + }, }, "customizations": { "vscode": { diff --git a/.devcontainer/welcome.txt b/.devcontainer/welcome.txt new file mode 100644 index 0000000..f0c3247 --- /dev/null +++ b/.devcontainer/welcome.txt @@ -0,0 +1,5 @@ +Hello!👋 Welcome to the KurrentDB Mix-and-Match Use Case Tutorial (Work in Progress) + +To continue, please follow instructions found in https://docs.kurrent.io/getting-started/use-cases/mix-and-match-database-tutorial.html + +Enjoy! \ No newline at end of file diff --git a/mix-and-match-database/.gitattributes b/mix-and-match-database/.gitattributes new file mode 100644 index 0000000..994a3b5 --- /dev/null +++ b/mix-and-match-database/.gitattributes @@ -0,0 +1,9 @@ +*.sh text eol=lf + +tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce filter=lfs diff=lfs merge=lfs -text +tools/Kurrent.Extensions.Commerce/osx-arm64/libduckdb.dylib filter=lfs diff=lfs merge=lfs -text +tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce filter=lfs diff=lfs merge=lfs -text +tools/Kurrent.Extensions.Commerce/osx-x64/libduckdb.dylib filter=lfs diff=lfs merge=lfs -text +tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce filter=lfs diff=lfs merge=lfs -text +tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.exe filter=lfs diff=lfs merge=lfs -text +tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce filter=lfs diff=lfs merge=lfs -text diff --git a/polyglot-persistence/.gitignore b/mix-and-match-database/.gitignore similarity index 100% rename from polyglot-persistence/.gitignore rename to mix-and-match-database/.gitignore diff --git a/polyglot-persistence/Common/CartEventEncoder.cs b/mix-and-match-database/Common/CartEventEncoder.cs similarity index 100% rename from polyglot-persistence/Common/CartEventEncoder.cs rename to mix-and-match-database/Common/CartEventEncoder.cs diff --git a/polyglot-persistence/Common/CartEvents.cs b/mix-and-match-database/Common/CartEvents.cs similarity index 100% rename from polyglot-persistence/Common/CartEvents.cs rename to mix-and-match-database/Common/CartEvents.cs diff --git a/polyglot-persistence/Common/Common.csproj b/mix-and-match-database/Common/Common.csproj similarity index 100% rename from polyglot-persistence/Common/Common.csproj rename to mix-and-match-database/Common/Common.csproj diff --git a/polyglot-persistence/Common/ItemGotAddedConverter.cs b/mix-and-match-database/Common/ItemGotAddedConverter.cs similarity index 100% rename from polyglot-persistence/Common/ItemGotAddedConverter.cs rename to mix-and-match-database/Common/ItemGotAddedConverter.cs diff --git a/polyglot-persistence/DemoWeb/DemoWeb.csproj b/mix-and-match-database/DemoWeb/DemoWeb.csproj similarity index 100% rename from polyglot-persistence/DemoWeb/DemoWeb.csproj rename to mix-and-match-database/DemoWeb/DemoWeb.csproj diff --git a/polyglot-persistence/DemoWeb/Pages/Carts.cshtml b/mix-and-match-database/DemoWeb/Pages/Carts.cshtml similarity index 64% rename from polyglot-persistence/DemoWeb/Pages/Carts.cshtml rename to mix-and-match-database/DemoWeb/Pages/Carts.cshtml index 14a8cf8..94bf052 100644 --- a/polyglot-persistence/DemoWeb/Pages/Carts.cshtml +++ b/mix-and-match-database/DemoWeb/Pages/Carts.cshtml @@ -6,7 +6,7 @@ }
-

Carts Table (Postgres Projection)

+

Carts Table (Postgres)

@@ -42,62 +42,20 @@ -
- - - - - - - - - - - - @if (!Model.Carts.Any()) - { - - - - } - else - { - @foreach (var cart in Model.Carts) - { - - - - - - - - } - } - -
- Cart ID - @if (Model.SortColumn == "cart_id") - { - @(Model.SortDirection == "ASC" ? "⬆" : "⬇") - } - - Customer ID - @if (Model.SortColumn == "customer_id") - { - @(Model.SortDirection == "ASC" ? "⬆" : "⬇") - } - - Status - @if (Model.SortColumn == "status") - { - @(Model.SortDirection == "ASC" ? "⬆" : "⬇") - } - - Created At - @if (Model.SortColumn == "created_at") - { - @(Model.SortDirection == "ASC" ? "⬆" : "⬇") - } - - Updated At - @if (Model.SortColumn == "updated_at") - { - @(Model.SortDirection == "ASC" ? "⬆" : "⬇") - } -
No carts found
@cart.CartId@(cart.CustomerId ?? "Anonymous") + @if (!Model.GroupedCarts.Any()) + { +
No carts found
+ } + else + { + @foreach (var cart in Model.GroupedCarts) + { +
+
+
+
+
+ @switch (cart.Status) { case "STARTED": @@ -113,15 +71,64 @@ @cart.Status break; } -
@cart.CreatedAt.ToString("yyyy-MM-dd HH:mm:ss")@cart.UpdatedAt.ToString("yyyy-MM-dd HH:mm:ss")
-
+ @cart.CartId + +
+ Customer: @(cart.CustomerId ?? "Anonymous") | + | Last Updated: @cart.LastUpdated.ToString("g") +
+
+
+
Items: @cart.TotalItems
+
Total Quantity: @cart.TotalQuantity
+
+
+ +
+
+ + + + + + + + + + + + + @foreach (var item in cart.Items) + { + + + + + + + + + } + +
Product IDProduct NameQuantityPrice Per UnitTaxSubtotal
@item.ProductId@item.ProductName@item.Quantity@item.PricePerUnit.ToString("C")@item.Tax.ToString("P0")@((item.Quantity * item.PricePerUnit * (1 + item.Tax)).ToString("C"))
+
+
+
+
+ + + + + + +
+ Total: @cart.Items.Sum(item => item.Quantity * item.PricePerUnit * (1 + item.Tax)).ToString("C") +
+
+
+ + } + } @if (Model.TotalPages > 0) { @@ -193,7 +200,7 @@
- Page @Model.PageNumber of @Model.TotalPages (@Model.TotalCount items) + Page @Model.PageNumber of @Model.TotalPages (@Model.TotalCount items in @Model.GroupedCarts.Count carts)
} @@ -201,7 +208,6 @@ @section Scripts { + +} \ No newline at end of file diff --git a/polyglot-persistence/DemoWeb/Pages/TopProducts.cshtml.cs b/mix-and-match-database/DemoWeb/Pages/TopProducts.cshtml.cs similarity index 77% rename from polyglot-persistence/DemoWeb/Pages/TopProducts.cshtml.cs rename to mix-and-match-database/DemoWeb/Pages/TopProducts.cshtml.cs index 1dc812f..949b435 100644 --- a/polyglot-persistence/DemoWeb/Pages/TopProducts.cshtml.cs +++ b/mix-and-match-database/DemoWeb/Pages/TopProducts.cshtml.cs @@ -10,9 +10,6 @@ public class TopProductsModel : PageModel public TopProductsModel(RedisService redisService) { _redisService = redisService; - CurrentHour = string.Empty; } - - public string CurrentHour { get; private set; } } } \ No newline at end of file diff --git a/polyglot-persistence/DemoWeb/Pages/_ViewImports.cshtml b/mix-and-match-database/DemoWeb/Pages/_ViewImports.cshtml similarity index 100% rename from polyglot-persistence/DemoWeb/Pages/_ViewImports.cshtml rename to mix-and-match-database/DemoWeb/Pages/_ViewImports.cshtml diff --git a/polyglot-persistence/DemoWeb/Pages/_ViewStart.cshtml b/mix-and-match-database/DemoWeb/Pages/_ViewStart.cshtml similarity index 100% rename from polyglot-persistence/DemoWeb/Pages/_ViewStart.cshtml rename to mix-and-match-database/DemoWeb/Pages/_ViewStart.cshtml diff --git a/polyglot-persistence/DemoWeb/PostgresService.cs b/mix-and-match-database/DemoWeb/PostgresService.cs similarity index 63% rename from polyglot-persistence/DemoWeb/PostgresService.cs rename to mix-and-match-database/DemoWeb/PostgresService.cs index fb7aa5b..0bd0ced 100644 --- a/polyglot-persistence/DemoWeb/PostgresService.cs +++ b/mix-and-match-database/DemoWeb/PostgresService.cs @@ -1,6 +1,6 @@ using Npgsql; -namespace DemoWeb.Services; +namespace DemoWeb; public class PostgresService { @@ -17,36 +17,43 @@ public PostgresService(IConfiguration configuration, ILogger lo _connectionString.Replace("Password=", "Password=***")); } - public async Task> GetCartsAsync(CartFilterOptions filterOptions) + public async Task> GetCartItemsAsync(CartFilterOptions filterOptions) { try { - _logger.LogInformation("Getting carts with filter: {@FilterOptions}", filterOptions); - var carts = new List(); + _logger.LogInformation("Getting cart items with filter: {@FilterOptions}", filterOptions); + var cartItems = new List(); using var connection = new NpgsqlConnection(_connectionString); await connection.OpenAsync(); - // Build the query with filter options - var query = new System.Text.StringBuilder("SELECT * FROM carts WHERE 1=1"); + // Build the query with filter options and join + var query = new System.Text.StringBuilder(@" + SELECT c.cart_id, c.customer_id, c.status, c.updated_at as cart_updated_at, + ci.product_id, ci.product_name, ci.quantity, + ci.price_per_unit, ci.tax_rate, ci.updated_at + FROM carts c + JOIN cart_items ci ON c.cart_id = ci.cart_id + WHERE 1=1"); + var parameters = new List(); // Add filters if (!string.IsNullOrEmpty(filterOptions.CartId)) { - query.Append(" AND cart_id LIKE @CartId"); + query.Append(" AND c.cart_id LIKE @CartId"); parameters.Add(new NpgsqlParameter("@CartId", $"%{filterOptions.CartId}%")); } if (!string.IsNullOrEmpty(filterOptions.CustomerId)) { - query.Append(" AND customer_id LIKE @CustomerId"); + query.Append(" AND c.customer_id LIKE @CustomerId"); parameters.Add(new NpgsqlParameter("@CustomerId", $"%{filterOptions.CustomerId}%")); } if (!string.IsNullOrEmpty(filterOptions.Status)) { - query.Append(" AND status = @Status"); + query.Append(" AND c.status = @Status"); parameters.Add(new NpgsqlParameter("@Status", filterOptions.Status)); } @@ -66,54 +73,65 @@ public async Task> GetCartsAsync(CartFilterOptions filterOptions) using var reader = await cmd.ExecuteReaderAsync(); while (await reader.ReadAsync()) { - carts.Add(new Cart + cartItems.Add(new CartItem { CartId = reader.GetString(reader.GetOrdinal("cart_id")), CustomerId = !reader.IsDBNull(reader.GetOrdinal("customer_id")) ? reader.GetString(reader.GetOrdinal("customer_id")) : null, Status = reader.GetString(reader.GetOrdinal("status")), - CreatedAt = reader.GetDateTime(reader.GetOrdinal("created_at")), + ProductId = reader.GetString(reader.GetOrdinal("product_id")), + ProductName = reader.GetString(reader.GetOrdinal("product_name")), + Quantity = reader.GetInt32(reader.GetOrdinal("quantity")), + PricePerUnit = reader.GetDecimal(reader.GetOrdinal("price_per_unit")), + Tax = !reader.IsDBNull(reader.GetOrdinal("tax_rate")) + ? reader.GetDecimal(reader.GetOrdinal("tax_rate")) + : 0m, // Handle null tax values UpdatedAt = reader.GetDateTime(reader.GetOrdinal("updated_at")) }); } - _logger.LogInformation("Retrieved {Count} carts", carts.Count); - return carts; + _logger.LogInformation("Retrieved {Count} cart items", cartItems.Count); + return cartItems; } catch (Exception ex) { - _logger.LogError(ex, "Error getting carts"); - return new List(); // Return an empty list if the table does not exist + _logger.LogError(ex, "Error getting cart items"); + return new List(); // Return an empty list if there's an error } } - public async Task GetCartsTotalCountAsync(CartFilterOptions filterOptions) + public async Task GetCartItemsTotalCountAsync(CartFilterOptions filterOptions) { try { using var connection = new NpgsqlConnection(_connectionString); await connection.OpenAsync(); - // Build the count query with filter options - var query = new System.Text.StringBuilder("SELECT COUNT(*) FROM carts WHERE 1=1"); + // Build the count query with filter options and join + var query = new System.Text.StringBuilder(@" + SELECT COUNT(*) + FROM carts c + JOIN cart_items ci ON c.cart_id = ci.cart_id + WHERE 1=1"); + var parameters = new List(); if (!string.IsNullOrEmpty(filterOptions.CartId)) { - query.Append(" AND cart_id LIKE @CartId"); + query.Append(" AND c.cart_id LIKE @CartId"); parameters.Add(new NpgsqlParameter("@CartId", $"%{filterOptions.CartId}%")); } if (!string.IsNullOrEmpty(filterOptions.CustomerId)) { - query.Append(" AND customer_id LIKE @CustomerId"); + query.Append(" AND c.customer_id LIKE @CustomerId"); parameters.Add(new NpgsqlParameter("@CustomerId", $"%{filterOptions.CustomerId}%")); } if (!string.IsNullOrEmpty(filterOptions.Status)) { - query.Append(" AND status = @Status"); + query.Append(" AND c.status = @Status"); parameters.Add(new NpgsqlParameter("@Status", filterOptions.Status)); } @@ -128,22 +146,26 @@ public async Task GetCartsTotalCountAsync(CartFilterOptions filterOptions) } catch (Exception ex) { - _logger.LogError(ex, "Error getting carts count"); + _logger.LogError(ex, "Error getting cart items count"); return 0; } } } - -public class Cart +public class CartItem { public string CartId { get; set; } = string.Empty; public string? CustomerId { get; set; } - public string? Status { get; set; } - public DateTime CreatedAt { get; set; } + public string Status { get; set; } = string.Empty; + public string ProductId { get; set; } = string.Empty; + public string ProductName { get; set; } = string.Empty; + public int Quantity { get; set; } + public decimal PricePerUnit { get; set; } + public decimal Tax { get; set; } // Added tax property public DateTime UpdatedAt { get; set; } } + public class CartFilterOptions { public string? CartId { get; set; } diff --git a/polyglot-persistence/DemoWeb/Program.cs b/mix-and-match-database/DemoWeb/Program.cs similarity index 98% rename from polyglot-persistence/DemoWeb/Program.cs rename to mix-and-match-database/DemoWeb/Program.cs index f2ae663..1e7af0b 100644 --- a/polyglot-persistence/DemoWeb/Program.cs +++ b/mix-and-match-database/DemoWeb/Program.cs @@ -1,3 +1,4 @@ +using DemoWeb; using StackExchange.Redis; using DemoWeb.Hubs; using DemoWeb.Services; diff --git a/polyglot-persistence/DemoWeb/Properties/launchSettings.json b/mix-and-match-database/DemoWeb/Properties/launchSettings.json similarity index 100% rename from polyglot-persistence/DemoWeb/Properties/launchSettings.json rename to mix-and-match-database/DemoWeb/Properties/launchSettings.json diff --git a/mix-and-match-database/DemoWeb/RedisService.cs b/mix-and-match-database/DemoWeb/RedisService.cs new file mode 100644 index 0000000..a015358 --- /dev/null +++ b/mix-and-match-database/DemoWeb/RedisService.cs @@ -0,0 +1,67 @@ +using StackExchange.Redis; + +namespace DemoWeb.Services; + +public class RedisService +{ + public const string TopProductsKey = "top-10-products"; + private readonly IConnectionMultiplexer _redis; + + + public RedisService(IConnectionMultiplexer redis) + { + _redis = redis; + } + + public async Task> GetTopProductsAsync() + { + var db = _redis.GetDatabase(); + var combinedResults = new Dictionary(); + + // Get the current date/time + var currentDateTime = DateTime.UtcNow; + + // Process the last 24 hours + for (int i = 0; i < 24; i++) + { + var hourToProcess = currentDateTime.AddHours(-i); + var hourKeyToUse = $"{TopProductsKey}:{hourToProcess:yyyyMMddHH}"; + + // Get all products for this hour + var productsForHour = await db.SortedSetRangeByScoreWithScoresAsync(hourKeyToUse, order: Order.Descending); + + // Add to combined results + foreach (var product in productsForHour) + { + var productId = product.Element.ToString(); + if (combinedResults.ContainsKey(productId)) + { + combinedResults[productId] += product.Score; + } + else + { + combinedResults[productId] = product.Score; + } + } + } + + // Sort by quantity and take top 10 + var topProducts = combinedResults + .OrderByDescending(p => p.Value) + .Take(10) + .Select(p => new ProductRanking + { + ProductId = db.HashGet("product-names", p.Key), + Quantity = (int)p.Value + }) + .ToList(); + + return topProducts; + } +} + +public class ProductRanking +{ + public string ProductId { get; set; } = string.Empty; + public int Quantity { get; set; } +} diff --git a/polyglot-persistence/DemoWeb/TopProductsHub.cs b/mix-and-match-database/DemoWeb/TopProductsHub.cs similarity index 50% rename from polyglot-persistence/DemoWeb/TopProductsHub.cs rename to mix-and-match-database/DemoWeb/TopProductsHub.cs index f6fb50c..06631d7 100644 --- a/polyglot-persistence/DemoWeb/TopProductsHub.cs +++ b/mix-and-match-database/DemoWeb/TopProductsHub.cs @@ -12,19 +12,9 @@ public TopProductsHub(RedisService redisService) _redisService = redisService; } - public async Task GetTopProducts(string hourKey) + public async Task GetTopProducts() { - string? key = hourKey; - if (string.IsNullOrEmpty(hourKey)) - { - // look for the first "top products" key in redis - key = await _redisService.GetFirstAvailableHourKeyAsync(); - - // return nothing if not found - if (key == null) return; - } - - var topProducts = await _redisService.GetTopProductsAsync(key); - await Clients.Caller.SendAsync("ReceiveTopProducts", topProducts, key.Split(':').Last()); + var topProducts = await _redisService.GetTopProductsAsync(); + await Clients.Caller.SendAsync("ReceiveTopProducts", topProducts); } } \ No newline at end of file diff --git a/polyglot-persistence/DemoWeb/appsettings.Development.json b/mix-and-match-database/DemoWeb/appsettings.Development.json similarity index 100% rename from polyglot-persistence/DemoWeb/appsettings.Development.json rename to mix-and-match-database/DemoWeb/appsettings.Development.json diff --git a/polyglot-persistence/DemoWeb/appsettings.json b/mix-and-match-database/DemoWeb/appsettings.json similarity index 100% rename from polyglot-persistence/DemoWeb/appsettings.json rename to mix-and-match-database/DemoWeb/appsettings.json diff --git a/polyglot-persistence/DemoWeb/wwwroot/css/site.css b/mix-and-match-database/DemoWeb/wwwroot/css/site.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/css/site.css rename to mix-and-match-database/DemoWeb/wwwroot/css/site.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/favicon.ico b/mix-and-match-database/DemoWeb/wwwroot/favicon.ico similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/favicon.ico rename to mix-and-match-database/DemoWeb/wwwroot/favicon.ico diff --git a/polyglot-persistence/DemoWeb/wwwroot/js/site.js b/mix-and-match-database/DemoWeb/wwwroot/js/site.js similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/js/site.js rename to mix-and-match-database/DemoWeb/wwwroot/js/site.js diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/LICENSE b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/LICENSE similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/LICENSE rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/LICENSE diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map b/mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/jquery/LICENSE.txt b/mix-and-match-database/DemoWeb/wwwroot/lib/jquery/LICENSE.txt similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/jquery/LICENSE.txt rename to mix-and-match-database/DemoWeb/wwwroot/lib/jquery/LICENSE.txt diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/jquery/dist/jquery.js b/mix-and-match-database/DemoWeb/wwwroot/lib/jquery/dist/jquery.js similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/jquery/dist/jquery.js rename to mix-and-match-database/DemoWeb/wwwroot/lib/jquery/dist/jquery.js diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/jquery/dist/jquery.min.js b/mix-and-match-database/DemoWeb/wwwroot/lib/jquery/dist/jquery.min.js similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/jquery/dist/jquery.min.js rename to mix-and-match-database/DemoWeb/wwwroot/lib/jquery/dist/jquery.min.js diff --git a/polyglot-persistence/DemoWeb/wwwroot/lib/jquery/dist/jquery.min.map b/mix-and-match-database/DemoWeb/wwwroot/lib/jquery/dist/jquery.min.map similarity index 100% rename from polyglot-persistence/DemoWeb/wwwroot/lib/jquery/dist/jquery.min.map rename to mix-and-match-database/DemoWeb/wwwroot/lib/jquery/dist/jquery.min.map diff --git a/polyglot-persistence/MongoProjection/MongoProjection.csproj b/mix-and-match-database/MongoProjection/MongoProjection.csproj similarity index 100% rename from polyglot-persistence/MongoProjection/MongoProjection.csproj rename to mix-and-match-database/MongoProjection/MongoProjection.csproj diff --git a/polyglot-persistence/MongoProjection/Program.cs b/mix-and-match-database/MongoProjection/Program.cs similarity index 96% rename from polyglot-persistence/MongoProjection/Program.cs rename to mix-and-match-database/MongoProjection/Program.cs index cf0a18d..d6b9e6d 100644 --- a/polyglot-persistence/MongoProjection/Program.cs +++ b/mix-and-match-database/MongoProjection/Program.cs @@ -9,9 +9,9 @@ // Connect to MongoDB var mongoHost = Environment.GetEnvironmentVariable("MONGO_HOST") ?? "localhost"; -var mongoCollection = new MongoClient($"mongodb://{mongoHost}:27017").GetDatabase("polyglot-persistence").GetCollection("total-payment"); +var mongoCollection = new MongoClient($"mongodb://{mongoHost}:27017").GetDatabase("mix-and-match-database").GetCollection("total-payment"); -// Connect to EventStoreDB +// Connect to KurrentDB var esdbHost = Environment.GetEnvironmentVariable("ESDB_HOST") ?? "localhost"; var esdb = new EventStoreClient(EventStoreClientSettings.Create($"esdb://admin:changeit@{esdbHost}:2113?tls=false")); diff --git a/mix-and-match-database/PostgresProjection/CartProjection.cs b/mix-and-match-database/PostgresProjection/CartProjection.cs new file mode 100644 index 0000000..b9c05c9 --- /dev/null +++ b/mix-and-match-database/PostgresProjection/CartProjection.cs @@ -0,0 +1,177 @@ +using Common; +using Dapper; +using EventStore.Client; + +namespace PostgresProjection; + +public static class CartProjection +{ + public static IEnumerable? Project(ResolvedEvent evt) + { + var decodedEvent = CartEventEncoder.Decode(evt.Event.Data, evt.Event.EventType); + + IEnumerable? command = decodedEvent switch + { + VisitorStartedShopping visitor => Project(visitor), + CustomerStartedShopping customer => Project(customer), + CartShopperGotIdentified identified => Project(identified), + CartGotCheckedOut checkedOut => Project(checkedOut), + CartGotAbandoned abandoned => Project(abandoned), + ItemGotAdded added => Project(added), + ItemGotRemoved removed => Project(removed), + _ => null + }; + + return command; + } + + private static IEnumerable? Project(VisitorStartedShopping evt) + { + var sql = @"INSERT INTO carts(cart_id, customer_id, status, created_at, updated_at) + VALUES(@CartId, null, @Status, @Timestamp, @Timestamp) + ON CONFLICT(cart_id) DO NOTHING"; + + var parameters = new { CartId = evt.cartId, Status = "STARTED", Timestamp = evt.at }; + + yield return new CommandDefinition(sql, parameters); + } + + private static IEnumerable? Project(CustomerStartedShopping evt) + { + var sql = @"INSERT INTO carts(cart_id, customer_id, status, created_at, updated_at) + VALUES(@CartId, @CustomerId, @Status, @Timestamp, @Timestamp) + ON CONFLICT(cart_id) DO NOTHING"; + + var parameters = new { CartId = evt.cartId, CustomerId = evt.customerId, Status = "STARTED", Timestamp = evt.at }; + + yield return new CommandDefinition(sql, parameters); + } + + private static IEnumerable? Project(CartShopperGotIdentified evt) + { + var sql = @"UPDATE carts + SET customer_id = @CustomerId, + updated_at = @Timestamp + WHERE cart_id = @CartId"; + + var parameters = new { CartId = evt.cartId, CustomerId = evt.customerId, Timestamp = evt.at }; + + yield return new CommandDefinition(sql, parameters); + } + + private static IEnumerable? Project(CartGotCheckedOut evt) + { + var sql = @"UPDATE carts + SET status = @Status, + updated_at = @Timestamp + WHERE cart_id = @CartId"; + + var parameters = new { CartId = evt.cartId, Status = "CHECKED_OUT", Timestamp = evt.at }; + + yield return new CommandDefinition(sql, parameters); + } + + private static IEnumerable? Project(CartGotAbandoned evt) + { + var sql = @"UPDATE carts + SET status = @Status, + updated_at = @Timestamp + WHERE cart_id = @CartId"; + + var parameters = new { CartId = evt.cartId, Status = "ABANDONED", Timestamp = evt.at }; + + yield return new CommandDefinition(sql, parameters); + } + + private static IEnumerable? Project(ItemGotAdded evt) + { + var sql = @"INSERT INTO cart_items( + cart_id, + product_id, + product_name, + quantity, + currency, + price_per_unit, + tax_rate, + updated_at) + VALUES( + @CartId, + @ProductId, + @ProductName, + @Quantity, + @Currency, + @PricePerUnit, + @TaxRate, + @Timestamp) + ON CONFLICT(cart_id, product_id) + DO UPDATE SET + quantity = cart_items.quantity + @Quantity, + updated_at = @Timestamp"; + + var parameters = new + { + CartId = evt.cartId, + ProductId = evt.productId, + ProductName = evt.productName, + Quantity = evt.quantity, + Currency = evt.currency, + PricePerUnit = evt.pricePerUnit, + TaxRate = evt.taxRate, + Timestamp = evt.at + }; + + yield return new CommandDefinition(sql, parameters); + } + + private static IEnumerable? Project(ItemGotRemoved evt) + { + var updateSql = @"UPDATE cart_items + SET quantity = quantity - @Quantity, + updated_at = @Timestamp + WHERE cart_id = @CartId AND product_id = @ProductId;"; + + var parameters = new + { + CartId = evt.cartId, + ProductId = evt.productId, + Quantity = evt.quantity, + Timestamp = evt.at + }; + + yield return new CommandDefinition(updateSql, parameters); + + var deleteSql = @"DELETE FROM cart_items + WHERE cart_id = @CartId AND product_id = @ProductId AND quantity = 0;"; + + yield return new CommandDefinition(deleteSql, parameters); + + } + + + public static IEnumerable GetCreateTableCommand() + { + yield return new CommandDefinition(@" + CREATE TABLE IF NOT EXISTS carts ( + cart_id TEXT PRIMARY KEY, + customer_id TEXT NULL, + status TEXT NOT NULL DEFAULT 'STARTED', + created_at TIMESTAMP NOT NULL, + updated_at TIMESTAMP NOT NULL + )"); + + yield return new CommandDefinition(@" + CREATE TABLE IF NOT EXISTS cart_items ( + cart_id TEXT NOT NULL, + product_id TEXT NOT NULL, + product_name TEXT NOT NULL, + quantity INTEGER NOT NULL, + currency TEXT NULL, + price_per_unit DECIMAL(10,2) NOT NULL, + tax_rate DECIMAL(5,2) NOT NULL, + updated_at TIMESTAMP NOT NULL, + PRIMARY KEY (cart_id, product_id), + FOREIGN KEY (cart_id) REFERENCES carts(cart_id) ON DELETE CASCADE + )"); + } + +} diff --git a/polyglot-persistence/PostgresProjection/PostgresDataAccess.cs b/mix-and-match-database/PostgresProjection/PostgresDataAccess.cs similarity index 64% rename from polyglot-persistence/PostgresProjection/PostgresDataAccess.cs rename to mix-and-match-database/PostgresProjection/PostgresDataAccess.cs index 7ca35ef..d8da585 100644 --- a/polyglot-persistence/PostgresProjection/PostgresDataAccess.cs +++ b/mix-and-match-database/PostgresProjection/PostgresDataAccess.cs @@ -31,17 +31,35 @@ public void Commit() return _connection.QueryFirstOrDefault(command); } + public T? QueryFirstOrDefault(string sql) + { + return _connection.QueryFirstOrDefault(sql); + } + + public void Execute(CommandDefinition command) { _connection.Execute(command); } - public void Execute(IEnumerable commands) + public void Execute(string sql, object? param) + { + _connection.Execute(sql, param); + } + + + public void Execute(IEnumerable? commands) + { + if (commands != null) + foreach (var command in commands) + { + _connection.Execute(command); + } + } + + public void Execute(string sql) { - foreach (var command in commands) - { - _connection.Execute(command); - } + _connection.Execute(sql); } public void Dispose() diff --git a/polyglot-persistence/PostgresProjection/PostgresProjection.csproj b/mix-and-match-database/PostgresProjection/PostgresProjection.csproj similarity index 100% rename from polyglot-persistence/PostgresProjection/PostgresProjection.csproj rename to mix-and-match-database/PostgresProjection/PostgresProjection.csproj diff --git a/mix-and-match-database/PostgresProjection/Program.cs b/mix-and-match-database/PostgresProjection/Program.cs new file mode 100644 index 0000000..16070e0 --- /dev/null +++ b/mix-and-match-database/PostgresProjection/Program.cs @@ -0,0 +1,107 @@ +// ======================================================================================================================= +// Postgres Projection from KurrentDB +// ======================================================================================================================= +// This sample demonstrates how to project events from KurrentDB to a read model in Postgres. +// +// It: +// +// 1. Connects to Postgres and KurrentDB +// 2. Retrieves the last checkpoint position from Postgres +// 3. Subscribes to the cart category projection stream in KurrentDB +// 4. Iterates each event from the subscription +// 5. Processes each event to update the Postgres read model +// 6. Maintains a checkpoint in Postgres to track progress +// +// The read model is a denormalized view of the cart events, which can be used for reporting or querying purposes. +// The projection is done in a way that ensures the read model is always up to date with the latest events from KurrentDB. +// ======================================================================================================================= + +using EventStore.Client; +using Npgsql; +using PostgresProjection; +using StreamPosition = EventStore.Client.StreamPosition; + +Console.WriteLine($"{AppDomain.CurrentDomain.FriendlyName} started"); + +// ------------------------------- // +// Connect and initialize Postgres // +// ------------------------------- // + +var postgresHost = Environment.GetEnvironmentVariable("POSTGRES_HOST") // Get the Postgres host from environment variable + ?? "localhost"; // Default to localhost if not set + +var postgres = new PostgresDataAccess( // Create a postgres connection and inject into a custom data access class + new NpgsqlConnection( + $"Host={postgresHost};Port=5432;" + + $"Database=postgres;Username=postgres")); + +postgres.Execute(CartProjection.GetCreateTableCommand()); // Create the cart related tables if it doesn't exist + +postgres.Execute("CREATE TABLE IF NOT EXISTS checkpoints " + // Create the checkpoint table if it doesn't exist + "(read_model_name TEXT PRIMARY KEY," + + "checkpoint BIGINT NOT NULL)"); + +// -------------------- // +// Connect to KurrentDB // +// -------------------- // + +var esdbHost = Environment.GetEnvironmentVariable("ESDB_HOST") // Get the KurrentDB host from environment variable + ?? "localhost"; // Default to localhost if not set + +var esdb = new EventStoreClient( // Create a connection to KurrentDB + EventStoreClientSettings.Create( + $"esdb://admin:changeit@{esdbHost}:2113?tls=false")); + +// --------------------------------------------------- // +// Retrieve the last checkpoint position from Postgres // +// --------------------------------------------------- // + +var checkpointValue = postgres.QueryFirstOrDefault( // Get the checkpoint value from Postgres checkpoint table + "SELECT checkpoint " + + "FROM checkpoints " + + "WHERE read_model_name = 'carts'"); + +var streamPosition = checkpointValue.HasValue // Check if the checkpoint exists.. + ? FromStream.After(StreamPosition.FromInt64(checkpointValue.Value)) // if so, subscribe from stream after checkpoint.. + : FromStream.Start; // otherwise, subscribe from the start of the stream + +// ---------------------------------------------- // +// Subscribe to KurrentDB from checkpoint onwards // +// ---------------------------------------------- // + +await using var subscription = esdb.SubscribeToStream( // Subscribe events.. + "$ce-cart", // from the cart category system projection.. + streamPosition, // from this position.. + true); // with linked events automatically resolved (required for system projections) + +Console.WriteLine($"Subscribing events from stream after {streamPosition}"); + +// ---------------------------------------- // +// Process each event from the subscription // +// ---------------------------------------- // + +await foreach (var message in subscription.Messages) // Iterate through the messages in the subscription +{ + if (message is not StreamMessage.Event(var e)) continue; // Skip this message if it is not an event + + postgres.BeginTransaction(); // Begin a transaction for Postgres + + postgres.Execute(CartProjection.Project(e)); // Update the Postgres read model based on the event being processed + + postgres.Execute( + "INSERT INTO checkpoints (read_model_name, checkpoint) " + // Insert checkpoint into the checkpoint table + "VALUES (@ReadModelName, @Checkpoint) " + + "ON CONFLICT (read_model_name) DO " + // If the read model name already exists.. + "UPDATE SET checkpoint = @Checkpoint", // then update the checkpoint value + new + { + ReadModelName = "carts", + Checkpoint = e.OriginalEventNumber.ToInt64() // Get the stream position from the event + }); + + postgres.Commit(); // Commit the transaction only if the read model and checkpoint are updated successfully + + Console.WriteLine($"Projected event " + + $"#{e.OriginalEventNumber.ToInt64()} " + + $"{e.Event.EventType}"); +} \ No newline at end of file diff --git a/polyglot-persistence/README.md b/mix-and-match-database/README.md similarity index 100% rename from polyglot-persistence/README.md rename to mix-and-match-database/README.md diff --git a/mix-and-match-database/RedisProjection/CartProjection.cs b/mix-and-match-database/RedisProjection/CartProjection.cs new file mode 100644 index 0000000..5c2f02d --- /dev/null +++ b/mix-and-match-database/RedisProjection/CartProjection.cs @@ -0,0 +1,58 @@ +using System; +using Common; +using EventStore.Client; +using StackExchange.Redis; + +namespace RedisProjection; + +public class CartProjection +{ + public static bool TryProject(ITransaction transaction, ResolvedEvent resolvedEvent) + { + var decodedEvent = CartEventEncoder.Decode( // Deserialize the KurrentDB resolved event into cart events + resolvedEvent.Event.Data, resolvedEvent.Event.EventType); + + if (decodedEvent is not ItemGotAdded && // If the event is not of type ItemGotAdded or ItemGotRemoved + decodedEvent is not ItemGotRemoved) + return false; // then return false + + switch (decodedEvent) // Check the type of the event + { + case ItemGotAdded added: // If it is ItemGotAdded, call the Project method for it + Project(transaction, added); + break; + case ItemGotRemoved removed: // If it is ItemGotRemoved, call the Project method for it + Project(transaction, removed); + break; + default: + return false; // If it is neither, return false + } + + return true; // Return true if the event was successfully projected + } + + public static void Project(ITransaction txn, ItemGotAdded addedEvent) + { + var hourKey = $"top-10-products:{addedEvent.at:yyyyMMddHH}"; // Create a key for the current hour + var productKey = addedEvent.productId; // Use the product ID as the member in the sorted set + var productName = addedEvent.productName; // Assuming `productName` is part of the event + + txn.SortedSetIncrementAsync(hourKey, productKey, addedEvent.quantity); // Increment the quantity of the product in the sorted set + txn.HashSetAsync("product-names", productKey, productName); // Store product name in a hash; + + Console.WriteLine($"Incremented product {addedEvent.productId} in " + + $"{hourKey} by {addedEvent.quantity}"); + } + + public static void Project(ITransaction txn, ItemGotRemoved removedEvent) + { + var hourKey = $"top-10-products:{removedEvent.at:yyyyMMddHH}"; // Create a key for the current hour + var productKey = removedEvent.productId; // Use the product ID as the member in the sorted set + + txn.SortedSetDecrementAsync(hourKey, productKey, // Decrement the quantity of the product in the sorted set + removedEvent.quantity); + + Console.WriteLine($"Decremented product {removedEvent.productId} in " + + $"{hourKey} by {removedEvent.quantity}"); + } +} \ No newline at end of file diff --git a/mix-and-match-database/RedisProjection/Program.cs b/mix-and-match-database/RedisProjection/Program.cs new file mode 100644 index 0000000..455b369 --- /dev/null +++ b/mix-and-match-database/RedisProjection/Program.cs @@ -0,0 +1,64 @@ +using System; +using EventStore.Client; +using RedisProjection; +using StackExchange.Redis; +using StreamPosition = EventStore.Client.StreamPosition; + +Console.WriteLine($"{AppDomain.CurrentDomain.FriendlyName} started"); + +// ---------------- // +// Connect to Redis // +// ---------------- // + +var redisHost = Environment.GetEnvironmentVariable("REDIS_HOST") + ?? "localhost"; +var redis = ConnectionMultiplexer.Connect($"{redisHost}:6379") + .GetDatabase(); + +// -------------------- // +// Connect to KurrentDB // +// -------------------- // + +var esdbHost = Environment.GetEnvironmentVariable("ESDB_HOST") // Get the KurrentDB host from environment variable + ?? "localhost"; // Default to localhost if not set + +var esdb = new EventStoreClient( // Create a connection to KurrentDB + EventStoreClientSettings.Create( + $"esdb://admin:changeit@{esdbHost}:2113?tls=false")); + +// ------------------------------------------------ // +// Retrieve the last checkpoint position from Redis // +// ------------------------------------------------ // + +var checkpointValue = redis.StringGet("checkpoint"); // Get the checkpoint value from redis +var streamPosition = long.TryParse(checkpointValue, out var checkpoint) // Check if it exists and convertible to long + ? FromStream.After(StreamPosition.FromInt64(checkpoint)) // If so, set var to subscribe events from stream after checkpoint + : FromStream.Start; // Otherwise, set var to subscribe events from stream from the start + +// ---------------------------------------------- // +// Subscribe to KurrentDB from checkpoint onwards // +// ---------------------------------------------- // + +await using var subscription = esdb.SubscribeToStream( // Subscribe events.. + "$ce-cart", // from the cart category system projection.. + streamPosition, // from this position.. + true); // with linked events automatically resolved (required for system projections) + +Console.WriteLine($"Subscribing events from stream after {streamPosition}"); + +// ---------------------------------------- // +// Process each event from the subscription // +// ---------------------------------------- // + +await foreach (var message in subscription.Messages) // Iterate through the messages in the subscription +{ + if (message is not StreamMessage.Event(var e)) continue; // Skip if message is not an event + + var txn = redis.CreateTransaction(); // Create a transaction for Redis + + if (!CartProjection.TryProject(txn, e)) continue; // Try to project the event by updating a redis key-value pair. If not successful, then skip it + + txn.StringSetAsync("checkpoint", e.OriginalEventNumber.ToInt64()); // Set the checkpoint to the current event number + + txn.Execute(); // Execute the transaction. Ensures the projection and checkpoint are successfully written to Redis atomically +} \ No newline at end of file diff --git a/polyglot-persistence/RedisProjection/RedisProjection.csproj b/mix-and-match-database/RedisProjection/RedisProjection.csproj similarity index 100% rename from polyglot-persistence/RedisProjection/RedisProjection.csproj rename to mix-and-match-database/RedisProjection/RedisProjection.csproj diff --git a/mix-and-match-database/data/datagen.init.config b/mix-and-match-database/data/datagen.init.config new file mode 100644 index 0000000..560ad46 --- /dev/null +++ b/mix-and-match-database/data/datagen.init.config @@ -0,0 +1,36 @@ +{ + "shopping": { + "shoppingPeriod": { + "from": "2025-04-08T08:54:24.0000000Z", + "to": "2025-04-08T08:54:24.0000000Z" + }, + "cartCount": { + "minimum": 2, + "maximum": 2 + }, + "concurrentCartCount": { + "minimum": 2, + "maximum": 2 + }, + "cartActionCount": { + "minimum": 4, + "maximum": 8 + }, + "timeBetweenCartActions": { + "minimum": "0:00:05", + "maximum": "0:15:00" + }, + "timeBetweenCheckoutActions": { + "minimum": "0:00:30", + "maximum": "0:02:00" + }, + "abandonCartAfterTime": "1:00:00" + }, + "pim": { + "productCount": { + "minimum": 10, + "maximum": 20 + }, + "productSource": "amazon" + } +} diff --git a/mix-and-match-database/data/datagen.live.config b/mix-and-match-database/data/datagen.live.config new file mode 100644 index 0000000..aa34187 --- /dev/null +++ b/mix-and-match-database/data/datagen.live.config @@ -0,0 +1,36 @@ +{ + "shopping": { + "shoppingPeriod": { + "from": "2024-11-29T00:00:00Z", + "to": "2024-11-29T23:59:59.9999999Z" + }, + "cartCount": { + "minimum": 500, + "maximum": 1000 + }, + "concurrentCartCount": { + "minimum": 100, + "maximum": 500 + }, + "cartActionCount": { + "minimum": 1, + "maximum": 7 + }, + "timeBetweenCartActions": { + "minimum": "0:00:05", + "maximum": "0:02:00" + }, + "timeBetweenCheckoutActions": { + "minimum": "0:00:30", + "maximum": "0:02:00" + }, + "abandonCartAfterTime": "00:05:00" + }, + "pim": { + "productCount": { + "minimum": 10, + "maximum": 20 + }, + "productSource": "amazon" + } +} diff --git a/polyglot-persistence/docker-compose.yml b/mix-and-match-database/docker-compose.app.yml similarity index 58% rename from polyglot-persistence/docker-compose.yml rename to mix-and-match-database/docker-compose.app.yml index b0ce631..ea73fcc 100644 --- a/polyglot-persistence/docker-compose.yml +++ b/mix-and-match-database/docker-compose.app.yml @@ -1,36 +1,4 @@ services: - mongo: - image: mongo:7.0 - container_name: mongo - ports: - - "27017:27017" - - postgres: - image: postgres:16 - container_name: postgres - ports: - - "5432:5432" - environment: - - POSTGRES_HOST_AUTH_METHOD=trust - - redis: - image: redis:7.2 - container_name: redis - ports: - - "6379:6379" - - eventstore: - image: eventstore/eventstore:24.10 - container_name: eventstore - ports: - - "2113:2113" - - "1113:1113" - environment: - - EVENTSTORE_RUN_PROJECTIONS=All - - EVENTSTORE_START_STANDARD_PROJECTIONS=true - - EVENTSTORE_INSECURE=true - - EVENTSTORE_ENABLE_ATOM_PUB_OVER_HTTP=true - demoweb: image: mcr.microsoft.com/dotnet/sdk:9.0 container_name: demoweb @@ -54,9 +22,6 @@ services: environment: - POSTGRES_HOST=postgres - ESDB_HOST=eventstore - depends_on: - - postgres - - eventstore redisprojection: image: mcr.microsoft.com/dotnet/sdk:9.0 @@ -68,9 +33,6 @@ services: environment: - REDIS_HOST=redis - ESDB_HOST=eventstore - depends_on: - - redis - - eventstore mongoprojection: image: mcr.microsoft.com/dotnet/sdk:9.0 @@ -81,7 +43,4 @@ services: command: ["dotnet", "run", "--project", "./MongoProjection"] environment: - MONGO_HOST=mongo - - ESDB_HOST=eventstore - depends_on: - - mongo - - eventstore \ No newline at end of file + - ESDB_HOST=eventstore \ No newline at end of file diff --git a/mix-and-match-database/docker-compose.yml b/mix-and-match-database/docker-compose.yml new file mode 100644 index 0000000..a0cc4c2 --- /dev/null +++ b/mix-and-match-database/docker-compose.yml @@ -0,0 +1,32 @@ +services: + mongo: + image: mongo:7.0 + container_name: mongo + ports: + - "27017:27017" + + postgres: + image: postgres:16 + container_name: postgres + ports: + - "5432:5432" + environment: + - POSTGRES_HOST_AUTH_METHOD=trust + + redis: + image: redis:7.2 + container_name: redis + ports: + - "6379:6379" + + eventstore: + image: eventstore/eventstore:24.10 + container_name: eventstore + ports: + - "2113:2113" + - "1113:1113" + environment: + - EVENTSTORE_RUN_PROJECTIONS=All + - EVENTSTORE_START_STANDARD_PROJECTIONS=true + - EVENTSTORE_INSECURE=true + - EVENTSTORE_ENABLE_ATOM_PUB_OVER_HTTP=true \ No newline at end of file diff --git a/polyglot-persistence/polyglot-persistence.sln b/mix-and-match-database/polyglot-persistence.sln similarity index 100% rename from polyglot-persistence/polyglot-persistence.sln rename to mix-and-match-database/polyglot-persistence.sln diff --git a/mix-and-match-database/scripts/0-prebuild-containers.sh b/mix-and-match-database/scripts/0-prebuild-containers.sh new file mode 100644 index 0000000..bdeb1fd --- /dev/null +++ b/mix-and-match-database/scripts/0-prebuild-containers.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +if [ -n "$CODESPACES" ]; then + # In Codespace environment, use the preset project root path + root_path="/workspaces/developer-bootcamp/mix-and-match-database" +else + # Otherwise, assume you are in the project root directory + root_path="./" +fi + +# Exit if the data directory does not exist +if [ ! -d "$root_path/data" ]; then + echo "Error: Data directory $root_path/data does not exist. Exiting." + exit 1 +fi + +sudo apt-get update +sudo apt-get install -y git-lfs +git lfs install +git lfs pull + +find "$root_path/tools/" -type f -name "edb-commerce*" -exec chmod +x {} \; +# Ensure all scripts in the /scripts directory have executable permission +chmod +x "$root_path/scripts"/*.sh + +"$root_path/scripts/start-db.sh" # Start the database containers +"$root_path/scripts/start-app.sh" # Start the application containers \ No newline at end of file diff --git a/mix-and-match-database/scripts/1-init-data.sh b/mix-and-match-database/scripts/1-init-data.sh new file mode 100644 index 0000000..d189837 --- /dev/null +++ b/mix-and-match-database/scripts/1-init-data.sh @@ -0,0 +1,57 @@ +#!/bin/bash + +if [ -n "$CODESPACES" ]; then + # In Codespace environment, use the preset project root path + root_path="/workspaces/developer-bootcamp/mix-and-match-database" +else + # Otherwise, assume you are in the project root directory + root_path="./" +fi + +# Exit if the data directory does not exist +if [ ! -d "$root_path/data" ]; then + echo "Error: Data directory $root_path/data does not exist. Exiting." + exit 1 +fi + +# Set variables based on input arguments +data_dir="$root_path/data" # Directory that contains the configuration file +datagen_init_config_path="$data_dir/datagen.init.config" # Path to the initialization configuration file +data_init_zip="$data_dir/data.init.zip" # Path for the output zip file containing generated data +data_init_path="$data_dir/data.init.json" # Path to the extracted JSON file for seeding +edbcommerce="$root_path/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce" # Path to the edb-commerce executable + +"$root_path/scripts/start-db.sh" # Start the database containers + +# Get current UTC time and UTC time from 15 minutes ago in the required format +shoppingPeriod=$(date -u -d '2 hours ago' +"%Y-%m-%dT%H:%M:%S.0000000Z") + +# Update the shopping period in the configuration file using jq +jq --arg from "$shoppingPeriod" --arg to "$shoppingPeriod" \ + '.shopping.shoppingPeriod.from = $from | .shopping.shoppingPeriod.to = $to' \ + "$datagen_init_config_path" > tmp.json && mv tmp.json "$datagen_init_config_path" + +# Generate the data set using the updated configuration via edb-commerce +"$edbcommerce" generate-data-set --configuration "$datagen_init_config_path" --output "$data_dir/data.init.zip" + +# Unzip the generated data set into the data directory +unzip "$data_init_zip" -d "$data_dir" +# Rename the extracted data file to match the expected name +mv "$data_dir/data.json" "$data_init_path" + +# Seed the data using the edb-commerce tool with the updated initialization JSON +"$edbcommerce" seed-data-set "$data_init_path" + +ESDB_URL=http://localhost:2113 # Set default URL to localhost (for KurrentDB started locally, not in Codespaces) +if [ "$CODESPACES" == "true" ]; then # If this environment is Codespaces + ESDB_URL=https://"$CODESPACE_NAME"-2113.$GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN # Build the URL to forwarded github codespaces domain +fi + +echo "" +echo "" +echo -e "🚀 \e[32mKurrentDB Server has started!!\e[0m 🚀" +echo "" +echo -e "URL to KurrentDB Admin UI 👉 \e[0m \e[34m$ESDB_URL\e[0m" # Print URL to KurrentDB Admin UI +echo "" +echo "" +echo "Appended sample data to KurrentDB" diff --git a/mix-and-match-database/scripts/2-start-projections.sh b/mix-and-match-database/scripts/2-start-projections.sh new file mode 100644 index 0000000..5e15cc4 --- /dev/null +++ b/mix-and-match-database/scripts/2-start-projections.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +if [ -n "$CODESPACES" ]; then + # In Codespace environment, use the preset project root path + root_path="/workspaces/developer-bootcamp/mix-and-match-database" +else + # Otherwise, assume you are in the project root directory + root_path="./" +fi + +# Exit if the data directory does not exist +if [ ! -d "$root_path/data" ]; then + echo "Error: Data directory $root_path/data does not exist. Exiting." + exit 1 +fi + +"$root_path/scripts/start-app.sh" # Start the app containers \ No newline at end of file diff --git a/mix-and-match-database/scripts/3-start-demo-web-page.sh b/mix-and-match-database/scripts/3-start-demo-web-page.sh new file mode 100644 index 0000000..d861efc --- /dev/null +++ b/mix-and-match-database/scripts/3-start-demo-web-page.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +if [ -n "$CODESPACES" ]; then + # In Codespace environment, use the preset project root path + root_path="/workspaces/developer-bootcamp/mix-and-match-database" +else + # Otherwise, assume you are in the project root directory + root_path="./" +fi + +# Exit if the data directory does not exist +if [ ! -d "$root_path/data" ]; then + echo "Error: Data directory $root_path/data does not exist. Exiting." + exit 1 +fi + +"$root_path/scripts/start-app.sh" # Start the app containers + +DEMOWEB_URL=http://localhost:5108 # Set default URL to localhost +if [ "$CODESPACES" == "true" ]; then # If this environment is Codespaces + DEMOWEB_URL=https://"$CODESPACE_NAME"-5108.$GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN # Build the URL to forwarded github codespaces domain +fi + +echo "" +echo "" +echo -e "URL to the Demo web Page 👉 \e[0m \e[34m$DEMOWEB_URL\e[0m" # Print URL to KurrentDB Admin UI +echo "" +echo "" \ No newline at end of file diff --git a/mix-and-match-database/scripts/4-start-live-data-gen.sh b/mix-and-match-database/scripts/4-start-live-data-gen.sh new file mode 100644 index 0000000..2d9106f --- /dev/null +++ b/mix-and-match-database/scripts/4-start-live-data-gen.sh @@ -0,0 +1,38 @@ +#!/bin/bash + +if [ -n "$CODESPACES" ]; then + # In Codespace environment, use the preset project root path + root_path="/workspaces/developer-bootcamp/mix-and-match-database" +else + # Otherwise, assume you are in the project root directory + root_path="./" +fi + +# Exit if the data directory does not exist +if [ ! -d "$root_path/data" ]; then + echo "Error: Data directory $root_path/data does not exist. Exiting." + exit 1 +fi + + + ESDB_URL=http://localhost:2113 # Set default URL to localhost (for KurrentDB started locally, not in Codespaces) +if [ "$CODESPACES" == "true" ]; then # If this environment is Codespaces + ESDB_URL=https://"$CODESPACE_NAME"-2113.$GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN # Build the URL to forwarded github codespaces domain +fi + +echo "" +echo "" +echo -e "URL to KurrentDB Admin UI 👉 \e[0m \e[34m$ESDB_URL\e[0m" # Print URL to KurrentDB Admin UI +echo "" + +DEMOWEB_URL=http://localhost:5108 # Set default URL to localhost +if [ "$CODESPACES" == "true" ]; then # If this environment is Codespaces + DEMOWEB_URL=https://"$CODESPACE_NAME"-5108.$GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN # Build the URL to forwarded github codespaces domain +fi + +echo "" +echo -e "URL to the Demo web Page 👉 \e[0m \e[34m$DEMOWEB_URL\e[0m" # Print URL to KurrentDB Admin UI +echo "" +echo "" + + "$root_path/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce" live-data-set --configuration ./data/datagen.live.config diff --git a/mix-and-match-database/scripts/start-app.sh b/mix-and-match-database/scripts/start-app.sh new file mode 100644 index 0000000..f2f678e --- /dev/null +++ b/mix-and-match-database/scripts/start-app.sh @@ -0,0 +1,53 @@ +#!/bin/bash + +if [ -n "$CODESPACES" ]; then + # In Codespace environment, use the preset project root path + root_path="/workspaces/developer-bootcamp/mix-and-match-database" +else + # Otherwise, assume you are in the project root directory + root_path="./" +fi + +# Exit if the data directory does not exist +if [ ! -d "$root_path/data" ]; then + echo "Error: Data directory $root_path/data does not exist. Exiting." + exit 1 +fi + +docker_compose_file="$root_path/docker-compose.app.yml" + +docker compose -f "$docker_compose_file" up -d + +max_attempts=60 +attempt=0 +while ! curl -s -o /dev/null -w "%{http_code}" http://localhost:5108/carts | grep -q "200"; do + if [ "$attempt" -ge "$max_attempts" ]; then # If number of attempts exceeds max_attempts then we exit + echo "DemoWeb is not available. Exiting" + exit 1 + fi + echo "Waiting for DemoWeb to start... (attempt $attempt)" + attempt=$((attempt+1)) # Increment the attempt count + sleep 2 # Wait for a few seconds before checking again +done + +echo "DemoWeb is running." + +# Wait for the required projection messages to be detected +max_attempts=60 +attempt=0 +while true; do + logs=$(docker compose -f "$docker_compose_file" logs 2>&1) + if echo "$logs" | grep -q "MongoProjection started" && \ + echo "$logs" | grep -q "RedisProjection started" && \ + echo "$logs" | grep -q "PostgresProjection started"; then + echo "All projection apps are running." + break + fi + attempt=$((attempt+1)) + if [ $attempt -ge $max_attempts ]; then + echo "Required projections did not start after $max_attempts attempts. Exiting." + exit 1 + fi + echo "Waiting projection apps to start... (attempt $attempt)" + sleep 2 +done \ No newline at end of file diff --git a/mix-and-match-database/scripts/start-db.sh b/mix-and-match-database/scripts/start-db.sh new file mode 100644 index 0000000..30e4448 --- /dev/null +++ b/mix-and-match-database/scripts/start-db.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +if [ -n "$CODESPACES" ]; then + # In Codespace environment, use the preset project root path + root_path="/workspaces/developer-bootcamp/mix-and-match-database" +else + # Otherwise, assume you are in the project root directory + root_path="./" +fi + +# Exit if the data directory does not exist +if [ ! -d "$root_path/data" ]; then + echo "Error: Data directory $root_path/data does not exist. Exiting." + exit 1 +fi + +docker compose -f "$root_path/docker-compose.yml" up -d + +max_attempts=60 +attempt=0 +while ! curl -s -o /dev/null -w "%{http_code}" http://localhost:2113/web/index.html | grep -q "200"; do + if [ "$attempt" -ge "$max_attempts" ]; then # If number of attempts exceeds max_attempts then we exit + echo "KurrentDB is not available. Exiting" + exit 1 + fi + echo "Waiting for databases to start... (attempt $attempt)" + attempt=$((attempt+1)) # Increment the attempt count + sleep 2 # Wait for a few seconds before checking again +done + +echo "Databases are running." \ No newline at end of file diff --git a/mix-and-match-database/tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce b/mix-and-match-database/tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce new file mode 100644 index 0000000..9c6eb65 --- /dev/null +++ b/mix-and-match-database/tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:934b8f4e4749c6177f4917bd7cfee3854684f43a6fe24502d22851d4f8d8b1c9 +size 144896471 diff --git a/mix-and-match-database/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce b/mix-and-match-database/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce new file mode 100644 index 0000000..000feed --- /dev/null +++ b/mix-and-match-database/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66cd0ffac0838b7e44ddacb5dbf9c0499756bcf723592a2738de756f33396ff3 +size 141347795 diff --git a/mix-and-match-database/tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce b/mix-and-match-database/tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce new file mode 100644 index 0000000..489cc25 --- /dev/null +++ b/mix-and-match-database/tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d75625af5e5bb9718049cbaf3ad044b8355c459ad7e460188a54217f54e098 +size 89480394 diff --git a/mix-and-match-database/tools/Kurrent.Extensions.Commerce/osx-arm64/libduckdb.dylib b/mix-and-match-database/tools/Kurrent.Extensions.Commerce/osx-arm64/libduckdb.dylib new file mode 100644 index 0000000..50ad999 --- /dev/null +++ b/mix-and-match-database/tools/Kurrent.Extensions.Commerce/osx-arm64/libduckdb.dylib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:007f820901b91cbe0abf54c41462cb7c4f49bbe156c6aee49ee790c16f72a58e +size 102351312 diff --git a/mix-and-match-database/tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce b/mix-and-match-database/tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce new file mode 100644 index 0000000..1de6b6a --- /dev/null +++ b/mix-and-match-database/tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee65da752085d999a1df6d5aa3f91fb5765d5397cbce6400f20c536bde3a036b +size 82571004 diff --git a/mix-and-match-database/tools/Kurrent.Extensions.Commerce/osx-x64/libduckdb.dylib b/mix-and-match-database/tools/Kurrent.Extensions.Commerce/osx-x64/libduckdb.dylib new file mode 100644 index 0000000..50ad999 --- /dev/null +++ b/mix-and-match-database/tools/Kurrent.Extensions.Commerce/osx-x64/libduckdb.dylib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:007f820901b91cbe0abf54c41462cb7c4f49bbe156c6aee49ee790c16f72a58e +size 102351312 diff --git a/mix-and-match-database/tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.exe b/mix-and-match-database/tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.exe new file mode 100644 index 0000000..ddf1aac --- /dev/null +++ b/mix-and-match-database/tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:187e5669580c4307f559aba1ff4c8f89757abe11e245c4a3e9c1890ca6b696dd +size 112591685 diff --git a/polyglot-persistence/DemoWeb/Pages/TopProducts.cshtml b/polyglot-persistence/DemoWeb/Pages/TopProducts.cshtml deleted file mode 100644 index f5e81e5..0000000 --- a/polyglot-persistence/DemoWeb/Pages/TopProducts.cshtml +++ /dev/null @@ -1,138 +0,0 @@ -@page -@model DemoWeb.Pages.TopProductsModel -@{ - ViewData["Title"] = "Top 10 Products"; - var currentHour = Model.CurrentHour; - - // Parse the current hour string to format it consistently - string formattedDisplayTime = currentHour; - if (DateTime.TryParseExact(currentHour, "yyyyMMddHH", null, System.Globalization.DateTimeStyles.None, out var parsedDateTime)) - { - formattedDisplayTime = parsedDateTime.ToString("yyyy-MM-dd HH:00"); - } -} - -
-

Top 10 Products by the Hour (Redis Projection)

- -
-
- - -
-
- Selected Hour: @formattedDisplayTime -
-
- - - - - - - - - - - - - - -
RankProduct IDQuantity
Loading...
-
- -@section Scripts { - - -} - - \ No newline at end of file diff --git a/polyglot-persistence/DemoWeb/RedisService.cs b/polyglot-persistence/DemoWeb/RedisService.cs deleted file mode 100644 index b8c5000..0000000 --- a/polyglot-persistence/DemoWeb/RedisService.cs +++ /dev/null @@ -1,40 +0,0 @@ -using StackExchange.Redis; - -namespace DemoWeb.Services; - -public class RedisService -{ - public const string TopProductsKey = "top-10-products"; - private readonly IConnectionMultiplexer _redis; - - - public RedisService(IConnectionMultiplexer redis) - { - _redis = redis; - } - - public async Task> GetTopProductsAsync(string hourKey) - { - var db = _redis.GetDatabase(); - var topProducts = await db.SortedSetRangeByScoreWithScoresAsync(hourKey, order: Order.Descending, take: 10); - - return topProducts.Select(p => new ProductRanking - { - ProductId = p.Element.ToString(), - Quantity = (int)p.Score - }).ToList(); - } - - public async Task GetFirstAvailableHourKeyAsync() - { - var db = _redis.GetDatabase(); - var keys = await db.ExecuteAsync("KEYS", $"{TopProductsKey}:*"); - return (((RedisResult[])keys)!).FirstOrDefault()?.ToString(); - } -} - -public class ProductRanking -{ - public string ProductId { get; set; } = string.Empty; - public int Quantity { get; set; } -} diff --git a/polyglot-persistence/PostgresProjection/CartProjection.cs b/polyglot-persistence/PostgresProjection/CartProjection.cs deleted file mode 100644 index 9203308..0000000 --- a/polyglot-persistence/PostgresProjection/CartProjection.cs +++ /dev/null @@ -1,100 +0,0 @@ -using Common; -using Dapper; -using EventStore.Client; - -namespace PostgresProjection; - -public static class CartProjection -{ - public const string ReadModelName = "carts"; - - public static IEnumerable Project(ResolvedEvent evt) - { - var decodedEvent = CartEventEncoder.Decode(evt.Event.Data, evt.Event.EventType); - - CommandDefinition? command = decodedEvent switch - { - VisitorStartedShopping visitor => Project(visitor), - CustomerStartedShopping customer => Project(customer), - CartShopperGotIdentified identified => Project(identified), - CartGotCheckedOut checkedOut => Project(checkedOut), - CartGotAbandoned abandoned => Project(abandoned), - _ => null - }; - - if (command != null) - { - yield return command.Value; - } - } - - private static CommandDefinition Project(VisitorStartedShopping evt) - { - var sql = @"INSERT INTO carts(cart_id, customer_id, status, created_at, updated_at) - VALUES(@CartId, null, @Status, @Timestamp, @Timestamp) - ON CONFLICT(cart_id) DO NOTHING"; - - var parameters = new { CartId = evt.cartId, Status = "STARTED", Timestamp = evt.at }; - - return new CommandDefinition(sql, parameters); - } - - private static CommandDefinition Project(CustomerStartedShopping evt) - { - var sql = @"INSERT INTO carts(cart_id, customer_id, status, created_at, updated_at) - VALUES(@CartId, @CustomerId, @Status, @Timestamp, @Timestamp) - ON CONFLICT(cart_id) DO NOTHING"; - - var parameters = new { CartId = evt.cartId, CustomerId = evt.customerId, Status = "STARTED", Timestamp = evt.at }; - - return new CommandDefinition(sql, parameters); - } - - private static CommandDefinition Project(CartShopperGotIdentified evt) - { - var sql = @"UPDATE carts - SET customer_id = @CustomerId, - updated_at = @Timestamp - WHERE cart_id = @CartId"; - - var parameters = new { CartId = evt.cartId, CustomerId = evt.customerId, Timestamp = evt.at }; - - return new CommandDefinition(sql, parameters); - } - - private static CommandDefinition Project(CartGotCheckedOut evt) - { - var sql = @"UPDATE carts - SET status = @Status, - updated_at = @Timestamp - WHERE cart_id = @CartId"; - - var parameters = new { CartId = evt.cartId, Status = "CHECKED_OUT", Timestamp = evt.at }; - - return new CommandDefinition(sql, parameters); - } - - private static CommandDefinition Project(CartGotAbandoned evt) - { - var sql = @"UPDATE carts - SET status = @Status, - updated_at = @Timestamp - WHERE cart_id = @CartId"; - - var parameters = new { CartId = evt.cartId, Status = "ABANDONED", Timestamp = evt.at }; - - return new CommandDefinition(sql, parameters); - } - - public static CommandDefinition GetCreateCartTableCommand() - { - return new CommandDefinition(@" - CREATE TABLE IF NOT EXISTS carts ( - cart_id TEXT PRIMARY KEY, - customer_id TEXT NULL, - status TEXT NOT NULL DEFAULT 'STARTED', - created_at TIMESTAMP NOT NULL, - updated_at TIMESTAMP NOT NULL - )"); - } -} \ No newline at end of file diff --git a/polyglot-persistence/PostgresProjection/Checkpoint.cs b/polyglot-persistence/PostgresProjection/Checkpoint.cs deleted file mode 100644 index fd14f4f..0000000 --- a/polyglot-persistence/PostgresProjection/Checkpoint.cs +++ /dev/null @@ -1,37 +0,0 @@ -using Dapper; - -namespace PostgresProjection; - -public class Checkpoint -{ - public static CommandDefinition GetCreateTableCommand() - { - return new CommandDefinition(@" - CREATE TABLE IF NOT EXISTS checkpoints ( - read_model_name TEXT PRIMARY KEY, - checkpoint BIGINT NOT NULL - )"); - } - - public static CommandDefinition GetQuery(string readModelName) - { - var sql = "SELECT checkpoint FROM checkpoints WHERE read_model_name = @readModelName"; - - var parameters = new { readModelName }; - - return new CommandDefinition(sql, parameters); - } - - public static CommandDefinition GetUpdateCommand(string readModelName, long checkpoint) - { - var sql = @" - INSERT INTO checkpoints (read_model_name, checkpoint) - VALUES (@ReadModelName, @Checkpoint) - ON CONFLICT (read_model_name) DO UPDATE - SET checkpoint = @Checkpoint"; - - var parameters = new { readModelName, Checkpoint = checkpoint }; - - return new CommandDefinition(sql, parameters); - } -} \ No newline at end of file diff --git a/polyglot-persistence/PostgresProjection/Program.cs b/polyglot-persistence/PostgresProjection/Program.cs deleted file mode 100644 index 6173700..0000000 --- a/polyglot-persistence/PostgresProjection/Program.cs +++ /dev/null @@ -1,73 +0,0 @@ -// ======================================================================================================== -// PostgreSQL Projection from EventStoreDB -// ======================================================================================================== -// This sample demonstrates how to project events from EventStoreDB to a read model in PostgreSQL. -// -// It: -// -// 1. Connects to PostgreSQL and EventStoreDB -// 2. Retrieves the last checkpoint position from PostgreSQL -// 3. Subscribes to the cart category projection stream in EventStoreDB -// 4. Processes each event to update the PostgreSQL read model -// 5. Maintains a checkpoint in PostgreSQL to track progress -// -// This creates a current state of the cart optimized for queries while -// maintaining event sourcing in EventStoreDB as the source of truth. -// ======================================================================================================== - -using EventStore.Client; -using Npgsql; -using PostgresProjection; -using StreamPosition = EventStore.Client.StreamPosition; - -Console.WriteLine($"{AppDomain.CurrentDomain.FriendlyName} started"); - -// -------------------------------------- // -// Connect to PostgreSQL and EventStoreDB // -// -------------------------------------- // - -var postgresHost = Environment.GetEnvironmentVariable("POSTGRES_HOST") ?? "localhost"; -var postgres = new PostgresDataAccess(new NpgsqlConnection($"Host={postgresHost};Port=5432;Database=postgres;Username=postgres")); - -var esdbHost = Environment.GetEnvironmentVariable("ESDB_HOST") ?? "localhost"; -var esdb = new EventStoreClient(EventStoreClientSettings.Create($"esdb://admin:changeit@{esdbHost}:2113?tls=false")); - -postgres.Execute(CartProjection.GetCreateCartTableCommand()); // Create the checkpoint table if it doesn't exist -postgres.Execute(Checkpoint.GetCreateTableCommand()); // Create the checkpoint table if it doesn't exist - -// ------------------------------------------------- // -// Subscribe to EventStoreDB from checkpoint onwards // -// ------------------------------------------------- // - -var checkpointValue = postgres.QueryFirstOrDefault( - Checkpoint.GetQuery(CartProjection.ReadModelName)); // Get the checkpoint value from PostgreSQL checkpoint table - -var streamPosition = checkpointValue.HasValue // Check if the checkpoint exists.. - ? FromStream.After(StreamPosition.FromInt64(checkpointValue.Value)) // if so, subscribe from stream after checkpoint.. - : FromStream.Start; // otherwise, subscribe from the start of the stream - -await using var subscription = esdb.SubscribeToStream( // Subscribe events.. - "$ce-cart", // from the cart category system projection.. - streamPosition, // from this position.. - true); // with linked events automatically resolved (required for system projections) - -Console.WriteLine($"Subscribing events from stream after {streamPosition}"); - -// ------------------------------------------------------------- // -// Project events and update PostgreSQL read model and checkpoint // -// ------------------------------------------------------------- // - -await foreach (var message in subscription.Messages) // Iterate through the messages in the subscription -{ - if (message is not StreamMessage.Event(var e)) continue; // Skip if message is not an event - - postgres.BeginTransaction(); - - postgres.Execute(CartProjection.Project(e)); - - postgres.Execute(Checkpoint.GetUpdateCommand(CartProjection.ReadModelName, e.OriginalEventNumber.ToInt64())); - - postgres.Commit(); - - Console.WriteLine($"Projected event #{e.OriginalEventNumber.ToInt64()} {e.Event.EventType}"); -} \ No newline at end of file diff --git a/polyglot-persistence/RedisProjection/Program.cs b/polyglot-persistence/RedisProjection/Program.cs deleted file mode 100644 index 8f52c3e..0000000 --- a/polyglot-persistence/RedisProjection/Program.cs +++ /dev/null @@ -1,44 +0,0 @@ -using System; -using Common; -using EventStore.Client; -using StackExchange.Redis; -using StreamPosition = EventStore.Client.StreamPosition; - -Console.WriteLine($"{AppDomain.CurrentDomain.FriendlyName} started"); - -// Program.cs -var redisHost = Environment.GetEnvironmentVariable("REDIS_HOST") ?? "localhost"; -var redis = ConnectionMultiplexer.Connect($"{redisHost}:6379").GetDatabase(); - // Connect to Redis -var esdbHost = Environment.GetEnvironmentVariable("ESDB_HOST") ?? "localhost"; -var esdb = new EventStoreClient(EventStoreClientSettings.Create($"esdb://admin:changeit@{esdbHost}:2113?tls=false")); // Connect to EventStoreDB - -var checkpointValue = redis.StringGet("checkpoint"); // Get the checkpoint value from redis -var streamPosition = long.TryParse(checkpointValue, out var checkpoint) // Check if it exists and convertible to long - ? FromStream.After(StreamPosition.FromInt64(checkpoint)) // If so, set var to subscribe events from stream after checkpoint - : FromStream.Start; // Otherwise, set var to subscribe events from stream from the start - -await using var subscription = - esdb.SubscribeToStream( // Subscribe events.. - "$et-item-got-added-to-cart", // from this stream.. - streamPosition, // from this position.. - true); // with linked events automatically resolved (required for system projections) - -Console.WriteLine($"Subscribing events from stream after {streamPosition}"); - -await foreach (var message in subscription.Messages) // Iterate through the messages in the subscription -{ - if (message is not StreamMessage.Event(var e)) continue; // Skip if message is not an event - - if (CartEventEncoder.Decode(e.Event.Data, e.Event.EventType) is not ItemGotAdded evt) continue; // Convert the event to ItemGotAdded - - var hourKey = $"top-10-products:{evt.at:yyyyMMddHH}"; // Create a key for the current hour - var productKey = evt.productName; // Use the product ID as the member in the sorted set - - var txn = redis.CreateTransaction(); // Create a transaction for Redis - txn.SortedSetIncrementAsync(hourKey, productKey, evt.quantity); // Increment the quantity of the product in the sorted set - txn.StringSetAsync("checkpoint", e.OriginalEventNumber.ToInt64()); // Set the checkpoint to the current event number - txn.Execute(); - - Console.WriteLine($"Incremented product {evt.productId} in {hourKey} by {evt.quantity}"); -} \ No newline at end of file diff --git a/polyglot-persistence/data/commerce-data-set.zip b/polyglot-persistence/data/commerce-data-set.zip deleted file mode 100644 index d9d5779..0000000 Binary files a/polyglot-persistence/data/commerce-data-set.zip and /dev/null differ diff --git a/polyglot-persistence/data/init-data.zip b/polyglot-persistence/data/init-data.zip deleted file mode 100644 index 59527aa..0000000 Binary files a/polyglot-persistence/data/init-data.zip and /dev/null differ diff --git a/polyglot-persistence/docker-compose.codespaces-prebuild.yml b/polyglot-persistence/docker-compose.codespaces-prebuild.yml deleted file mode 100644 index 0c93d79..0000000 --- a/polyglot-persistence/docker-compose.codespaces-prebuild.yml +++ /dev/null @@ -1,79 +0,0 @@ -services: - mongo: - image: mongo:7.0 - container_name: mongo - ports: - - "27017:27017" - - postgres: - image: postgres:16 - container_name: postgres - ports: - - "5432:5432" - environment: - - POSTGRES_HOST_AUTH_METHOD=trust - - redis: - image: redis:7.2 - container_name: redis - ports: - - "6379:6379" - - eventstore: - image: eventstore/eventstore:24.10 - container_name: eventstore - ports: - - "2113:2113" - - "1113:1113" - environment: - - EVENTSTORE_RUN_PROJECTIONS=All - - EVENTSTORE_START_STANDARD_PROJECTIONS=true - - EVENTSTORE_INSECURE=true - - EVENTSTORE_ENABLE_ATOM_PUB_OVER_HTTP=true - - demoweb: - image: mcr.microsoft.com/dotnet/sdk:9.0 - container_name: demoweb - working_dir: /app - volumes: - - ./DemoWeb:/app # Mount the DemoWeb project directory - command: ["dotnet", "build"] - ports: - - "5108:5108" - environment: - - REDIS_HOST=redis - - POSTGRES_HOST=postgres - - postgresprojection: - image: mcr.microsoft.com/dotnet/sdk:9.0 - container_name: postgresprojection - working_dir: /app - volumes: - - ./:/app - command: ["dotnet", "build", "./PostgresProjection"] - environment: - - POSTGRES_HOST=postgres - - ESDB_HOST=eventstore - - redisprojection: - image: mcr.microsoft.com/dotnet/sdk:9.0 - container_name: redisprojection - working_dir: /app - volumes: - - ./:/app - command: ["dotnet", "build", "./RedisProjection"] - environment: - - REDIS_HOST=redis - - ESDB_HOST=eventstore - - mongoprojection: - image: mcr.microsoft.com/dotnet/sdk:9.0 - container_name: mongoprojection - working_dir: /app - volumes: - - ./:/app - command: ["dotnet", "build", "./MongoProjection"] - environment: - - MONGO_HOST=mongo - - ESDB_HOST=eventstore - \ No newline at end of file diff --git a/polyglot-persistence/generate-data.sh b/polyglot-persistence/generate-data.sh deleted file mode 100644 index d603a2c..0000000 --- a/polyglot-persistence/generate-data.sh +++ /dev/null @@ -1,20 +0,0 @@ -unzip -o /workspaces/developer-bootcamp/polyglot-persistence/data/commerce-data-set.zip -d /workspaces/developer-bootcamp/polyglot-persistence/ - -chmod +x /workspaces/developer-bootcamp/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce - -# Wait for EventStoreDB to be ready -echo "Waiting for EventStoreDB to be ready..." -max_attempts=30 -attempt=0 -while ! curl -s http://localhost:2113/ > /dev/null; do - attempt=$((attempt+1)) - if [ $attempt -eq $max_attempts ]; then - echo "EventStoreDB failed to start after $max_attempts attempts. Exiting." - exit 1 - fi - echo "Waiting for EventStoreDB to be ready... (attempt $attempt/$max_attempts)" - sleep 2 -done -echo "EventStoreDB is ready." - -/workspaces/developer-bootcamp/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce seed-data-set /workspaces/developer-bootcamp/polyglot-persistence/data.json \ No newline at end of file diff --git a/polyglot-persistence/onCreateCommand.sh b/polyglot-persistence/onCreateCommand.sh deleted file mode 100644 index 7882b07..0000000 --- a/polyglot-persistence/onCreateCommand.sh +++ /dev/null @@ -1,59 +0,0 @@ -docker compose -f /workspaces/developer-bootcamp/polyglot-persistence/docker-compose.yml up -d - -unzip -o /workspaces/developer-bootcamp/polyglot-persistence/data/init-data.zip -d /workspaces/developer-bootcamp/polyglot-persistence/ - -chmod +x /workspaces/developer-bootcamp/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce - - -max_attempts=60 -attempt=0 -while ! curl -s -o /dev/null -w "%{http_code}" http://localhost:2113/web/index.html | grep -q "200"; do - if [ "$attempt" -ge "$max_attempts" ]; then # If number of attempts exceeds max_attempts then we exit - echo "EventStoreDB is not available. Exiting" - exit 1 - fi - echo "Waiting for EventStoreDB to start... (attempt $attempt)" - attempt=$((attempt+1)) # Increment the attempt count - sleep 2 # Wait for a few seconds before checking again -done - -echo "EventStoreDB is running." - -max_attempts=60 -attempt=0 -while ! curl -s -o /dev/null -w "%{http_code}" http://localhost:5108/carts | grep -q "200"; do - if [ "$attempt" -ge "$max_attempts" ]; then # If number of attempts exceeds max_attempts then we exit - echo "DemoWeb is not available. Exiting" - exit 1 - fi - echo "Waiting for DemoWeb to start... (attempt $attempt)" - attempt=$((attempt+1)) # Increment the attempt count - sleep 2 # Wait for a few seconds before checking again -done - -echo "DemoWeb is running." - -/workspaces/developer-bootcamp/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce seed-data-set /workspaces/developer-bootcamp/polyglot-persistence/data.json - -echo "Updated EventStoreDB with initial data." - -# Wait for the required projection messages to be detected -echo "Waiting for 'MongoProjection started', 'RedisProjection started' and 'DemoWeb started' messages..." -max_attempts=60 -attempt=0 -while true; do - logs=$(docker compose -f /workspaces/developer-bootcamp/polyglot-persistence/docker-compose.yml logs 2>&1) - if echo "$logs" | grep -q "MongoProjection started" && \ - echo "$logs" | grep -q "RedisProjection started" && \ - echo "$logs" | grep -q "PostgresProjection started"; then - echo "All required messages detected." - break - fi - attempt=$((attempt+1)) - if [ $attempt -ge $max_attempts ]; then - echo "Required projections did not start after $max_attempts attempts. Exiting." - exit 1 - fi - echo "Waiting for required projections... (attempt $attempt/$max_attempts)" - sleep 2 -done \ No newline at end of file diff --git a/polyglot-persistence/start.sh b/polyglot-persistence/start.sh deleted file mode 100644 index 552d377..0000000 --- a/polyglot-persistence/start.sh +++ /dev/null @@ -1,43 +0,0 @@ -max_attempts=30 -attempt=0 -while ! docker ps > /dev/null 2>&1; do # While docker fails to run (e.g. Docker daemon is not running) - if [ "$attempt" -ge "$max_attempts" ]; then # If number of attempt exceeds the max_attempts then we exit - echo "Docker daemon is not available. Exiting" - exit 1 - fi - echo "Waiting for Docker daemon to start... (attempt $attempt)" - attempt=$((attempt+1)) # Increment the attempt count - sleep 2 # Wait for few seconds before we check again -done - -echo "Docker daemon is running." - -docker compose -f /workspaces/developer-bootcamp/polyglot-persistence/docker-compose.yml up -d - -max_attempts=30 -attempt=0 -while ! curl -s -o /dev/null -w "%{http_code}" http://localhost:2113/web/index.html | grep -q "200"; do - if [ "$attempt" -ge "$max_attempts" ]; then # If number of attempts exceeds max_attempts then we exit - echo "EventStoreDB is not available. Exiting" - exit 1 - fi - echo "Waiting for EventStoreDB to start... (attempt $attempt)" - attempt=$((attempt+1)) # Increment the attempt count - sleep 2 # Wait for a few seconds before checking again -done - -echo "EventStoreDB is running." - -max_attempts=30 -attempt=0 -while ! curl -s -o /dev/null -w "%{http_code}" http://localhost:5108/carts | grep -q "200"; do - if [ "$attempt" -ge "$max_attempts" ]; then # If number of attempts exceeds max_attempts then we exit - echo "DemoWeb is not available. Exiting" - exit 1 - fi - echo "Waiting for DemoWeb to start... (attempt $attempt)" - attempt=$((attempt+1)) # Increment the attempt count - sleep 2 # Wait for a few seconds before checking again -done - -echo "DemoWeb is running." \ No newline at end of file diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Bogus.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Bogus.dll deleted file mode 100644 index 16fb003..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Bogus.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/DuckDB.NET.Bindings.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/DuckDB.NET.Bindings.dll deleted file mode 100644 index 814bedd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/DuckDB.NET.Bindings.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/DuckDB.NET.Data.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/DuckDB.NET.Data.dll deleted file mode 100644 index 6ade32e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/DuckDB.NET.Data.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/EventStore.Client.Streams.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/EventStore.Client.Streams.dll deleted file mode 100644 index 09c32e0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/EventStore.Client.Streams.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/EventStore.Client.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/EventStore.Client.dll deleted file mode 100644 index ee16a26..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/EventStore.Client.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/FSharp.Control.TaskSeq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/FSharp.Control.TaskSeq.dll deleted file mode 100644 index 58f1874..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/FSharp.Control.TaskSeq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/FSharp.Core.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/FSharp.Core.dll deleted file mode 100644 index b5fcc23..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/FSharp.Core.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/FSharp.SystemTextJson.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/FSharp.SystemTextJson.dll deleted file mode 100644 index 54a704c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/FSharp.SystemTextJson.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Flurl.Http.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Flurl.Http.dll deleted file mode 100644 index 32256f1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Flurl.Http.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Flurl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Flurl.dll deleted file mode 100644 index 69d8268..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Flurl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Google.Protobuf.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Google.Protobuf.dll deleted file mode 100644 index bee156e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Google.Protobuf.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Grpc.Core.Api.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Grpc.Core.Api.dll deleted file mode 100644 index 554d4f6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Grpc.Core.Api.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Grpc.Net.Client.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Grpc.Net.Client.dll deleted file mode 100644 index 513f4df..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Grpc.Net.Client.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Grpc.Net.Common.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Grpc.Net.Common.dll deleted file mode 100644 index 6ead792..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Grpc.Net.Common.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/JetBrains.Annotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/JetBrains.Annotations.dll deleted file mode 100644 index 627220d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/JetBrains.Annotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Bcl.AsyncInterfaces.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index fe6ba4c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.CSharp.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.CSharp.dll deleted file mode 100644 index 6efc623..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.CSharp.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Configuration.Abstractions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100644 index 9d58f25..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Configuration.Binder.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Configuration.Binder.dll deleted file mode 100644 index 8d27d21..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Configuration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Configuration.dll deleted file mode 100644 index 2d38073..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Configuration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index 019f86e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.DependencyInjection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index 7eb65a5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Logging.Abstractions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index 9a3a2d9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Logging.Configuration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Logging.Configuration.dll deleted file mode 100644 index e7ccd84..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Logging.Configuration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Logging.Console.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Logging.Console.dll deleted file mode 100644 index 2c0da5c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Logging.Console.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Logging.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Logging.dll deleted file mode 100644 index c531383..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Options.ConfigurationExtensions.dll deleted file mode 100644 index 72908b9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Options.ConfigurationExtensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Options.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Options.dll deleted file mode 100644 index 08a9771..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index 4a3d0f1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.VisualBasic.Core.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.VisualBasic.Core.dll deleted file mode 100644 index ae5e7bb..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.VisualBasic.Core.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.VisualBasic.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.VisualBasic.dll deleted file mode 100644 index fcdef88..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.VisualBasic.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Win32.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Win32.Primitives.dll deleted file mode 100644 index f6b4771..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Win32.Registry.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Win32.Registry.dll deleted file mode 100644 index d74ec55..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Microsoft.Win32.Registry.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Minerals.StringCases.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Minerals.StringCases.dll deleted file mode 100644 index 9715248..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Minerals.StringCases.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/NJsonSchema.Annotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/NJsonSchema.Annotations.dll deleted file mode 100644 index c8db2a3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/NJsonSchema.Annotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/NJsonSchema.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/NJsonSchema.dll deleted file mode 100644 index 7efca78..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/NJsonSchema.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Namotion.Reflection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Namotion.Reflection.dll deleted file mode 100644 index 46c2790..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Namotion.Reflection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Newtonsoft.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Newtonsoft.Json.dll deleted file mode 100644 index d035c38..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Newtonsoft.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/NodaTime.Serialization.SystemTextJson.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/NodaTime.Serialization.SystemTextJson.dll deleted file mode 100644 index f321f43..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/NodaTime.Serialization.SystemTextJson.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/NodaTime.Testing.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/NodaTime.Testing.dll deleted file mode 100644 index 6e1d14a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/NodaTime.Testing.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/NodaTime.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/NodaTime.dll deleted file mode 100644 index 6227aca..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/NodaTime.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Spectre.Console.Cli.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Spectre.Console.Cli.dll deleted file mode 100644 index 8aaa97c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Spectre.Console.Cli.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Spectre.Console.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Spectre.Console.dll deleted file mode 100644 index 85cd7b4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/Spectre.Console.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.AppContext.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.AppContext.dll deleted file mode 100644 index 47a1736..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.AppContext.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Buffers.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Buffers.dll deleted file mode 100644 index 6d60f61..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Buffers.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Collections.Concurrent.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Collections.Concurrent.dll deleted file mode 100644 index d9269dc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Collections.Concurrent.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Collections.Immutable.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Collections.Immutable.dll deleted file mode 100644 index e35eafb..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Collections.Immutable.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Collections.NonGeneric.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Collections.NonGeneric.dll deleted file mode 100644 index a77c25e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Collections.Specialized.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Collections.Specialized.dll deleted file mode 100644 index 5c07cde..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Collections.Specialized.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Collections.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Collections.dll deleted file mode 100644 index 5208554..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Collections.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.Annotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.Annotations.dll deleted file mode 100644 index fdcec44..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.DataAnnotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.DataAnnotations.dll deleted file mode 100644 index 8a45254..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.DataAnnotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.EventBasedAsync.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.EventBasedAsync.dll deleted file mode 100644 index d4c0483..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.EventBasedAsync.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.Primitives.dll deleted file mode 100644 index bae95b5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.TypeConverter.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.TypeConverter.dll deleted file mode 100644 index c525192..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.dll deleted file mode 100644 index 088bdf2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ComponentModel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Configuration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Configuration.dll deleted file mode 100644 index 94b07b9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Configuration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Console.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Console.dll deleted file mode 100644 index 89c303e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Console.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Core.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Core.dll deleted file mode 100644 index 02a4006..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Core.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Data.Common.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Data.Common.dll deleted file mode 100644 index caa3802..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Data.Common.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Data.DataSetExtensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Data.DataSetExtensions.dll deleted file mode 100644 index fc9d591..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Data.DataSetExtensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Data.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Data.dll deleted file mode 100644 index bce593a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Data.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.Contracts.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.Contracts.dll deleted file mode 100644 index dbe90c3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.Contracts.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.Debug.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.Debug.dll deleted file mode 100644 index 5a208b7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.Debug.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.DiagnosticSource.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index 05dfd57..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.FileVersionInfo.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.FileVersionInfo.dll deleted file mode 100644 index e70f169..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.Process.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.Process.dll deleted file mode 100644 index 6d9f7aa..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.Process.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.StackTrace.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.StackTrace.dll deleted file mode 100644 index 6c83233..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.TextWriterTraceListener.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.TextWriterTraceListener.dll deleted file mode 100644 index b3183a2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.TextWriterTraceListener.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.Tools.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.Tools.dll deleted file mode 100644 index 3538d97..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.Tools.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.TraceSource.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.TraceSource.dll deleted file mode 100644 index af98bc0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.Tracing.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.Tracing.dll deleted file mode 100644 index 2648188..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Diagnostics.Tracing.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Drawing.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Drawing.Primitives.dll deleted file mode 100644 index 586f5b6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Drawing.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Drawing.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Drawing.dll deleted file mode 100644 index ce686dd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Drawing.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Dynamic.Runtime.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Dynamic.Runtime.dll deleted file mode 100644 index f705c6b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Dynamic.Runtime.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Formats.Asn1.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Formats.Asn1.dll deleted file mode 100644 index 71138ad..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Formats.Asn1.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Formats.Tar.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Formats.Tar.dll deleted file mode 100644 index 1996e2c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Formats.Tar.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Globalization.Calendars.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Globalization.Calendars.dll deleted file mode 100644 index 6b70d8e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Globalization.Calendars.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Globalization.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Globalization.Extensions.dll deleted file mode 100644 index 91dbe39..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Globalization.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Globalization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Globalization.dll deleted file mode 100644 index aa80d51..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Globalization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Compression.Brotli.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Compression.Brotli.dll deleted file mode 100644 index 720fa3a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Compression.Brotli.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Compression.FileSystem.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Compression.FileSystem.dll deleted file mode 100644 index 32078f9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Compression.FileSystem.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Compression.ZipFile.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Compression.ZipFile.dll deleted file mode 100644 index 802ae50..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Compression.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Compression.dll deleted file mode 100644 index 74074a4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Compression.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.FileSystem.AccessControl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.FileSystem.AccessControl.dll deleted file mode 100644 index e5b147b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.FileSystem.DriveInfo.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.FileSystem.DriveInfo.dll deleted file mode 100644 index 60df46c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.FileSystem.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.FileSystem.Primitives.dll deleted file mode 100644 index 578a630..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.FileSystem.Watcher.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.FileSystem.Watcher.dll deleted file mode 100644 index 3a5b4ea..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.FileSystem.Watcher.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.FileSystem.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.FileSystem.dll deleted file mode 100644 index 454b872..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.FileSystem.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.IsolatedStorage.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.IsolatedStorage.dll deleted file mode 100644 index d1587ba..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.IsolatedStorage.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.MemoryMappedFiles.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.MemoryMappedFiles.dll deleted file mode 100644 index 59d10a9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.MemoryMappedFiles.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Pipelines.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Pipelines.dll deleted file mode 100644 index 66a6119..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Pipelines.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Pipes.AccessControl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Pipes.AccessControl.dll deleted file mode 100644 index 20dec3d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Pipes.AccessControl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Pipes.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Pipes.dll deleted file mode 100644 index b9b2d6a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.Pipes.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.UnmanagedMemoryStream.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.UnmanagedMemoryStream.dll deleted file mode 100644 index 701de31..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.UnmanagedMemoryStream.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.dll deleted file mode 100644 index caf27cc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.IO.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Linq.Async.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Linq.Async.dll deleted file mode 100644 index 7ae9527..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Linq.Async.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Linq.Expressions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Linq.Expressions.dll deleted file mode 100644 index 56df740..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Linq.Expressions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Linq.Parallel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Linq.Parallel.dll deleted file mode 100644 index 7dca988..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Linq.Parallel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Linq.Queryable.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Linq.Queryable.dll deleted file mode 100644 index e8138b1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Linq.Queryable.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Linq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Linq.dll deleted file mode 100644 index 121353f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Linq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Memory.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Memory.dll deleted file mode 100644 index bcb6456..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Memory.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Http.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Http.Json.dll deleted file mode 100644 index 52f2891..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Http.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Http.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Http.dll deleted file mode 100644 index 5d58ac4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Http.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.HttpListener.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.HttpListener.dll deleted file mode 100644 index d55b1ee..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.HttpListener.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Mail.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Mail.dll deleted file mode 100644 index 2f5e40d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Mail.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.NameResolution.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.NameResolution.dll deleted file mode 100644 index 9d65389..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.NameResolution.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.NetworkInformation.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.NetworkInformation.dll deleted file mode 100644 index 6c64393..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.NetworkInformation.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Ping.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Ping.dll deleted file mode 100644 index 0228f2a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Ping.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Primitives.dll deleted file mode 100644 index d01aa34..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Quic.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Quic.dll deleted file mode 100644 index 9a0c292..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Quic.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Requests.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Requests.dll deleted file mode 100644 index db10f11..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Requests.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Security.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Security.dll deleted file mode 100644 index 7cea905..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Security.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.ServicePoint.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.ServicePoint.dll deleted file mode 100644 index 83441a9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.ServicePoint.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Sockets.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Sockets.dll deleted file mode 100644 index e7a7348..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.Sockets.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.WebClient.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.WebClient.dll deleted file mode 100644 index bdf0129..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.WebClient.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.WebHeaderCollection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.WebHeaderCollection.dll deleted file mode 100644 index 4e55527..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.WebHeaderCollection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.WebProxy.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.WebProxy.dll deleted file mode 100644 index 973f985..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.WebProxy.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.WebSockets.Client.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.WebSockets.Client.dll deleted file mode 100644 index 3f74b85..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.WebSockets.Client.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.WebSockets.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.WebSockets.dll deleted file mode 100644 index dfc2d79..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.WebSockets.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.dll deleted file mode 100644 index cc1b8fc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Net.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Numerics.Vectors.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Numerics.Vectors.dll deleted file mode 100644 index f422fd6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Numerics.Vectors.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Numerics.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Numerics.dll deleted file mode 100644 index 1b59143..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Numerics.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ObjectModel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ObjectModel.dll deleted file mode 100644 index 359caca..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ObjectModel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Private.CoreLib.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Private.CoreLib.dll deleted file mode 100644 index 434dc8e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Private.CoreLib.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Private.DataContractSerialization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Private.DataContractSerialization.dll deleted file mode 100644 index 9beb2dc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Private.DataContractSerialization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Private.Uri.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Private.Uri.dll deleted file mode 100644 index 0dfc89e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Private.Uri.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Private.Xml.Linq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Private.Xml.Linq.dll deleted file mode 100644 index 18622c5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Private.Xml.Linq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Private.Xml.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Private.Xml.dll deleted file mode 100644 index 07b8d58..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Private.Xml.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.DispatchProxy.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.DispatchProxy.dll deleted file mode 100644 index 0f45579..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.DispatchProxy.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Emit.ILGeneration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Emit.ILGeneration.dll deleted file mode 100644 index 4e52c7e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Emit.Lightweight.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Emit.Lightweight.dll deleted file mode 100644 index cf5a725..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Emit.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Emit.dll deleted file mode 100644 index 2c991ac..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Emit.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Extensions.dll deleted file mode 100644 index 33f9e40..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Metadata.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Metadata.dll deleted file mode 100644 index 6d85971..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Metadata.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Primitives.dll deleted file mode 100644 index cd5a98e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.TypeExtensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.TypeExtensions.dll deleted file mode 100644 index 1c987d5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.dll deleted file mode 100644 index 13a3685..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Reflection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Resources.Reader.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Resources.Reader.dll deleted file mode 100644 index 9c572e1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Resources.Reader.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Resources.ResourceManager.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Resources.ResourceManager.dll deleted file mode 100644 index 867a339..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Resources.ResourceManager.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Resources.Writer.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Resources.Writer.dll deleted file mode 100644 index 91c0686..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Resources.Writer.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.CompilerServices.Unsafe.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 3c1a249..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.CompilerServices.VisualC.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.CompilerServices.VisualC.dll deleted file mode 100644 index 7d1a5dd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.CompilerServices.VisualC.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Extensions.dll deleted file mode 100644 index a6e6702..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Handles.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Handles.dll deleted file mode 100644 index 67a47b2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Handles.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.InteropServices.JavaScript.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.InteropServices.JavaScript.dll deleted file mode 100644 index e891556..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.InteropServices.JavaScript.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.InteropServices.RuntimeInformation.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100644 index 2e4a3f9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.InteropServices.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.InteropServices.dll deleted file mode 100644 index d7d62c4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.InteropServices.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Intrinsics.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Intrinsics.dll deleted file mode 100644 index b888e77..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Intrinsics.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Loader.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Loader.dll deleted file mode 100644 index e1f0053..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Loader.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Numerics.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Numerics.dll deleted file mode 100644 index 0c12733..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Numerics.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Serialization.Formatters.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Serialization.Formatters.dll deleted file mode 100644 index 4787c7f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Serialization.Formatters.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Serialization.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Serialization.Json.dll deleted file mode 100644 index 17a3796..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Serialization.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Serialization.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Serialization.Primitives.dll deleted file mode 100644 index 5c9676c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Serialization.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Serialization.Xml.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Serialization.Xml.dll deleted file mode 100644 index 531f73f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Serialization.Xml.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Serialization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Serialization.dll deleted file mode 100644 index 8d57b8b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.Serialization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.dll deleted file mode 100644 index 7fdb365..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Runtime.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.AccessControl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.AccessControl.dll deleted file mode 100644 index 1eaf961..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.AccessControl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Claims.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Claims.dll deleted file mode 100644 index 3d2462e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Claims.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.Algorithms.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.Algorithms.dll deleted file mode 100644 index ed8973b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.Cng.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.Cng.dll deleted file mode 100644 index b9dae35..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.Csp.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.Csp.dll deleted file mode 100644 index c105ec3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.Csp.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.Encoding.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.Encoding.dll deleted file mode 100644 index 81e05de..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.OpenSsl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.OpenSsl.dll deleted file mode 100644 index 42253b6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.Primitives.dll deleted file mode 100644 index fea6b49..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.X509Certificates.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.X509Certificates.dll deleted file mode 100644 index ac03615..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.dll deleted file mode 100644 index b94e511..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Cryptography.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Principal.Windows.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Principal.Windows.dll deleted file mode 100644 index e8219b8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Principal.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Principal.dll deleted file mode 100644 index 954c2cc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.Principal.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.SecureString.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.SecureString.dll deleted file mode 100644 index abf23be..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.SecureString.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.dll deleted file mode 100644 index 2170184..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Security.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ServiceModel.Web.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ServiceModel.Web.dll deleted file mode 100644 index 07942bf..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ServiceModel.Web.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ServiceProcess.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ServiceProcess.dll deleted file mode 100644 index e855488..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ServiceProcess.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.Encoding.CodePages.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.Encoding.CodePages.dll deleted file mode 100644 index aa9451b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.Encoding.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.Encoding.Extensions.dll deleted file mode 100644 index af17e1e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.Encoding.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.Encoding.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.Encoding.dll deleted file mode 100644 index db7c830..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.Encoding.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.Encodings.Web.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.Encodings.Web.dll deleted file mode 100644 index 9ff7c46..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.Json.dll deleted file mode 100644 index 3d41009..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.RegularExpressions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.RegularExpressions.dll deleted file mode 100644 index 5dbaa4f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Channels.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Channels.dll deleted file mode 100644 index a3408f9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Channels.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Overlapped.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Overlapped.dll deleted file mode 100644 index d546c4e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Overlapped.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Tasks.Dataflow.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Tasks.Dataflow.dll deleted file mode 100644 index 7e85759..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Tasks.Dataflow.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Tasks.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Tasks.Extensions.dll deleted file mode 100644 index 25b15dd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Tasks.Parallel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Tasks.Parallel.dll deleted file mode 100644 index 98b3333..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Tasks.Parallel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Tasks.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Tasks.dll deleted file mode 100644 index d0ea064..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Tasks.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Thread.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Thread.dll deleted file mode 100644 index 7f3e817..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Thread.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.ThreadPool.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.ThreadPool.dll deleted file mode 100644 index 29944c4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Timer.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Timer.dll deleted file mode 100644 index 8e42ba2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.Timer.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.dll deleted file mode 100644 index 9590454..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Threading.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Transactions.Local.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Transactions.Local.dll deleted file mode 100644 index 953937e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Transactions.Local.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Transactions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Transactions.dll deleted file mode 100644 index 04580b4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Transactions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ValueTuple.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ValueTuple.dll deleted file mode 100644 index 10efacf..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.ValueTuple.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Web.HttpUtility.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Web.HttpUtility.dll deleted file mode 100644 index f1fc174..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Web.HttpUtility.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Web.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Web.dll deleted file mode 100644 index 22cce5c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Web.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Windows.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Windows.dll deleted file mode 100644 index 61ccc7e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Windows.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.Linq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.Linq.dll deleted file mode 100644 index 679a35c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.Linq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.ReaderWriter.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.ReaderWriter.dll deleted file mode 100644 index 3fa8ae3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.Serialization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.Serialization.dll deleted file mode 100644 index ea4a04d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.Serialization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.XDocument.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.XDocument.dll deleted file mode 100644 index 22c2216..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.XDocument.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.XPath.XDocument.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.XPath.XDocument.dll deleted file mode 100644 index 772e1a5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.XPath.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.XPath.dll deleted file mode 100644 index ff15d0c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.XPath.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.XmlDocument.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.XmlDocument.dll deleted file mode 100644 index cd9f2b8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.XmlSerializer.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.XmlSerializer.dll deleted file mode 100644 index 07aaec7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.dll deleted file mode 100644 index fb99ad1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.Xml.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.dll deleted file mode 100644 index 66b18e1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/System.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/WindowsBase.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/WindowsBase.dll deleted file mode 100644 index 1602a19..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/WindowsBase.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/createdump b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/createdump deleted file mode 100644 index c9b0277..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/createdump and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/cs/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/cs/FSharp.Core.resources.dll deleted file mode 100644 index 3c7f15b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/cs/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/de/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/de/FSharp.Core.resources.dll deleted file mode 100644 index 2342aa0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/de/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/de/Spectre.Console.Cli.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/de/Spectre.Console.Cli.resources.dll deleted file mode 100644 index f06877f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/de/Spectre.Console.Cli.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce deleted file mode 100644 index 2024360..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce.deps.json b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce.deps.json deleted file mode 100644 index b2f523c..0000000 --- a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce.deps.json +++ /dev/null @@ -1,1567 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v9.0/linux-arm64", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v9.0": {}, - ".NETCoreApp,Version=v9.0/linux-arm64": { - "edb-commerce/1.0.0": { - "dependencies": { - "Bogus": "35.6.2", - "DuckDB.NET.Data.Full": "1.2.1", - "EventStore.Client.Grpc.Streams": "23.3.8", - "FSharp.Control.TaskSeq": "0.4.0", - "FSharp.Core": "9.0.201", - "FSharp.SystemTextJson": "1.3.13", - "Flurl.Http": "4.0.2", - "Microsoft.Extensions.Logging.Console": "9.0.3", - "Minerals.StringCases": "0.2.1", - "NJsonSchema": "11.1.0", - "NodaTime": "3.2.1", - "NodaTime.Serialization.SystemTextJson": "1.3.0", - "NodaTime.Testing": "3.2.1", - "Spectre.Console.Cli": "0.49.1", - "runtimepack.Microsoft.NETCore.App.Runtime.linux-arm64": "9.0.3" - }, - "runtime": { - "edb-commerce.dll": {} - } - }, - "runtimepack.Microsoft.NETCore.App.Runtime.linux-arm64/9.0.3": { - "runtime": { - "Microsoft.CSharp.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "Microsoft.VisualBasic.Core.dll": { - "assemblyVersion": "14.0.0.0", - "fileVersion": "14.0.325.11113" - }, - "Microsoft.VisualBasic.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "Microsoft.Win32.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "Microsoft.Win32.Registry.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.AppContext.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Buffers.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.Concurrent.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.Immutable.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.NonGeneric.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.Specialized.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.Annotations.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.DataAnnotations.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.EventBasedAsync.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Configuration.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Data.Common.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Data.DataSetExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Data.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Contracts.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Debug.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.FileVersionInfo.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Process.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.StackTrace.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.TextWriterTraceListener.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Tools.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.TraceSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Tracing.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Drawing.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Drawing.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Dynamic.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Formats.Asn1.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Formats.Tar.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Globalization.Calendars.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Globalization.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Globalization.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.Brotli.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.FileSystem.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.ZipFile.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.DriveInfo.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.Watcher.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.IsolatedStorage.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.MemoryMappedFiles.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Pipelines.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Pipes.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Pipes.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.UnmanagedMemoryStream.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.Expressions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.Parallel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.Queryable.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Memory.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Http.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Http.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.HttpListener.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Mail.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.NameResolution.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.NetworkInformation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Ping.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Quic.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Requests.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Security.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.ServicePoint.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Sockets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebClient.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebHeaderCollection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebProxy.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebSockets.Client.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebSockets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Numerics.Vectors.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Numerics.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ObjectModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.CoreLib.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.DataContractSerialization.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.Uri.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.Xml.Linq.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.Xml.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.DispatchProxy.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Emit.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Metadata.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Resources.Reader.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Resources.ResourceManager.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Resources.Writer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.CompilerServices.VisualC.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Handles.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.InteropServices.JavaScript.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.InteropServices.RuntimeInformation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.InteropServices.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Intrinsics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Loader.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Numerics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Formatters.dll": { - "assemblyVersion": "8.1.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Xml.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Claims.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Algorithms.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Cng.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Csp.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Encoding.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.OpenSsl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.X509Certificates.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Principal.Windows.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Principal.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.SecureString.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ServiceModel.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ServiceProcess.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encoding.CodePages.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encoding.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encoding.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encodings.Web.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.RegularExpressions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Channels.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Overlapped.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.Dataflow.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.Parallel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Thread.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.ThreadPool.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Timer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Transactions.Local.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Transactions.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ValueTuple.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Web.HttpUtility.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Windows.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.Linq.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.ReaderWriter.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XPath.XDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XPath.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XmlDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XmlSerializer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "WindowsBase.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "mscorlib.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "netstandard.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "9.0.325.11113" - } - }, - "native": { - "createdump": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Globalization.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.IO.Compression.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Net.Security.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Security.Cryptography.Native.OpenSsl.so": { - "fileVersion": "0.0.0.0" - }, - "libclrgc.so": { - "fileVersion": "0.0.0.0" - }, - "libclrgcexp.so": { - "fileVersion": "0.0.0.0" - }, - "libclrjit.so": { - "fileVersion": "0.0.0.0" - }, - "libcoreclr.so": { - "fileVersion": "0.0.0.0" - }, - "libcoreclrtraceptprovider.so": { - "fileVersion": "0.0.0.0" - }, - "libhostfxr.so": { - "fileVersion": "0.0.0.0" - }, - "libhostpolicy.so": { - "fileVersion": "0.0.0.0" - }, - "libmscordaccore.so": { - "fileVersion": "0.0.0.0" - }, - "libmscordbi.so": { - "fileVersion": "0.0.0.0" - } - } - }, - "Bogus/35.6.2": { - "runtime": { - "lib/net6.0/Bogus.dll": { - "assemblyVersion": "35.6.2.0", - "fileVersion": "35.6.2.0" - } - } - }, - "DuckDB.NET.Bindings.Full/1.2.1": { - "runtime": { - "lib/net8.0/DuckDB.NET.Bindings.dll": { - "assemblyVersion": "1.2.1.0", - "fileVersion": "1.2.1.0" - } - }, - "native": { - "runtimes/linux-arm64/native/libduckdb.so": { - "fileVersion": "0.0.0.0" - } - } - }, - "DuckDB.NET.Data.Full/1.2.1": { - "dependencies": { - "DuckDB.NET.Bindings.Full": "1.2.1" - }, - "runtime": { - "lib/net8.0/DuckDB.NET.Data.dll": { - "assemblyVersion": "1.2.1.0", - "fileVersion": "1.2.1.0" - } - } - }, - "EventStore.Client.Grpc/23.3.8": { - "dependencies": { - "Google.Protobuf": "3.25.1", - "Grpc.Net.Client": "2.60.0", - "JetBrains.Annotations": "2023.3.0", - "Microsoft.Extensions.Logging": "9.0.3", - "System.Diagnostics.DiagnosticSource": "8.0.1", - "System.Linq.Async": "6.0.1", - "System.Text.Json": "8.0.5" - }, - "runtime": { - "lib/net8.0/EventStore.Client.dll": { - "assemblyVersion": "23.0.0.0", - "fileVersion": "23.3.8.0" - } - } - }, - "EventStore.Client.Grpc.Streams/23.3.8": { - "dependencies": { - "EventStore.Client.Grpc": "23.3.8" - }, - "runtime": { - "lib/net8.0/EventStore.Client.Streams.dll": { - "assemblyVersion": "23.0.0.0", - "fileVersion": "23.3.8.0" - } - } - }, - "Flurl/4.0.0": { - "runtime": { - "lib/netstandard2.0/Flurl.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.0.0" - } - } - }, - "Flurl.Http/4.0.2": { - "dependencies": { - "Flurl": "4.0.0" - }, - "runtime": { - "lib/net6.0/Flurl.Http.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.0.2.0" - } - } - }, - "FSharp.Control.TaskSeq/0.4.0": { - "dependencies": { - "FSharp.Core": "9.0.201" - }, - "runtime": { - "lib/netstandard2.1/FSharp.Control.TaskSeq.dll": { - "assemblyVersion": "0.4.0.0", - "fileVersion": "0.4.0.0" - } - } - }, - "FSharp.Core/9.0.201": { - "runtime": { - "lib/netstandard2.1/FSharp.Core.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.2.125.7003" - } - }, - "resources": { - "lib/netstandard2.1/cs/FSharp.Core.resources.dll": { - "locale": "cs" - }, - "lib/netstandard2.1/de/FSharp.Core.resources.dll": { - "locale": "de" - }, - "lib/netstandard2.1/es/FSharp.Core.resources.dll": { - "locale": "es" - }, - "lib/netstandard2.1/fr/FSharp.Core.resources.dll": { - "locale": "fr" - }, - "lib/netstandard2.1/it/FSharp.Core.resources.dll": { - "locale": "it" - }, - "lib/netstandard2.1/ja/FSharp.Core.resources.dll": { - "locale": "ja" - }, - "lib/netstandard2.1/ko/FSharp.Core.resources.dll": { - "locale": "ko" - }, - "lib/netstandard2.1/pl/FSharp.Core.resources.dll": { - "locale": "pl" - }, - "lib/netstandard2.1/pt-BR/FSharp.Core.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard2.1/ru/FSharp.Core.resources.dll": { - "locale": "ru" - }, - "lib/netstandard2.1/tr/FSharp.Core.resources.dll": { - "locale": "tr" - }, - "lib/netstandard2.1/zh-Hans/FSharp.Core.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard2.1/zh-Hant/FSharp.Core.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "FSharp.SystemTextJson/1.3.13": { - "dependencies": { - "FSharp.Core": "9.0.201", - "System.Text.Json": "8.0.5" - }, - "runtime": { - "lib/netstandard2.0/FSharp.SystemTextJson.dll": { - "assemblyVersion": "1.3.0.0", - "fileVersion": "1.3.13.11246" - } - } - }, - "Google.Protobuf/3.25.1": { - "runtime": { - "lib/net5.0/Google.Protobuf.dll": { - "assemblyVersion": "3.25.1.0", - "fileVersion": "3.25.1.0" - } - } - }, - "Grpc.Core.Api/2.60.0": { - "runtime": { - "lib/netstandard2.1/Grpc.Core.Api.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.60.0.0" - } - } - }, - "Grpc.Net.Client/2.60.0": { - "dependencies": { - "Grpc.Net.Common": "2.60.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net8.0/Grpc.Net.Client.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.60.0.0" - } - } - }, - "Grpc.Net.Common/2.60.0": { - "dependencies": { - "Grpc.Core.Api": "2.60.0" - }, - "runtime": { - "lib/net8.0/Grpc.Net.Common.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.60.0.0" - } - } - }, - "JetBrains.Annotations/2023.3.0": { - "runtime": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "assemblyVersion": "4242.42.42.42", - "fileVersion": "2023.3.0.0" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.DependencyInjection/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.3": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "9.0.3", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging.Configuration/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.3", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", - "Microsoft.Extensions.Configuration.Binder": "9.0.3", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Logging": "9.0.3", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3", - "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging.Console/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Logging": "9.0.3", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3", - "Microsoft.Extensions.Logging.Configuration": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Options/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", - "Microsoft.Extensions.Configuration.Binder": "9.0.3", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3", - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Primitives/9.0.3": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Minerals.StringCases/0.2.1": { - "runtime": { - "lib/netstandard2.0/Minerals.StringCases.dll": { - "assemblyVersion": "0.2.1.0", - "fileVersion": "0.2.1.0" - } - } - }, - "Namotion.Reflection/3.2.0": { - "runtime": { - "lib/net8.0/Namotion.Reflection.dll": { - "assemblyVersion": "3.2.0.0", - "fileVersion": "3.2.0.0" - } - } - }, - "Newtonsoft.Json/13.0.3": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" - } - } - }, - "NJsonSchema/11.1.0": { - "dependencies": { - "NJsonSchema.Annotations": "11.1.0", - "Namotion.Reflection": "3.2.0", - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/net6.0/NJsonSchema.dll": { - "assemblyVersion": "11.1.0.0", - "fileVersion": "11.1.0.0" - } - } - }, - "NJsonSchema.Annotations/11.1.0": { - "runtime": { - "lib/netstandard2.0/NJsonSchema.Annotations.dll": { - "assemblyVersion": "11.1.0.0", - "fileVersion": "11.1.0.0" - } - } - }, - "NodaTime/3.2.1": { - "runtime": { - "lib/net8.0/NodaTime.dll": { - "assemblyVersion": "3.2.1.0", - "fileVersion": "3.2.1.0" - } - } - }, - "NodaTime.Serialization.SystemTextJson/1.3.0": { - "dependencies": { - "NodaTime": "3.2.1" - }, - "runtime": { - "lib/net6.0/NodaTime.Serialization.SystemTextJson.dll": { - "assemblyVersion": "1.3.0.0", - "fileVersion": "1.3.0.0" - } - } - }, - "NodaTime.Testing/3.2.1": { - "dependencies": { - "NodaTime": "3.2.1" - }, - "runtime": { - "lib/netstandard2.0/NodaTime.Testing.dll": { - "assemblyVersion": "3.2.1.0", - "fileVersion": "3.2.1.0" - } - } - }, - "Spectre.Console/0.49.1": { - "runtime": { - "lib/net8.0/Spectre.Console.dll": { - "assemblyVersion": "0.0.0.0", - "fileVersion": "0.49.1.0" - } - } - }, - "Spectre.Console.Cli/0.49.1": { - "dependencies": { - "Spectre.Console": "0.49.1" - }, - "runtime": { - "lib/net8.0/Spectre.Console.Cli.dll": { - "assemblyVersion": "0.0.0.0", - "fileVersion": "0.49.1.0" - } - }, - "resources": { - "lib/net8.0/de/Spectre.Console.Cli.resources.dll": { - "locale": "de" - }, - "lib/net8.0/fr/Spectre.Console.Cli.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/sv/Spectre.Console.Cli.resources.dll": { - "locale": "sv" - } - } - }, - "System.Diagnostics.DiagnosticSource/8.0.1": {}, - "System.Linq.Async/6.0.1": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Linq.Async.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1.35981" - } - } - }, - "System.Text.Json/8.0.5": {} - } - }, - "libraries": { - "edb-commerce/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "runtimepack.Microsoft.NETCore.App.Runtime.linux-arm64/9.0.3": { - "type": "runtimepack", - "serviceable": false, - "sha512": "" - }, - "Bogus/35.6.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-u3XtrfDqwNDqmJiUA6AnUBGU2169av3BtBOrcgp1JZb2RVCg6P6JOTcJvXCLDd6YiRZFKxuoujiWM951Ze8D5w==", - "path": "bogus/35.6.2", - "hashPath": "bogus.35.6.2.nupkg.sha512" - }, - "DuckDB.NET.Bindings.Full/1.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tdK+r/Omifx+VXYo6uLjocgaPcSEWoL0ZN26D9KbffmLGfeYirMMhyoaAwOiBwGbeYS1jlQSiVjmtFv6Squb7g==", - "path": "duckdb.net.bindings.full/1.2.1", - "hashPath": "duckdb.net.bindings.full.1.2.1.nupkg.sha512" - }, - "DuckDB.NET.Data.Full/1.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eUdXsYwpnIu4gKjX/T6vA/73rY+O16YB/4mKj/jsdLnmk9C/lwo+AOgejuZgWell5HB7vQaoX8qjYgMM5XTCyA==", - "path": "duckdb.net.data.full/1.2.1", - "hashPath": "duckdb.net.data.full.1.2.1.nupkg.sha512" - }, - "EventStore.Client.Grpc/23.3.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rHQ8/umPRpI07uQV1cpqMt3fL8JRd8P+1WncIX0KULi4jz4Zg9xo1IHVvYXmljbAsJLSNy0QElf49+bjsBTAAg==", - "path": "eventstore.client.grpc/23.3.8", - "hashPath": "eventstore.client.grpc.23.3.8.nupkg.sha512" - }, - "EventStore.Client.Grpc.Streams/23.3.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xMFeUT2+/V07AgcIb041oFZIbfTE7d9atfvlBvVt3tmqrPV0dTe6eirDjUAZElM2ze/wyFpywlR6L2/LKG5+aQ==", - "path": "eventstore.client.grpc.streams/23.3.8", - "hashPath": "eventstore.client.grpc.streams.23.3.8.nupkg.sha512" - }, - "Flurl/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rpts69yYgvJqg6PPgqShBQEZ4aNzWQqWpWppcT0oDWxDCIsBqiod4pj6LQZdhk+1OozLFagemldMRACdHF3CsA==", - "path": "flurl/4.0.0", - "hashPath": "flurl.4.0.0.nupkg.sha512" - }, - "Flurl.Http/4.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9vCqFFyceA11yplkFD8AbCFFTvG1Lrw3tpsgOpL5sLUc28p6zcvGszNleuT6nDymRvtt5eS+rqUX+bRztg1fhA==", - "path": "flurl.http/4.0.2", - "hashPath": "flurl.http.4.0.2.nupkg.sha512" - }, - "FSharp.Control.TaskSeq/0.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+GK6oSwfffZaLPaWTBPYfX8mgWxszRrX9BdFh5ZLgQwg3IL3u10YneSCusOJ1gZKmdXAgGt4O4M9I9bgRTpL0Q==", - "path": "fsharp.control.taskseq/0.4.0", - "hashPath": "fsharp.control.taskseq.0.4.0.nupkg.sha512" - }, - "FSharp.Core/9.0.201": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ozq4T0ISTkqTYJ035XW/JkdDDaXofbykvfyVwkjLSqaDZ/4uNXfpf92cjcMI9lf9CxWqmlWHScViPh/4AvnWcw==", - "path": "fsharp.core/9.0.201", - "hashPath": "fsharp.core.9.0.201.nupkg.sha512" - }, - "FSharp.SystemTextJson/1.3.13": { - "type": "package", - "serviceable": true, - "sha512": "sha512-znp8odpdkVGKVX0AvbhiXdmeMi0KJ+A4AyAQWSkfAEAe4Z4clRE+rVhrLnAGrFD1VEIUX2lsQ4o84ywpWZUSGw==", - "path": "fsharp.systemtextjson/1.3.13", - "hashPath": "fsharp.systemtextjson.1.3.13.nupkg.sha512" - }, - "Google.Protobuf/3.25.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Sw9bq4hOD+AaS3RrnmP5IT25cyZ/T1qpM0e8+G+23Nojhv7+ScJFPEAQo1m4EFQWhXoI4FRZDrK+wjHCPw9yxg==", - "path": "google.protobuf/3.25.1", - "hashPath": "google.protobuf.3.25.1.nupkg.sha512" - }, - "Grpc.Core.Api/2.60.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VWah+8dGJhhsay5BQ/Ljq6GYDWj0lSjdzqyoBgUQhXTbBqhs+q5dRFROKxI1xxzlL4pfUO45cf/y+KnHVFG9ew==", - "path": "grpc.core.api/2.60.0", - "hashPath": "grpc.core.api.2.60.0.nupkg.sha512" - }, - "Grpc.Net.Client/2.60.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-J9U96gjZHOcqSgAThg9vZZhLsbTD005bUggPtMP/RVQnGc3+tQJTpkRUCJtJWq9cykNydsRVoyU38TjPP/VJ4A==", - "path": "grpc.net.client/2.60.0", - "hashPath": "grpc.net.client.2.60.0.nupkg.sha512" - }, - "Grpc.Net.Common/2.60.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Y/917aplgD1RA0q1cd9WpnMGyl9Luu3WZl6ZMpPvNQwg2TNw/3uXUDSriDBybeCtxnKUCtxUcWO3WsVkhM1DcA==", - "path": "grpc.net.common/2.60.0", - "hashPath": "grpc.net.common.2.60.0.nupkg.sha512" - }, - "JetBrains.Annotations/2023.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PHfnvdBUdGaTVG9bR/GEfxgTwWM0Z97Y6X3710wiljELBISipSfF5okn/vz+C2gfO+ihoEyVPjaJwn8ZalVukA==", - "path": "jetbrains.annotations/2023.3.0", - "hashPath": "jetbrains.annotations.2023.3.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RIEeZxWYm77+OWLwgik7DzSVSONjqkmcbuCb1koZdGAV7BgOUWnLz80VMyHZMw3onrVwFCCMHBBdruBPuQTvkg==", - "path": "microsoft.extensions.configuration/9.0.3", - "hashPath": "microsoft.extensions.configuration.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-q5qlbm6GRUrle2ZZxy9aqS/wWoc+mRD3JeP6rcpiJTh5XcemYkplAcJKq8lU11ZfPom5lfbZZfnQvDqcUhqD5Q==", - "path": "microsoft.extensions.configuration.abstractions/9.0.3", - "hashPath": "microsoft.extensions.configuration.abstractions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ad82pYBUSQbd3WIboxsS1HzFdRuHKRa2CpYwie/o6dZAxUjt62yFwjoVdM7Iw2VO5fHV1rJwa7jJZBNZin0E7Q==", - "path": "microsoft.extensions.configuration.binder/9.0.3", - "hashPath": "microsoft.extensions.configuration.binder.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lDbxJpkl6X8KZGpkAxgrrthQ42YeiR0xjPp7KPx+sCPc3ZbpaIbjzd0QQ+9kDdK2RU2DOl3pc6tQyAgEZY3V0A==", - "path": "microsoft.extensions.dependencyinjection/9.0.3", - "hashPath": "microsoft.extensions.dependencyinjection.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TfaHPSe39NyL2wxkisRxXK7xvHGZYBZ+dy3r+mqGvnxKgAPdHkMu3QMQZI4pquP6W5FIQBqs8FJpWV8ffCgDqQ==", - "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.3", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-utIi2R1nm+PCWkvWBf1Ou6LWqg9iLfHU23r8yyU9VCvda4dEs7xbTZSwGa5KuwbpzpgCbHCIuKaFHB3zyFmnGw==", - "path": "microsoft.extensions.logging/9.0.3", - "hashPath": "microsoft.extensions.logging.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H/MBMLt9A/69Ux4OrV7oCKt3DcMT04o5SCqDolulzQA66TLFEpYYb4qedMs/uwrLtyHXGuDGWKZse/oa8W9AZw==", - "path": "microsoft.extensions.logging.abstractions/9.0.3", - "hashPath": "microsoft.extensions.logging.abstractions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Configuration/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eVZsaKNyK0g0C1qp0mmn4Q2PiX+bXdkz8+zVkXyVMk8IvoWfmTjLjEq1MQlwt1A22lToANPiUrxPJ7Tt3V5puw==", - "path": "microsoft.extensions.logging.configuration/9.0.3", - "hashPath": "microsoft.extensions.logging.configuration.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Console/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o9VXLOdpTAro1q7ZThIB3S8OHrRn5pr8cFUCiN85fiwlfAt2DhU4ZIfHy+jCNbf7y7S5Exbr3dlDE8mKNrs0Yg==", - "path": "microsoft.extensions.logging.console/9.0.3", - "hashPath": "microsoft.extensions.logging.console.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Options/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xE7MpY70lkw1oiid5y6FbL9dVw8oLfkx8RhSNGN8sSzBlCqGn0SyT3Fqc8tZnDaPIq7Z8R9RTKlS564DS+MV3g==", - "path": "microsoft.extensions.options/9.0.3", - "hashPath": "microsoft.extensions.options.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PcyYHQglKnWVZHSPaL6v2qnfsIuFw8tSq7cyXHg3OeuDVn/CqmdWUjRiZomCF/Gi+qCi+ksz0lFphg2cNvB8zQ==", - "path": "microsoft.extensions.options.configurationextensions/9.0.3", - "hashPath": "microsoft.extensions.options.configurationextensions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yCCJHvBcRyqapMSNzP+kTc57Eaavq2cr5Tmuil6/XVnipQf5xmskxakSQ1enU6S4+fNg3sJ27WcInV64q24JsA==", - "path": "microsoft.extensions.primitives/9.0.3", - "hashPath": "microsoft.extensions.primitives.9.0.3.nupkg.sha512" - }, - "Minerals.StringCases/0.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oIYrFY0Gq7XkNyziWLofmHZmJWsTJ/EtFpytGO0azmngopJXcCvkamuPzFwTfNz3d3B4/m8+ma0qI/z7q6NHXA==", - "path": "minerals.stringcases/0.2.1", - "hashPath": "minerals.stringcases.0.2.1.nupkg.sha512" - }, - "Namotion.Reflection/3.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YfGjDPzMEs3vRMI4CMkJwOg75SV5JEDV72kMccD2GCo++TfgOYb5ZTpABYq3dUQqFtnAPpqMKM+deLlrUwnN1g==", - "path": "namotion.reflection/3.2.0", - "hashPath": "namotion.reflection.3.2.0.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" - }, - "NJsonSchema/11.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H7QO+bM/2uzF81mVyy4U8ha4MXS9eOX06rTvBgJKquzIuLUGuiOTc4nknkCFKW7mr+xnWgzY7Spevz5ZEK8fGg==", - "path": "njsonschema/11.1.0", - "hashPath": "njsonschema.11.1.0.nupkg.sha512" - }, - "NJsonSchema.Annotations/11.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2gU72pKhMLrQt7TjHv+nrb8CxxgUaBk2SD/CaB5f00SxuWdOT4YVQaGy+jTVx+8IgQit+9WWMvBWU9f6U2HNiQ==", - "path": "njsonschema.annotations/11.1.0", - "hashPath": "njsonschema.annotations.11.1.0.nupkg.sha512" - }, - "NodaTime/3.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D1aHhUfPQUxU2nfDCVuSLahpp0xCYZTmj/KNH3mSK/tStJYcx9HO9aJ0qbOP3hzjGPV/DXOqY2AHe27Nt4xs4g==", - "path": "nodatime/3.2.1", - "hashPath": "nodatime.3.2.1.nupkg.sha512" - }, - "NodaTime.Serialization.SystemTextJson/1.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zf9sdKrfcId0rvZLOB7Yncy/cfCv20TdQ84IKE6CkcWW33u1wsRvmYUbfaP5MYUm+9vp9Yoi3G2vN1/9nZ/JCA==", - "path": "nodatime.serialization.systemtextjson/1.3.0", - "hashPath": "nodatime.serialization.systemtextjson.1.3.0.nupkg.sha512" - }, - "NodaTime.Testing/3.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5/3Knjh+U/lshyad4MS6SSO4VD18RT6wf0tFi0rp7wlG0Zxso247qt7RPAPArnsD/bBUqq0/36N8QIs9SzSoSA==", - "path": "nodatime.testing/3.2.1", - "hashPath": "nodatime.testing.3.2.1.nupkg.sha512" - }, - "Spectre.Console/0.49.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-USV+pdu49OJ3nCjxNuw1K9Zw/c1HCBbwbjXZp0EOn6wM99tFdAtN34KEBZUMyRuJuXlUMDqhd8Yq9obW2MslYA==", - "path": "spectre.console/0.49.1", - "hashPath": "spectre.console.0.49.1.nupkg.sha512" - }, - "Spectre.Console.Cli/0.49.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wBZzyEbKqfPFFUPhV5E7/k4Kwy4UDO42IVzvzk0C4Pkjjw+NSd0EOBkIutYET4vJY4X81pD9ooQO9gfBGXj4+g==", - "path": "spectre.console.cli/0.49.1", - "hashPath": "spectre.console.cli.0.49.1.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", - "path": "system.diagnostics.diagnosticsource/8.0.1", - "hashPath": "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512" - }, - "System.Linq.Async/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0YhHcaroWpQ9UCot3Pizah7ryAzQhNvobLMSxeDIGmnXfkQn8u5owvpOH0K6EVB+z9L7u6Cc4W17Br/+jyttEQ==", - "path": "system.linq.async/6.0.1", - "hashPath": "system.linq.async.6.0.1.nupkg.sha512" - }, - "System.Text.Json/8.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==", - "path": "system.text.json/8.0.5", - "hashPath": "system.text.json.8.0.5.nupkg.sha512" - } - }, - "runtimes": { - "android-arm64": [ - "android", - "linux-bionic-arm64", - "linux-bionic", - "linux-arm64", - "linux", - "unix-arm64", - "unix", - "any", - "base" - ], - "linux-arm64": [ - "linux", - "unix-arm64", - "unix", - "any", - "base" - ], - "linux-bionic-arm64": [ - "linux-bionic", - "linux-arm64", - "linux", - "unix-arm64", - "unix", - "any", - "base" - ], - "linux-musl-arm64": [ - "linux-musl", - "linux-arm64", - "linux", - "unix-arm64", - "unix", - "any", - "base" - ] - } -} \ No newline at end of file diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce.dll deleted file mode 100644 index 3803ce4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce.runtimeconfig.json b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce.runtimeconfig.json deleted file mode 100644 index 8f2ed09..0000000 --- a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/edb-commerce.runtimeconfig.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net9.0", - "includedFrameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "9.0.3" - } - ], - "configProperties": { - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/es/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/es/FSharp.Core.resources.dll deleted file mode 100644 index 03f160e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/es/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/fr/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/fr/FSharp.Core.resources.dll deleted file mode 100644 index d9e8e6f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/fr/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/fr/Spectre.Console.Cli.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/fr/Spectre.Console.Cli.resources.dll deleted file mode 100644 index 42fbeaa..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/fr/Spectre.Console.Cli.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/it/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/it/FSharp.Core.resources.dll deleted file mode 100644 index 9302d17..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/it/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/ja/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/ja/FSharp.Core.resources.dll deleted file mode 100644 index 14b589c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/ja/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/ko/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/ko/FSharp.Core.resources.dll deleted file mode 100644 index 7fc7dd1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/ko/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libSystem.Globalization.Native.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libSystem.Globalization.Native.so deleted file mode 100644 index ae66878..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libSystem.Globalization.Native.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libSystem.IO.Compression.Native.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libSystem.IO.Compression.Native.so deleted file mode 100644 index 6d17b34..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libSystem.IO.Compression.Native.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libSystem.Native.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libSystem.Native.so deleted file mode 100644 index 1349a42..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libSystem.Native.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libSystem.Net.Security.Native.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libSystem.Net.Security.Native.so deleted file mode 100644 index 3a9b2bc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libSystem.Net.Security.Native.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libSystem.Security.Cryptography.Native.OpenSsl.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libSystem.Security.Cryptography.Native.OpenSsl.so deleted file mode 100644 index 8d9619c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libSystem.Security.Cryptography.Native.OpenSsl.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libclrgc.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libclrgc.so deleted file mode 100644 index a572319..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libclrgc.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libclrgcexp.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libclrgcexp.so deleted file mode 100644 index 8e5ea59..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libclrgcexp.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libclrjit.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libclrjit.so deleted file mode 100644 index 8da6c07..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libclrjit.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libcoreclr.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libcoreclr.so deleted file mode 100644 index 5cd395a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libcoreclr.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libcoreclrtraceptprovider.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libcoreclrtraceptprovider.so deleted file mode 100644 index 76aec8f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libcoreclrtraceptprovider.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libduckdb.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libduckdb.so deleted file mode 100644 index 2034f2e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libduckdb.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libhostfxr.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libhostfxr.so deleted file mode 100644 index ae8ad19..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libhostfxr.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libhostpolicy.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libhostpolicy.so deleted file mode 100644 index e133f72..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libhostpolicy.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libmscordaccore.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libmscordaccore.so deleted file mode 100644 index af1826e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libmscordaccore.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libmscordbi.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libmscordbi.so deleted file mode 100644 index 05fa909..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/libmscordbi.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/mscorlib.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/mscorlib.dll deleted file mode 100644 index 7ca99ad..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/mscorlib.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/netstandard.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/netstandard.dll deleted file mode 100644 index 1e43973..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/netstandard.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/pl/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/pl/FSharp.Core.resources.dll deleted file mode 100644 index f54855c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/pl/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/pt-BR/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/pt-BR/FSharp.Core.resources.dll deleted file mode 100644 index 0f3b357..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/pt-BR/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/ru/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/ru/FSharp.Core.resources.dll deleted file mode 100644 index 071d7ea..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/ru/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/sv/Spectre.Console.Cli.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/sv/Spectre.Console.Cli.resources.dll deleted file mode 100644 index c0e1e28..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/sv/Spectre.Console.Cli.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/tr/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/tr/FSharp.Core.resources.dll deleted file mode 100644 index 0d2191e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/tr/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/zh-Hans/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/zh-Hans/FSharp.Core.resources.dll deleted file mode 100644 index 20923ef..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/zh-Hans/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/zh-Hant/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/zh-Hant/FSharp.Core.resources.dll deleted file mode 100644 index c26d2f2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-arm64/zh-Hant/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Bogus.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Bogus.dll deleted file mode 100644 index 16fb003..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Bogus.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/DuckDB.NET.Bindings.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/DuckDB.NET.Bindings.dll deleted file mode 100644 index 814bedd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/DuckDB.NET.Bindings.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/DuckDB.NET.Data.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/DuckDB.NET.Data.dll deleted file mode 100644 index 6ade32e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/DuckDB.NET.Data.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/EventStore.Client.Streams.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/EventStore.Client.Streams.dll deleted file mode 100644 index 09c32e0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/EventStore.Client.Streams.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/EventStore.Client.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/EventStore.Client.dll deleted file mode 100644 index ee16a26..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/EventStore.Client.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/FSharp.Control.TaskSeq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/FSharp.Control.TaskSeq.dll deleted file mode 100644 index 58f1874..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/FSharp.Control.TaskSeq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/FSharp.Core.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/FSharp.Core.dll deleted file mode 100644 index b5fcc23..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/FSharp.Core.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/FSharp.SystemTextJson.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/FSharp.SystemTextJson.dll deleted file mode 100644 index 54a704c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/FSharp.SystemTextJson.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Flurl.Http.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Flurl.Http.dll deleted file mode 100644 index 32256f1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Flurl.Http.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Flurl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Flurl.dll deleted file mode 100644 index 69d8268..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Flurl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Google.Protobuf.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Google.Protobuf.dll deleted file mode 100644 index bee156e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Google.Protobuf.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Grpc.Core.Api.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Grpc.Core.Api.dll deleted file mode 100644 index 554d4f6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Grpc.Core.Api.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Grpc.Net.Client.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Grpc.Net.Client.dll deleted file mode 100644 index 513f4df..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Grpc.Net.Client.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Grpc.Net.Common.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Grpc.Net.Common.dll deleted file mode 100644 index 6ead792..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Grpc.Net.Common.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/JetBrains.Annotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/JetBrains.Annotations.dll deleted file mode 100644 index 627220d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/JetBrains.Annotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Bcl.AsyncInterfaces.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index fe6ba4c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.CSharp.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.CSharp.dll deleted file mode 100644 index 8743926..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.CSharp.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Configuration.Abstractions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100644 index 9d58f25..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Configuration.Binder.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Configuration.Binder.dll deleted file mode 100644 index 8d27d21..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Configuration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Configuration.dll deleted file mode 100644 index 2d38073..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Configuration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index 019f86e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.DependencyInjection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index 7eb65a5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Logging.Abstractions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index 9a3a2d9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Logging.Configuration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Logging.Configuration.dll deleted file mode 100644 index e7ccd84..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Logging.Configuration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Logging.Console.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Logging.Console.dll deleted file mode 100644 index 2c0da5c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Logging.Console.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Logging.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Logging.dll deleted file mode 100644 index c531383..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Options.ConfigurationExtensions.dll deleted file mode 100644 index 72908b9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Options.ConfigurationExtensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Options.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Options.dll deleted file mode 100644 index 08a9771..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index 4a3d0f1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.VisualBasic.Core.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.VisualBasic.Core.dll deleted file mode 100644 index 6cc1c93..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.VisualBasic.Core.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.VisualBasic.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.VisualBasic.dll deleted file mode 100644 index fcdef88..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.VisualBasic.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Win32.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Win32.Primitives.dll deleted file mode 100644 index f6b4771..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Win32.Registry.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Win32.Registry.dll deleted file mode 100644 index 2fd626c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Microsoft.Win32.Registry.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Minerals.StringCases.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Minerals.StringCases.dll deleted file mode 100644 index 9715248..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Minerals.StringCases.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/NJsonSchema.Annotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/NJsonSchema.Annotations.dll deleted file mode 100644 index c8db2a3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/NJsonSchema.Annotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/NJsonSchema.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/NJsonSchema.dll deleted file mode 100644 index 7efca78..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/NJsonSchema.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Namotion.Reflection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Namotion.Reflection.dll deleted file mode 100644 index 46c2790..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Namotion.Reflection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Newtonsoft.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Newtonsoft.Json.dll deleted file mode 100644 index d035c38..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Newtonsoft.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/NodaTime.Serialization.SystemTextJson.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/NodaTime.Serialization.SystemTextJson.dll deleted file mode 100644 index f321f43..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/NodaTime.Serialization.SystemTextJson.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/NodaTime.Testing.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/NodaTime.Testing.dll deleted file mode 100644 index 6e1d14a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/NodaTime.Testing.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/NodaTime.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/NodaTime.dll deleted file mode 100644 index 6227aca..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/NodaTime.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Spectre.Console.Cli.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Spectre.Console.Cli.dll deleted file mode 100644 index 8aaa97c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Spectre.Console.Cli.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Spectre.Console.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Spectre.Console.dll deleted file mode 100644 index 85cd7b4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/Spectre.Console.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.AppContext.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.AppContext.dll deleted file mode 100644 index 47a1736..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.AppContext.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Buffers.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Buffers.dll deleted file mode 100644 index 6d60f61..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Buffers.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Collections.Concurrent.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Collections.Concurrent.dll deleted file mode 100644 index d1f5360..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Collections.Concurrent.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Collections.Immutable.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Collections.Immutable.dll deleted file mode 100644 index d8dd830..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Collections.Immutable.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Collections.NonGeneric.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Collections.NonGeneric.dll deleted file mode 100644 index 985f038..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Collections.Specialized.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Collections.Specialized.dll deleted file mode 100644 index 8101feb..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Collections.Specialized.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Collections.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Collections.dll deleted file mode 100644 index 3a09a36..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Collections.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.Annotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.Annotations.dll deleted file mode 100644 index cb4f4bb..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.DataAnnotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.DataAnnotations.dll deleted file mode 100644 index 8a45254..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.DataAnnotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.EventBasedAsync.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.EventBasedAsync.dll deleted file mode 100644 index 18e70e9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.EventBasedAsync.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.Primitives.dll deleted file mode 100644 index c03872b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.TypeConverter.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.TypeConverter.dll deleted file mode 100644 index ca47010..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.dll deleted file mode 100644 index 13f4bb9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ComponentModel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Configuration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Configuration.dll deleted file mode 100644 index 94b07b9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Configuration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Console.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Console.dll deleted file mode 100644 index 6ee8f7e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Console.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Core.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Core.dll deleted file mode 100644 index 02a4006..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Core.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Data.Common.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Data.Common.dll deleted file mode 100644 index b6e8e95..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Data.Common.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Data.DataSetExtensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Data.DataSetExtensions.dll deleted file mode 100644 index fc9d591..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Data.DataSetExtensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Data.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Data.dll deleted file mode 100644 index bce593a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Data.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.Contracts.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.Contracts.dll deleted file mode 100644 index dbe90c3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.Contracts.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.Debug.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.Debug.dll deleted file mode 100644 index 5a208b7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.Debug.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.DiagnosticSource.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index d27d89b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.FileVersionInfo.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.FileVersionInfo.dll deleted file mode 100644 index ab95765..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.Process.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.Process.dll deleted file mode 100644 index b0810ec..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.Process.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.StackTrace.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.StackTrace.dll deleted file mode 100644 index 78fde48..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.TextWriterTraceListener.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.TextWriterTraceListener.dll deleted file mode 100644 index 423635e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.TextWriterTraceListener.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.Tools.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.Tools.dll deleted file mode 100644 index 3538d97..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.Tools.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.TraceSource.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.TraceSource.dll deleted file mode 100644 index 842f8b8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.Tracing.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.Tracing.dll deleted file mode 100644 index 2648188..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Diagnostics.Tracing.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Drawing.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Drawing.Primitives.dll deleted file mode 100644 index 6c809c7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Drawing.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Drawing.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Drawing.dll deleted file mode 100644 index ce686dd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Drawing.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Dynamic.Runtime.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Dynamic.Runtime.dll deleted file mode 100644 index f705c6b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Dynamic.Runtime.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Formats.Asn1.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Formats.Asn1.dll deleted file mode 100644 index ca92d2c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Formats.Asn1.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Formats.Tar.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Formats.Tar.dll deleted file mode 100644 index 37c78f8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Formats.Tar.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Globalization.Calendars.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Globalization.Calendars.dll deleted file mode 100644 index 6b70d8e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Globalization.Calendars.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Globalization.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Globalization.Extensions.dll deleted file mode 100644 index 91dbe39..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Globalization.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Globalization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Globalization.dll deleted file mode 100644 index aa80d51..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Globalization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Compression.Brotli.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Compression.Brotli.dll deleted file mode 100644 index 6b134a2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Compression.Brotli.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Compression.FileSystem.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Compression.FileSystem.dll deleted file mode 100644 index 32078f9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Compression.FileSystem.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Compression.ZipFile.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Compression.ZipFile.dll deleted file mode 100644 index be7b73d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Compression.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Compression.dll deleted file mode 100644 index 7e658d3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Compression.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.FileSystem.AccessControl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.FileSystem.AccessControl.dll deleted file mode 100644 index e8107ba..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.FileSystem.DriveInfo.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.FileSystem.DriveInfo.dll deleted file mode 100644 index 1478a77..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.FileSystem.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.FileSystem.Primitives.dll deleted file mode 100644 index 578a630..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.FileSystem.Watcher.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.FileSystem.Watcher.dll deleted file mode 100644 index 16d4f2a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.FileSystem.Watcher.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.FileSystem.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.FileSystem.dll deleted file mode 100644 index 454b872..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.FileSystem.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.IsolatedStorage.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.IsolatedStorage.dll deleted file mode 100644 index fb4893f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.IsolatedStorage.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.MemoryMappedFiles.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.MemoryMappedFiles.dll deleted file mode 100644 index be95daa..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.MemoryMappedFiles.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Pipelines.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Pipelines.dll deleted file mode 100644 index 0c77c7f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Pipelines.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Pipes.AccessControl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Pipes.AccessControl.dll deleted file mode 100644 index 3a583b6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Pipes.AccessControl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Pipes.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Pipes.dll deleted file mode 100644 index aee3983..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.Pipes.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.UnmanagedMemoryStream.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.UnmanagedMemoryStream.dll deleted file mode 100644 index 701de31..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.UnmanagedMemoryStream.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.dll deleted file mode 100644 index caf27cc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.IO.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Linq.Async.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Linq.Async.dll deleted file mode 100644 index 7ae9527..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Linq.Async.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Linq.Expressions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Linq.Expressions.dll deleted file mode 100644 index 4510ff3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Linq.Expressions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Linq.Parallel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Linq.Parallel.dll deleted file mode 100644 index 32ec762..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Linq.Parallel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Linq.Queryable.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Linq.Queryable.dll deleted file mode 100644 index b8ce4d0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Linq.Queryable.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Linq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Linq.dll deleted file mode 100644 index d59b155..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Linq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Memory.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Memory.dll deleted file mode 100644 index 2face98..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Memory.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Http.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Http.Json.dll deleted file mode 100644 index 3b3cd7f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Http.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Http.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Http.dll deleted file mode 100644 index c857353..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Http.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.HttpListener.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.HttpListener.dll deleted file mode 100644 index 9e866da..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.HttpListener.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Mail.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Mail.dll deleted file mode 100644 index 9a73c85..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Mail.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.NameResolution.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.NameResolution.dll deleted file mode 100644 index fe8b01d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.NameResolution.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.NetworkInformation.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.NetworkInformation.dll deleted file mode 100644 index 2ef599e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.NetworkInformation.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Ping.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Ping.dll deleted file mode 100644 index aba52b4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Ping.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Primitives.dll deleted file mode 100644 index 6fc7cdd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Quic.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Quic.dll deleted file mode 100644 index e2b74b4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Quic.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Requests.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Requests.dll deleted file mode 100644 index 710ede3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Requests.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Security.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Security.dll deleted file mode 100644 index 73ea6ad..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Security.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.ServicePoint.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.ServicePoint.dll deleted file mode 100644 index 83441a9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.ServicePoint.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Sockets.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Sockets.dll deleted file mode 100644 index 2a84677..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.Sockets.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.WebClient.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.WebClient.dll deleted file mode 100644 index b14fa0c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.WebClient.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.WebHeaderCollection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.WebHeaderCollection.dll deleted file mode 100644 index dbc724e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.WebHeaderCollection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.WebProxy.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.WebProxy.dll deleted file mode 100644 index 3afe58d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.WebProxy.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.WebSockets.Client.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.WebSockets.Client.dll deleted file mode 100644 index 0092019..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.WebSockets.Client.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.WebSockets.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.WebSockets.dll deleted file mode 100644 index 045a802..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.WebSockets.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.dll deleted file mode 100644 index cc1b8fc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Net.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Numerics.Vectors.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Numerics.Vectors.dll deleted file mode 100644 index f422fd6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Numerics.Vectors.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Numerics.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Numerics.dll deleted file mode 100644 index 1b59143..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Numerics.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ObjectModel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ObjectModel.dll deleted file mode 100644 index 1087a96..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ObjectModel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Private.CoreLib.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Private.CoreLib.dll deleted file mode 100644 index 9718dae..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Private.CoreLib.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Private.DataContractSerialization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Private.DataContractSerialization.dll deleted file mode 100644 index 4bf5cb6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Private.DataContractSerialization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Private.Uri.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Private.Uri.dll deleted file mode 100644 index 4732e23..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Private.Uri.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Private.Xml.Linq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Private.Xml.Linq.dll deleted file mode 100644 index 6e3ca8b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Private.Xml.Linq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Private.Xml.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Private.Xml.dll deleted file mode 100644 index 5e1a29a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Private.Xml.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.DispatchProxy.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.DispatchProxy.dll deleted file mode 100644 index ed05065..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.DispatchProxy.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Emit.ILGeneration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Emit.ILGeneration.dll deleted file mode 100644 index 4e52c7e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Emit.Lightweight.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Emit.Lightweight.dll deleted file mode 100644 index cf5a725..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Emit.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Emit.dll deleted file mode 100644 index c3a4fd4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Emit.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Extensions.dll deleted file mode 100644 index 33f9e40..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Metadata.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Metadata.dll deleted file mode 100644 index 069e66a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Metadata.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Primitives.dll deleted file mode 100644 index cd5a98e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.TypeExtensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.TypeExtensions.dll deleted file mode 100644 index 26ccb9c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.dll deleted file mode 100644 index 13a3685..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Reflection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Resources.Reader.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Resources.Reader.dll deleted file mode 100644 index 9c572e1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Resources.Reader.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Resources.ResourceManager.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Resources.ResourceManager.dll deleted file mode 100644 index 867a339..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Resources.ResourceManager.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Resources.Writer.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Resources.Writer.dll deleted file mode 100644 index 16fab78..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Resources.Writer.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.CompilerServices.Unsafe.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 3c1a249..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.CompilerServices.VisualC.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.CompilerServices.VisualC.dll deleted file mode 100644 index ae27436..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.CompilerServices.VisualC.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Extensions.dll deleted file mode 100644 index a6e6702..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Handles.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Handles.dll deleted file mode 100644 index 67a47b2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Handles.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.InteropServices.JavaScript.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.InteropServices.JavaScript.dll deleted file mode 100644 index 4e1c096..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.InteropServices.JavaScript.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100644 index 2e4a3f9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.InteropServices.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.InteropServices.dll deleted file mode 100644 index 5802498..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.InteropServices.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Intrinsics.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Intrinsics.dll deleted file mode 100644 index b888e77..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Intrinsics.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Loader.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Loader.dll deleted file mode 100644 index e1f0053..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Loader.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Numerics.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Numerics.dll deleted file mode 100644 index 65353b4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Numerics.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Serialization.Formatters.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Serialization.Formatters.dll deleted file mode 100644 index 92280b9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Serialization.Formatters.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Serialization.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Serialization.Json.dll deleted file mode 100644 index 17a3796..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Serialization.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Serialization.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Serialization.Primitives.dll deleted file mode 100644 index 09c7333..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Serialization.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Serialization.Xml.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Serialization.Xml.dll deleted file mode 100644 index 531f73f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Serialization.Xml.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Serialization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Serialization.dll deleted file mode 100644 index 8d57b8b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.Serialization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.dll deleted file mode 100644 index 7fdb365..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Runtime.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.AccessControl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.AccessControl.dll deleted file mode 100644 index 6659d28..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.AccessControl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Claims.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Claims.dll deleted file mode 100644 index a9eae59..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Claims.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.Algorithms.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.Algorithms.dll deleted file mode 100644 index ed8973b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.Cng.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.Cng.dll deleted file mode 100644 index b9dae35..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.Csp.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.Csp.dll deleted file mode 100644 index c105ec3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.Csp.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.Encoding.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.Encoding.dll deleted file mode 100644 index 81e05de..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.OpenSsl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.OpenSsl.dll deleted file mode 100644 index 42253b6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.Primitives.dll deleted file mode 100644 index fea6b49..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.X509Certificates.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.X509Certificates.dll deleted file mode 100644 index ac03615..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.dll deleted file mode 100644 index 94c858b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Cryptography.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Principal.Windows.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Principal.Windows.dll deleted file mode 100644 index 272372b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Principal.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Principal.dll deleted file mode 100644 index 954c2cc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.Principal.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.SecureString.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.SecureString.dll deleted file mode 100644 index abf23be..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.SecureString.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.dll deleted file mode 100644 index 2170184..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Security.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ServiceModel.Web.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ServiceModel.Web.dll deleted file mode 100644 index 07942bf..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ServiceModel.Web.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ServiceProcess.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ServiceProcess.dll deleted file mode 100644 index e855488..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ServiceProcess.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.Encoding.CodePages.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.Encoding.CodePages.dll deleted file mode 100644 index 708aaf8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.Encoding.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.Encoding.Extensions.dll deleted file mode 100644 index af17e1e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.Encoding.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.Encoding.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.Encoding.dll deleted file mode 100644 index db7c830..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.Encoding.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.Encodings.Web.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.Encodings.Web.dll deleted file mode 100644 index 7e2a373..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.Json.dll deleted file mode 100644 index 1efac2f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.RegularExpressions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.RegularExpressions.dll deleted file mode 100644 index 315a870..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Channels.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Channels.dll deleted file mode 100644 index 6300d7a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Channels.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Overlapped.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Overlapped.dll deleted file mode 100644 index d546c4e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Overlapped.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Tasks.Dataflow.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Tasks.Dataflow.dll deleted file mode 100644 index 61e9e3f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Tasks.Dataflow.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Tasks.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Tasks.Extensions.dll deleted file mode 100644 index 25b15dd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Tasks.Parallel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Tasks.Parallel.dll deleted file mode 100644 index 41884f5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Tasks.Parallel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Tasks.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Tasks.dll deleted file mode 100644 index d0ea064..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Tasks.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Thread.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Thread.dll deleted file mode 100644 index 7f3e817..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Thread.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.ThreadPool.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.ThreadPool.dll deleted file mode 100644 index 29944c4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Timer.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Timer.dll deleted file mode 100644 index 8e42ba2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.Timer.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.dll deleted file mode 100644 index f4c7d92..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Threading.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Transactions.Local.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Transactions.Local.dll deleted file mode 100644 index 148f7fe..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Transactions.Local.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Transactions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Transactions.dll deleted file mode 100644 index 04580b4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Transactions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ValueTuple.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ValueTuple.dll deleted file mode 100644 index 10efacf..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.ValueTuple.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Web.HttpUtility.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Web.HttpUtility.dll deleted file mode 100644 index 3fec10c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Web.HttpUtility.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Web.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Web.dll deleted file mode 100644 index 22cce5c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Web.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Windows.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Windows.dll deleted file mode 100644 index 61ccc7e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Windows.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.Linq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.Linq.dll deleted file mode 100644 index 679a35c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.Linq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.ReaderWriter.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.ReaderWriter.dll deleted file mode 100644 index 3fa8ae3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.Serialization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.Serialization.dll deleted file mode 100644 index ea4a04d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.Serialization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.XDocument.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.XDocument.dll deleted file mode 100644 index 22c2216..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.XDocument.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.XPath.XDocument.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.XPath.XDocument.dll deleted file mode 100644 index 1166e66..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.XPath.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.XPath.dll deleted file mode 100644 index ff15d0c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.XPath.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.XmlDocument.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.XmlDocument.dll deleted file mode 100644 index cd9f2b8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.XmlSerializer.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.XmlSerializer.dll deleted file mode 100644 index 07aaec7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.dll deleted file mode 100644 index fb99ad1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.Xml.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.dll deleted file mode 100644 index 66b18e1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/System.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/WindowsBase.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/WindowsBase.dll deleted file mode 100644 index 1602a19..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/WindowsBase.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/createdump b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/createdump deleted file mode 100644 index 21c6a38..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/createdump and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/cs/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/cs/FSharp.Core.resources.dll deleted file mode 100644 index 3c7f15b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/cs/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/de/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/de/FSharp.Core.resources.dll deleted file mode 100644 index 2342aa0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/de/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/de/Spectre.Console.Cli.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/de/Spectre.Console.Cli.resources.dll deleted file mode 100644 index f06877f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/de/Spectre.Console.Cli.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce deleted file mode 100644 index 8205867..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce.deps.json b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce.deps.json deleted file mode 100644 index 4dcba7a..0000000 --- a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce.deps.json +++ /dev/null @@ -1,1567 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v9.0/linux-x64", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v9.0": {}, - ".NETCoreApp,Version=v9.0/linux-x64": { - "edb-commerce/1.0.0": { - "dependencies": { - "Bogus": "35.6.2", - "DuckDB.NET.Data.Full": "1.2.1", - "EventStore.Client.Grpc.Streams": "23.3.8", - "FSharp.Control.TaskSeq": "0.4.0", - "FSharp.Core": "9.0.201", - "FSharp.SystemTextJson": "1.3.13", - "Flurl.Http": "4.0.2", - "Microsoft.Extensions.Logging.Console": "9.0.3", - "Minerals.StringCases": "0.2.1", - "NJsonSchema": "11.1.0", - "NodaTime": "3.2.1", - "NodaTime.Serialization.SystemTextJson": "1.3.0", - "NodaTime.Testing": "3.2.1", - "Spectre.Console.Cli": "0.49.1", - "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64": "9.0.3" - }, - "runtime": { - "edb-commerce.dll": {} - } - }, - "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/9.0.3": { - "runtime": { - "Microsoft.CSharp.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "Microsoft.VisualBasic.Core.dll": { - "assemblyVersion": "14.0.0.0", - "fileVersion": "14.0.325.11113" - }, - "Microsoft.VisualBasic.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "Microsoft.Win32.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "Microsoft.Win32.Registry.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.AppContext.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Buffers.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.Concurrent.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.Immutable.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.NonGeneric.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.Specialized.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.Annotations.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.DataAnnotations.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.EventBasedAsync.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Configuration.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Data.Common.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Data.DataSetExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Data.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Contracts.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Debug.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.FileVersionInfo.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Process.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.StackTrace.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.TextWriterTraceListener.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Tools.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.TraceSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Tracing.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Drawing.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Drawing.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Dynamic.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Formats.Asn1.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Formats.Tar.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Globalization.Calendars.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Globalization.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Globalization.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.Brotli.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.FileSystem.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.ZipFile.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.DriveInfo.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.Watcher.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.IsolatedStorage.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.MemoryMappedFiles.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Pipelines.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Pipes.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Pipes.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.UnmanagedMemoryStream.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.Expressions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.Parallel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.Queryable.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Memory.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Http.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Http.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.HttpListener.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Mail.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.NameResolution.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.NetworkInformation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Ping.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Quic.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Requests.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Security.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.ServicePoint.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Sockets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebClient.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebHeaderCollection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebProxy.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebSockets.Client.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebSockets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Numerics.Vectors.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Numerics.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ObjectModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.CoreLib.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.DataContractSerialization.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.Uri.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.Xml.Linq.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.Xml.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.DispatchProxy.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Emit.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Metadata.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Resources.Reader.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Resources.ResourceManager.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Resources.Writer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.CompilerServices.VisualC.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Handles.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.InteropServices.JavaScript.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.InteropServices.RuntimeInformation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.InteropServices.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Intrinsics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Loader.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Numerics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Formatters.dll": { - "assemblyVersion": "8.1.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Xml.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Claims.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Algorithms.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Cng.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Csp.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Encoding.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.OpenSsl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.X509Certificates.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Principal.Windows.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Principal.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.SecureString.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ServiceModel.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ServiceProcess.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encoding.CodePages.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encoding.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encoding.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encodings.Web.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.RegularExpressions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Channels.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Overlapped.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.Dataflow.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.Parallel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Thread.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.ThreadPool.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Timer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Transactions.Local.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Transactions.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ValueTuple.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Web.HttpUtility.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Windows.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.Linq.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.ReaderWriter.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XPath.XDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XPath.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XmlDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XmlSerializer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "WindowsBase.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "mscorlib.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "netstandard.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "9.0.325.11113" - } - }, - "native": { - "createdump": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Globalization.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.IO.Compression.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Net.Security.Native.so": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Security.Cryptography.Native.OpenSsl.so": { - "fileVersion": "0.0.0.0" - }, - "libclrgc.so": { - "fileVersion": "0.0.0.0" - }, - "libclrgcexp.so": { - "fileVersion": "0.0.0.0" - }, - "libclrjit.so": { - "fileVersion": "0.0.0.0" - }, - "libcoreclr.so": { - "fileVersion": "0.0.0.0" - }, - "libcoreclrtraceptprovider.so": { - "fileVersion": "0.0.0.0" - }, - "libhostfxr.so": { - "fileVersion": "0.0.0.0" - }, - "libhostpolicy.so": { - "fileVersion": "0.0.0.0" - }, - "libmscordaccore.so": { - "fileVersion": "0.0.0.0" - }, - "libmscordbi.so": { - "fileVersion": "0.0.0.0" - } - } - }, - "Bogus/35.6.2": { - "runtime": { - "lib/net6.0/Bogus.dll": { - "assemblyVersion": "35.6.2.0", - "fileVersion": "35.6.2.0" - } - } - }, - "DuckDB.NET.Bindings.Full/1.2.1": { - "runtime": { - "lib/net8.0/DuckDB.NET.Bindings.dll": { - "assemblyVersion": "1.2.1.0", - "fileVersion": "1.2.1.0" - } - }, - "native": { - "runtimes/linux-x64/native/libduckdb.so": { - "fileVersion": "0.0.0.0" - } - } - }, - "DuckDB.NET.Data.Full/1.2.1": { - "dependencies": { - "DuckDB.NET.Bindings.Full": "1.2.1" - }, - "runtime": { - "lib/net8.0/DuckDB.NET.Data.dll": { - "assemblyVersion": "1.2.1.0", - "fileVersion": "1.2.1.0" - } - } - }, - "EventStore.Client.Grpc/23.3.8": { - "dependencies": { - "Google.Protobuf": "3.25.1", - "Grpc.Net.Client": "2.60.0", - "JetBrains.Annotations": "2023.3.0", - "Microsoft.Extensions.Logging": "9.0.3", - "System.Diagnostics.DiagnosticSource": "8.0.1", - "System.Linq.Async": "6.0.1", - "System.Text.Json": "8.0.5" - }, - "runtime": { - "lib/net8.0/EventStore.Client.dll": { - "assemblyVersion": "23.0.0.0", - "fileVersion": "23.3.8.0" - } - } - }, - "EventStore.Client.Grpc.Streams/23.3.8": { - "dependencies": { - "EventStore.Client.Grpc": "23.3.8" - }, - "runtime": { - "lib/net8.0/EventStore.Client.Streams.dll": { - "assemblyVersion": "23.0.0.0", - "fileVersion": "23.3.8.0" - } - } - }, - "Flurl/4.0.0": { - "runtime": { - "lib/netstandard2.0/Flurl.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.0.0" - } - } - }, - "Flurl.Http/4.0.2": { - "dependencies": { - "Flurl": "4.0.0" - }, - "runtime": { - "lib/net6.0/Flurl.Http.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.0.2.0" - } - } - }, - "FSharp.Control.TaskSeq/0.4.0": { - "dependencies": { - "FSharp.Core": "9.0.201" - }, - "runtime": { - "lib/netstandard2.1/FSharp.Control.TaskSeq.dll": { - "assemblyVersion": "0.4.0.0", - "fileVersion": "0.4.0.0" - } - } - }, - "FSharp.Core/9.0.201": { - "runtime": { - "lib/netstandard2.1/FSharp.Core.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.2.125.7003" - } - }, - "resources": { - "lib/netstandard2.1/cs/FSharp.Core.resources.dll": { - "locale": "cs" - }, - "lib/netstandard2.1/de/FSharp.Core.resources.dll": { - "locale": "de" - }, - "lib/netstandard2.1/es/FSharp.Core.resources.dll": { - "locale": "es" - }, - "lib/netstandard2.1/fr/FSharp.Core.resources.dll": { - "locale": "fr" - }, - "lib/netstandard2.1/it/FSharp.Core.resources.dll": { - "locale": "it" - }, - "lib/netstandard2.1/ja/FSharp.Core.resources.dll": { - "locale": "ja" - }, - "lib/netstandard2.1/ko/FSharp.Core.resources.dll": { - "locale": "ko" - }, - "lib/netstandard2.1/pl/FSharp.Core.resources.dll": { - "locale": "pl" - }, - "lib/netstandard2.1/pt-BR/FSharp.Core.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard2.1/ru/FSharp.Core.resources.dll": { - "locale": "ru" - }, - "lib/netstandard2.1/tr/FSharp.Core.resources.dll": { - "locale": "tr" - }, - "lib/netstandard2.1/zh-Hans/FSharp.Core.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard2.1/zh-Hant/FSharp.Core.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "FSharp.SystemTextJson/1.3.13": { - "dependencies": { - "FSharp.Core": "9.0.201", - "System.Text.Json": "8.0.5" - }, - "runtime": { - "lib/netstandard2.0/FSharp.SystemTextJson.dll": { - "assemblyVersion": "1.3.0.0", - "fileVersion": "1.3.13.11246" - } - } - }, - "Google.Protobuf/3.25.1": { - "runtime": { - "lib/net5.0/Google.Protobuf.dll": { - "assemblyVersion": "3.25.1.0", - "fileVersion": "3.25.1.0" - } - } - }, - "Grpc.Core.Api/2.60.0": { - "runtime": { - "lib/netstandard2.1/Grpc.Core.Api.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.60.0.0" - } - } - }, - "Grpc.Net.Client/2.60.0": { - "dependencies": { - "Grpc.Net.Common": "2.60.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net8.0/Grpc.Net.Client.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.60.0.0" - } - } - }, - "Grpc.Net.Common/2.60.0": { - "dependencies": { - "Grpc.Core.Api": "2.60.0" - }, - "runtime": { - "lib/net8.0/Grpc.Net.Common.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.60.0.0" - } - } - }, - "JetBrains.Annotations/2023.3.0": { - "runtime": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "assemblyVersion": "4242.42.42.42", - "fileVersion": "2023.3.0.0" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.DependencyInjection/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.3": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "9.0.3", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging.Configuration/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.3", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", - "Microsoft.Extensions.Configuration.Binder": "9.0.3", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Logging": "9.0.3", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3", - "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging.Console/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Logging": "9.0.3", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3", - "Microsoft.Extensions.Logging.Configuration": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Options/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", - "Microsoft.Extensions.Configuration.Binder": "9.0.3", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3", - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Primitives/9.0.3": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Minerals.StringCases/0.2.1": { - "runtime": { - "lib/netstandard2.0/Minerals.StringCases.dll": { - "assemblyVersion": "0.2.1.0", - "fileVersion": "0.2.1.0" - } - } - }, - "Namotion.Reflection/3.2.0": { - "runtime": { - "lib/net8.0/Namotion.Reflection.dll": { - "assemblyVersion": "3.2.0.0", - "fileVersion": "3.2.0.0" - } - } - }, - "Newtonsoft.Json/13.0.3": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" - } - } - }, - "NJsonSchema/11.1.0": { - "dependencies": { - "NJsonSchema.Annotations": "11.1.0", - "Namotion.Reflection": "3.2.0", - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/net6.0/NJsonSchema.dll": { - "assemblyVersion": "11.1.0.0", - "fileVersion": "11.1.0.0" - } - } - }, - "NJsonSchema.Annotations/11.1.0": { - "runtime": { - "lib/netstandard2.0/NJsonSchema.Annotations.dll": { - "assemblyVersion": "11.1.0.0", - "fileVersion": "11.1.0.0" - } - } - }, - "NodaTime/3.2.1": { - "runtime": { - "lib/net8.0/NodaTime.dll": { - "assemblyVersion": "3.2.1.0", - "fileVersion": "3.2.1.0" - } - } - }, - "NodaTime.Serialization.SystemTextJson/1.3.0": { - "dependencies": { - "NodaTime": "3.2.1" - }, - "runtime": { - "lib/net6.0/NodaTime.Serialization.SystemTextJson.dll": { - "assemblyVersion": "1.3.0.0", - "fileVersion": "1.3.0.0" - } - } - }, - "NodaTime.Testing/3.2.1": { - "dependencies": { - "NodaTime": "3.2.1" - }, - "runtime": { - "lib/netstandard2.0/NodaTime.Testing.dll": { - "assemblyVersion": "3.2.1.0", - "fileVersion": "3.2.1.0" - } - } - }, - "Spectre.Console/0.49.1": { - "runtime": { - "lib/net8.0/Spectre.Console.dll": { - "assemblyVersion": "0.0.0.0", - "fileVersion": "0.49.1.0" - } - } - }, - "Spectre.Console.Cli/0.49.1": { - "dependencies": { - "Spectre.Console": "0.49.1" - }, - "runtime": { - "lib/net8.0/Spectre.Console.Cli.dll": { - "assemblyVersion": "0.0.0.0", - "fileVersion": "0.49.1.0" - } - }, - "resources": { - "lib/net8.0/de/Spectre.Console.Cli.resources.dll": { - "locale": "de" - }, - "lib/net8.0/fr/Spectre.Console.Cli.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/sv/Spectre.Console.Cli.resources.dll": { - "locale": "sv" - } - } - }, - "System.Diagnostics.DiagnosticSource/8.0.1": {}, - "System.Linq.Async/6.0.1": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Linq.Async.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1.35981" - } - } - }, - "System.Text.Json/8.0.5": {} - } - }, - "libraries": { - "edb-commerce/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/9.0.3": { - "type": "runtimepack", - "serviceable": false, - "sha512": "" - }, - "Bogus/35.6.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-u3XtrfDqwNDqmJiUA6AnUBGU2169av3BtBOrcgp1JZb2RVCg6P6JOTcJvXCLDd6YiRZFKxuoujiWM951Ze8D5w==", - "path": "bogus/35.6.2", - "hashPath": "bogus.35.6.2.nupkg.sha512" - }, - "DuckDB.NET.Bindings.Full/1.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tdK+r/Omifx+VXYo6uLjocgaPcSEWoL0ZN26D9KbffmLGfeYirMMhyoaAwOiBwGbeYS1jlQSiVjmtFv6Squb7g==", - "path": "duckdb.net.bindings.full/1.2.1", - "hashPath": "duckdb.net.bindings.full.1.2.1.nupkg.sha512" - }, - "DuckDB.NET.Data.Full/1.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eUdXsYwpnIu4gKjX/T6vA/73rY+O16YB/4mKj/jsdLnmk9C/lwo+AOgejuZgWell5HB7vQaoX8qjYgMM5XTCyA==", - "path": "duckdb.net.data.full/1.2.1", - "hashPath": "duckdb.net.data.full.1.2.1.nupkg.sha512" - }, - "EventStore.Client.Grpc/23.3.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rHQ8/umPRpI07uQV1cpqMt3fL8JRd8P+1WncIX0KULi4jz4Zg9xo1IHVvYXmljbAsJLSNy0QElf49+bjsBTAAg==", - "path": "eventstore.client.grpc/23.3.8", - "hashPath": "eventstore.client.grpc.23.3.8.nupkg.sha512" - }, - "EventStore.Client.Grpc.Streams/23.3.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xMFeUT2+/V07AgcIb041oFZIbfTE7d9atfvlBvVt3tmqrPV0dTe6eirDjUAZElM2ze/wyFpywlR6L2/LKG5+aQ==", - "path": "eventstore.client.grpc.streams/23.3.8", - "hashPath": "eventstore.client.grpc.streams.23.3.8.nupkg.sha512" - }, - "Flurl/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rpts69yYgvJqg6PPgqShBQEZ4aNzWQqWpWppcT0oDWxDCIsBqiod4pj6LQZdhk+1OozLFagemldMRACdHF3CsA==", - "path": "flurl/4.0.0", - "hashPath": "flurl.4.0.0.nupkg.sha512" - }, - "Flurl.Http/4.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9vCqFFyceA11yplkFD8AbCFFTvG1Lrw3tpsgOpL5sLUc28p6zcvGszNleuT6nDymRvtt5eS+rqUX+bRztg1fhA==", - "path": "flurl.http/4.0.2", - "hashPath": "flurl.http.4.0.2.nupkg.sha512" - }, - "FSharp.Control.TaskSeq/0.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+GK6oSwfffZaLPaWTBPYfX8mgWxszRrX9BdFh5ZLgQwg3IL3u10YneSCusOJ1gZKmdXAgGt4O4M9I9bgRTpL0Q==", - "path": "fsharp.control.taskseq/0.4.0", - "hashPath": "fsharp.control.taskseq.0.4.0.nupkg.sha512" - }, - "FSharp.Core/9.0.201": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ozq4T0ISTkqTYJ035XW/JkdDDaXofbykvfyVwkjLSqaDZ/4uNXfpf92cjcMI9lf9CxWqmlWHScViPh/4AvnWcw==", - "path": "fsharp.core/9.0.201", - "hashPath": "fsharp.core.9.0.201.nupkg.sha512" - }, - "FSharp.SystemTextJson/1.3.13": { - "type": "package", - "serviceable": true, - "sha512": "sha512-znp8odpdkVGKVX0AvbhiXdmeMi0KJ+A4AyAQWSkfAEAe4Z4clRE+rVhrLnAGrFD1VEIUX2lsQ4o84ywpWZUSGw==", - "path": "fsharp.systemtextjson/1.3.13", - "hashPath": "fsharp.systemtextjson.1.3.13.nupkg.sha512" - }, - "Google.Protobuf/3.25.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Sw9bq4hOD+AaS3RrnmP5IT25cyZ/T1qpM0e8+G+23Nojhv7+ScJFPEAQo1m4EFQWhXoI4FRZDrK+wjHCPw9yxg==", - "path": "google.protobuf/3.25.1", - "hashPath": "google.protobuf.3.25.1.nupkg.sha512" - }, - "Grpc.Core.Api/2.60.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VWah+8dGJhhsay5BQ/Ljq6GYDWj0lSjdzqyoBgUQhXTbBqhs+q5dRFROKxI1xxzlL4pfUO45cf/y+KnHVFG9ew==", - "path": "grpc.core.api/2.60.0", - "hashPath": "grpc.core.api.2.60.0.nupkg.sha512" - }, - "Grpc.Net.Client/2.60.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-J9U96gjZHOcqSgAThg9vZZhLsbTD005bUggPtMP/RVQnGc3+tQJTpkRUCJtJWq9cykNydsRVoyU38TjPP/VJ4A==", - "path": "grpc.net.client/2.60.0", - "hashPath": "grpc.net.client.2.60.0.nupkg.sha512" - }, - "Grpc.Net.Common/2.60.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Y/917aplgD1RA0q1cd9WpnMGyl9Luu3WZl6ZMpPvNQwg2TNw/3uXUDSriDBybeCtxnKUCtxUcWO3WsVkhM1DcA==", - "path": "grpc.net.common/2.60.0", - "hashPath": "grpc.net.common.2.60.0.nupkg.sha512" - }, - "JetBrains.Annotations/2023.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PHfnvdBUdGaTVG9bR/GEfxgTwWM0Z97Y6X3710wiljELBISipSfF5okn/vz+C2gfO+ihoEyVPjaJwn8ZalVukA==", - "path": "jetbrains.annotations/2023.3.0", - "hashPath": "jetbrains.annotations.2023.3.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RIEeZxWYm77+OWLwgik7DzSVSONjqkmcbuCb1koZdGAV7BgOUWnLz80VMyHZMw3onrVwFCCMHBBdruBPuQTvkg==", - "path": "microsoft.extensions.configuration/9.0.3", - "hashPath": "microsoft.extensions.configuration.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-q5qlbm6GRUrle2ZZxy9aqS/wWoc+mRD3JeP6rcpiJTh5XcemYkplAcJKq8lU11ZfPom5lfbZZfnQvDqcUhqD5Q==", - "path": "microsoft.extensions.configuration.abstractions/9.0.3", - "hashPath": "microsoft.extensions.configuration.abstractions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ad82pYBUSQbd3WIboxsS1HzFdRuHKRa2CpYwie/o6dZAxUjt62yFwjoVdM7Iw2VO5fHV1rJwa7jJZBNZin0E7Q==", - "path": "microsoft.extensions.configuration.binder/9.0.3", - "hashPath": "microsoft.extensions.configuration.binder.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lDbxJpkl6X8KZGpkAxgrrthQ42YeiR0xjPp7KPx+sCPc3ZbpaIbjzd0QQ+9kDdK2RU2DOl3pc6tQyAgEZY3V0A==", - "path": "microsoft.extensions.dependencyinjection/9.0.3", - "hashPath": "microsoft.extensions.dependencyinjection.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TfaHPSe39NyL2wxkisRxXK7xvHGZYBZ+dy3r+mqGvnxKgAPdHkMu3QMQZI4pquP6W5FIQBqs8FJpWV8ffCgDqQ==", - "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.3", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-utIi2R1nm+PCWkvWBf1Ou6LWqg9iLfHU23r8yyU9VCvda4dEs7xbTZSwGa5KuwbpzpgCbHCIuKaFHB3zyFmnGw==", - "path": "microsoft.extensions.logging/9.0.3", - "hashPath": "microsoft.extensions.logging.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H/MBMLt9A/69Ux4OrV7oCKt3DcMT04o5SCqDolulzQA66TLFEpYYb4qedMs/uwrLtyHXGuDGWKZse/oa8W9AZw==", - "path": "microsoft.extensions.logging.abstractions/9.0.3", - "hashPath": "microsoft.extensions.logging.abstractions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Configuration/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eVZsaKNyK0g0C1qp0mmn4Q2PiX+bXdkz8+zVkXyVMk8IvoWfmTjLjEq1MQlwt1A22lToANPiUrxPJ7Tt3V5puw==", - "path": "microsoft.extensions.logging.configuration/9.0.3", - "hashPath": "microsoft.extensions.logging.configuration.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Console/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o9VXLOdpTAro1q7ZThIB3S8OHrRn5pr8cFUCiN85fiwlfAt2DhU4ZIfHy+jCNbf7y7S5Exbr3dlDE8mKNrs0Yg==", - "path": "microsoft.extensions.logging.console/9.0.3", - "hashPath": "microsoft.extensions.logging.console.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Options/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xE7MpY70lkw1oiid5y6FbL9dVw8oLfkx8RhSNGN8sSzBlCqGn0SyT3Fqc8tZnDaPIq7Z8R9RTKlS564DS+MV3g==", - "path": "microsoft.extensions.options/9.0.3", - "hashPath": "microsoft.extensions.options.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PcyYHQglKnWVZHSPaL6v2qnfsIuFw8tSq7cyXHg3OeuDVn/CqmdWUjRiZomCF/Gi+qCi+ksz0lFphg2cNvB8zQ==", - "path": "microsoft.extensions.options.configurationextensions/9.0.3", - "hashPath": "microsoft.extensions.options.configurationextensions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yCCJHvBcRyqapMSNzP+kTc57Eaavq2cr5Tmuil6/XVnipQf5xmskxakSQ1enU6S4+fNg3sJ27WcInV64q24JsA==", - "path": "microsoft.extensions.primitives/9.0.3", - "hashPath": "microsoft.extensions.primitives.9.0.3.nupkg.sha512" - }, - "Minerals.StringCases/0.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oIYrFY0Gq7XkNyziWLofmHZmJWsTJ/EtFpytGO0azmngopJXcCvkamuPzFwTfNz3d3B4/m8+ma0qI/z7q6NHXA==", - "path": "minerals.stringcases/0.2.1", - "hashPath": "minerals.stringcases.0.2.1.nupkg.sha512" - }, - "Namotion.Reflection/3.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YfGjDPzMEs3vRMI4CMkJwOg75SV5JEDV72kMccD2GCo++TfgOYb5ZTpABYq3dUQqFtnAPpqMKM+deLlrUwnN1g==", - "path": "namotion.reflection/3.2.0", - "hashPath": "namotion.reflection.3.2.0.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" - }, - "NJsonSchema/11.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H7QO+bM/2uzF81mVyy4U8ha4MXS9eOX06rTvBgJKquzIuLUGuiOTc4nknkCFKW7mr+xnWgzY7Spevz5ZEK8fGg==", - "path": "njsonschema/11.1.0", - "hashPath": "njsonschema.11.1.0.nupkg.sha512" - }, - "NJsonSchema.Annotations/11.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2gU72pKhMLrQt7TjHv+nrb8CxxgUaBk2SD/CaB5f00SxuWdOT4YVQaGy+jTVx+8IgQit+9WWMvBWU9f6U2HNiQ==", - "path": "njsonschema.annotations/11.1.0", - "hashPath": "njsonschema.annotations.11.1.0.nupkg.sha512" - }, - "NodaTime/3.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D1aHhUfPQUxU2nfDCVuSLahpp0xCYZTmj/KNH3mSK/tStJYcx9HO9aJ0qbOP3hzjGPV/DXOqY2AHe27Nt4xs4g==", - "path": "nodatime/3.2.1", - "hashPath": "nodatime.3.2.1.nupkg.sha512" - }, - "NodaTime.Serialization.SystemTextJson/1.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zf9sdKrfcId0rvZLOB7Yncy/cfCv20TdQ84IKE6CkcWW33u1wsRvmYUbfaP5MYUm+9vp9Yoi3G2vN1/9nZ/JCA==", - "path": "nodatime.serialization.systemtextjson/1.3.0", - "hashPath": "nodatime.serialization.systemtextjson.1.3.0.nupkg.sha512" - }, - "NodaTime.Testing/3.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5/3Knjh+U/lshyad4MS6SSO4VD18RT6wf0tFi0rp7wlG0Zxso247qt7RPAPArnsD/bBUqq0/36N8QIs9SzSoSA==", - "path": "nodatime.testing/3.2.1", - "hashPath": "nodatime.testing.3.2.1.nupkg.sha512" - }, - "Spectre.Console/0.49.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-USV+pdu49OJ3nCjxNuw1K9Zw/c1HCBbwbjXZp0EOn6wM99tFdAtN34KEBZUMyRuJuXlUMDqhd8Yq9obW2MslYA==", - "path": "spectre.console/0.49.1", - "hashPath": "spectre.console.0.49.1.nupkg.sha512" - }, - "Spectre.Console.Cli/0.49.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wBZzyEbKqfPFFUPhV5E7/k4Kwy4UDO42IVzvzk0C4Pkjjw+NSd0EOBkIutYET4vJY4X81pD9ooQO9gfBGXj4+g==", - "path": "spectre.console.cli/0.49.1", - "hashPath": "spectre.console.cli.0.49.1.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", - "path": "system.diagnostics.diagnosticsource/8.0.1", - "hashPath": "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512" - }, - "System.Linq.Async/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0YhHcaroWpQ9UCot3Pizah7ryAzQhNvobLMSxeDIGmnXfkQn8u5owvpOH0K6EVB+z9L7u6Cc4W17Br/+jyttEQ==", - "path": "system.linq.async/6.0.1", - "hashPath": "system.linq.async.6.0.1.nupkg.sha512" - }, - "System.Text.Json/8.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==", - "path": "system.text.json/8.0.5", - "hashPath": "system.text.json.8.0.5.nupkg.sha512" - } - }, - "runtimes": { - "android-x64": [ - "android", - "linux-bionic-x64", - "linux-bionic", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linux-bionic-x64": [ - "linux-bionic", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linux-musl-x64": [ - "linux-musl", - "linux-x64", - "linux", - "unix-x64", - "unix", - "any", - "base" - ], - "linux-x64": [ - "linux", - "unix-x64", - "unix", - "any", - "base" - ] - } -} \ No newline at end of file diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce.dll deleted file mode 100644 index adcbfb8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce.runtimeconfig.json b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce.runtimeconfig.json deleted file mode 100644 index 8f2ed09..0000000 --- a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/edb-commerce.runtimeconfig.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net9.0", - "includedFrameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "9.0.3" - } - ], - "configProperties": { - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/es/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/es/FSharp.Core.resources.dll deleted file mode 100644 index 03f160e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/es/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/fr/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/fr/FSharp.Core.resources.dll deleted file mode 100644 index d9e8e6f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/fr/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/fr/Spectre.Console.Cli.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/fr/Spectre.Console.Cli.resources.dll deleted file mode 100644 index 42fbeaa..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/fr/Spectre.Console.Cli.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/it/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/it/FSharp.Core.resources.dll deleted file mode 100644 index 9302d17..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/it/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/ja/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/ja/FSharp.Core.resources.dll deleted file mode 100644 index 14b589c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/ja/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/ko/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/ko/FSharp.Core.resources.dll deleted file mode 100644 index 7fc7dd1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/ko/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libSystem.Globalization.Native.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libSystem.Globalization.Native.so deleted file mode 100644 index 1aaca34..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libSystem.Globalization.Native.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libSystem.IO.Compression.Native.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libSystem.IO.Compression.Native.so deleted file mode 100644 index 71a7203..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libSystem.IO.Compression.Native.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libSystem.Native.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libSystem.Native.so deleted file mode 100644 index bdfbc5f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libSystem.Native.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libSystem.Net.Security.Native.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libSystem.Net.Security.Native.so deleted file mode 100644 index a51b37b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libSystem.Net.Security.Native.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so deleted file mode 100644 index ccfbab6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libclrgc.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libclrgc.so deleted file mode 100644 index 766f803..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libclrgc.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libclrgcexp.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libclrgcexp.so deleted file mode 100644 index c7c968d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libclrgcexp.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libclrjit.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libclrjit.so deleted file mode 100644 index df39f2d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libclrjit.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libcoreclr.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libcoreclr.so deleted file mode 100644 index 71435d5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libcoreclr.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libcoreclrtraceptprovider.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libcoreclrtraceptprovider.so deleted file mode 100644 index b6cff88..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libcoreclrtraceptprovider.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libduckdb.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libduckdb.so deleted file mode 100644 index 6fb7247..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libduckdb.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libhostfxr.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libhostfxr.so deleted file mode 100644 index 2eca58e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libhostfxr.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libhostpolicy.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libhostpolicy.so deleted file mode 100644 index f046d73..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libhostpolicy.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libmscordaccore.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libmscordaccore.so deleted file mode 100644 index aa3f8c6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libmscordaccore.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libmscordbi.so b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libmscordbi.so deleted file mode 100644 index a557f11..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/libmscordbi.so and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/mscorlib.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/mscorlib.dll deleted file mode 100644 index 7ca99ad..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/mscorlib.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/netstandard.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/netstandard.dll deleted file mode 100644 index 1e43973..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/netstandard.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/pl/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/pl/FSharp.Core.resources.dll deleted file mode 100644 index f54855c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/pl/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/pt-BR/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/pt-BR/FSharp.Core.resources.dll deleted file mode 100644 index 0f3b357..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/pt-BR/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/ru/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/ru/FSharp.Core.resources.dll deleted file mode 100644 index 071d7ea..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/ru/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/sv/Spectre.Console.Cli.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/sv/Spectre.Console.Cli.resources.dll deleted file mode 100644 index c0e1e28..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/sv/Spectre.Console.Cli.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/tr/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/tr/FSharp.Core.resources.dll deleted file mode 100644 index 0d2191e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/tr/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/zh-Hans/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/zh-Hans/FSharp.Core.resources.dll deleted file mode 100644 index 20923ef..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/zh-Hans/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/zh-Hant/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/zh-Hant/FSharp.Core.resources.dll deleted file mode 100644 index c26d2f2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/linux-x64/zh-Hant/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Bogus.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Bogus.dll deleted file mode 100644 index 16fb003..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Bogus.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/DuckDB.NET.Bindings.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/DuckDB.NET.Bindings.dll deleted file mode 100644 index 814bedd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/DuckDB.NET.Bindings.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/DuckDB.NET.Data.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/DuckDB.NET.Data.dll deleted file mode 100644 index 6ade32e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/DuckDB.NET.Data.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/EventStore.Client.Streams.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/EventStore.Client.Streams.dll deleted file mode 100644 index 09c32e0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/EventStore.Client.Streams.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/EventStore.Client.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/EventStore.Client.dll deleted file mode 100644 index ee16a26..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/EventStore.Client.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/FSharp.Control.TaskSeq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/FSharp.Control.TaskSeq.dll deleted file mode 100644 index 58f1874..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/FSharp.Control.TaskSeq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/FSharp.Core.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/FSharp.Core.dll deleted file mode 100644 index b5fcc23..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/FSharp.Core.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/FSharp.SystemTextJson.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/FSharp.SystemTextJson.dll deleted file mode 100644 index 54a704c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/FSharp.SystemTextJson.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Flurl.Http.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Flurl.Http.dll deleted file mode 100644 index 32256f1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Flurl.Http.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Flurl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Flurl.dll deleted file mode 100644 index 69d8268..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Flurl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Google.Protobuf.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Google.Protobuf.dll deleted file mode 100644 index bee156e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Google.Protobuf.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Grpc.Core.Api.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Grpc.Core.Api.dll deleted file mode 100644 index 554d4f6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Grpc.Core.Api.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Grpc.Net.Client.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Grpc.Net.Client.dll deleted file mode 100644 index 513f4df..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Grpc.Net.Client.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Grpc.Net.Common.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Grpc.Net.Common.dll deleted file mode 100644 index 6ead792..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Grpc.Net.Common.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/JetBrains.Annotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/JetBrains.Annotations.dll deleted file mode 100644 index 627220d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/JetBrains.Annotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Bcl.AsyncInterfaces.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index fe6ba4c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.CSharp.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.CSharp.dll deleted file mode 100644 index df6381a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.CSharp.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Configuration.Abstractions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100644 index 9d58f25..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Configuration.Binder.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Configuration.Binder.dll deleted file mode 100644 index 8d27d21..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Configuration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Configuration.dll deleted file mode 100644 index 2d38073..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Configuration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index 019f86e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.DependencyInjection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index 7eb65a5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Logging.Abstractions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index 9a3a2d9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Logging.Configuration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Logging.Configuration.dll deleted file mode 100644 index e7ccd84..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Logging.Configuration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Logging.Console.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Logging.Console.dll deleted file mode 100644 index 2c0da5c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Logging.Console.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Logging.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Logging.dll deleted file mode 100644 index c531383..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Options.ConfigurationExtensions.dll deleted file mode 100644 index 72908b9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Options.ConfigurationExtensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Options.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Options.dll deleted file mode 100644 index 08a9771..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index 4a3d0f1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.VisualBasic.Core.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.VisualBasic.Core.dll deleted file mode 100644 index f2d8ff8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.VisualBasic.Core.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.VisualBasic.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.VisualBasic.dll deleted file mode 100644 index f2aae34..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.VisualBasic.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Win32.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Win32.Primitives.dll deleted file mode 100644 index 58fd0a9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Win32.Registry.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Win32.Registry.dll deleted file mode 100644 index 1c1336a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Microsoft.Win32.Registry.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Minerals.StringCases.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Minerals.StringCases.dll deleted file mode 100644 index 9715248..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Minerals.StringCases.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/NJsonSchema.Annotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/NJsonSchema.Annotations.dll deleted file mode 100644 index c8db2a3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/NJsonSchema.Annotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/NJsonSchema.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/NJsonSchema.dll deleted file mode 100644 index 7efca78..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/NJsonSchema.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Namotion.Reflection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Namotion.Reflection.dll deleted file mode 100644 index 46c2790..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Namotion.Reflection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Newtonsoft.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Newtonsoft.Json.dll deleted file mode 100644 index d035c38..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Newtonsoft.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/NodaTime.Serialization.SystemTextJson.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/NodaTime.Serialization.SystemTextJson.dll deleted file mode 100644 index f321f43..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/NodaTime.Serialization.SystemTextJson.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/NodaTime.Testing.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/NodaTime.Testing.dll deleted file mode 100644 index 6e1d14a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/NodaTime.Testing.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/NodaTime.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/NodaTime.dll deleted file mode 100644 index 6227aca..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/NodaTime.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Spectre.Console.Cli.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Spectre.Console.Cli.dll deleted file mode 100644 index 8aaa97c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Spectre.Console.Cli.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Spectre.Console.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Spectre.Console.dll deleted file mode 100644 index 85cd7b4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/Spectre.Console.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.AppContext.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.AppContext.dll deleted file mode 100644 index ac2ec02..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.AppContext.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Buffers.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Buffers.dll deleted file mode 100644 index 883f059..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Buffers.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Collections.Concurrent.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Collections.Concurrent.dll deleted file mode 100644 index 9a08bff..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Collections.Concurrent.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Collections.Immutable.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Collections.Immutable.dll deleted file mode 100644 index 8ce49b0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Collections.Immutable.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Collections.NonGeneric.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Collections.NonGeneric.dll deleted file mode 100644 index c288a9d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Collections.Specialized.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Collections.Specialized.dll deleted file mode 100644 index d5c6dce..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Collections.Specialized.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Collections.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Collections.dll deleted file mode 100644 index c54cf8a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Collections.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.Annotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.Annotations.dll deleted file mode 100644 index 3153ff9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.DataAnnotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.DataAnnotations.dll deleted file mode 100644 index 78f4d59..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.DataAnnotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.EventBasedAsync.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.EventBasedAsync.dll deleted file mode 100644 index 2339ce3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.EventBasedAsync.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.Primitives.dll deleted file mode 100644 index 6e65ee6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.TypeConverter.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.TypeConverter.dll deleted file mode 100644 index 935c44a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.dll deleted file mode 100644 index b408e26..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ComponentModel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Configuration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Configuration.dll deleted file mode 100644 index e6692b9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Configuration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Console.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Console.dll deleted file mode 100644 index 3a52948..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Console.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Core.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Core.dll deleted file mode 100644 index 7af4825..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Core.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Data.Common.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Data.Common.dll deleted file mode 100644 index 5f31836..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Data.Common.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Data.DataSetExtensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Data.DataSetExtensions.dll deleted file mode 100644 index 385b537..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Data.DataSetExtensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Data.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Data.dll deleted file mode 100644 index 8ee8073..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Data.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.Contracts.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.Contracts.dll deleted file mode 100644 index d76f4cb..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.Contracts.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.Debug.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.Debug.dll deleted file mode 100644 index 9f67929..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.Debug.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.DiagnosticSource.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index 6e0e38c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.FileVersionInfo.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.FileVersionInfo.dll deleted file mode 100644 index 8357e76..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.Process.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.Process.dll deleted file mode 100644 index 3fd9e8b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.Process.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.StackTrace.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.StackTrace.dll deleted file mode 100644 index 032c868..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.TextWriterTraceListener.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.TextWriterTraceListener.dll deleted file mode 100644 index 3ea6c8a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.TextWriterTraceListener.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.Tools.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.Tools.dll deleted file mode 100644 index 8ae3fea..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.Tools.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.TraceSource.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.TraceSource.dll deleted file mode 100644 index afec0ea..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.Tracing.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.Tracing.dll deleted file mode 100644 index 09e5130..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Diagnostics.Tracing.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Drawing.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Drawing.Primitives.dll deleted file mode 100644 index 0d760eb..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Drawing.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Drawing.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Drawing.dll deleted file mode 100644 index 34f8af5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Drawing.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Dynamic.Runtime.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Dynamic.Runtime.dll deleted file mode 100644 index 9493a16..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Dynamic.Runtime.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Formats.Asn1.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Formats.Asn1.dll deleted file mode 100644 index 6c2a309..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Formats.Asn1.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Formats.Tar.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Formats.Tar.dll deleted file mode 100644 index 88ef94b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Formats.Tar.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Globalization.Calendars.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Globalization.Calendars.dll deleted file mode 100644 index 2031a46..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Globalization.Calendars.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Globalization.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Globalization.Extensions.dll deleted file mode 100644 index f893e7a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Globalization.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Globalization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Globalization.dll deleted file mode 100644 index f1d9308..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Globalization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Compression.Brotli.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Compression.Brotli.dll deleted file mode 100644 index 5be61de..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Compression.Brotli.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Compression.FileSystem.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Compression.FileSystem.dll deleted file mode 100644 index 9ec4fa9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Compression.FileSystem.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Compression.ZipFile.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Compression.ZipFile.dll deleted file mode 100644 index ab55f6e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Compression.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Compression.dll deleted file mode 100644 index 36e2da9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Compression.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.FileSystem.AccessControl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.FileSystem.AccessControl.dll deleted file mode 100644 index 723f6d7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.FileSystem.DriveInfo.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.FileSystem.DriveInfo.dll deleted file mode 100644 index eb2d295..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.FileSystem.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.FileSystem.Primitives.dll deleted file mode 100644 index 9f4e281..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.FileSystem.Watcher.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.FileSystem.Watcher.dll deleted file mode 100644 index f725772..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.FileSystem.Watcher.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.FileSystem.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.FileSystem.dll deleted file mode 100644 index 8f9449c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.FileSystem.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.IsolatedStorage.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.IsolatedStorage.dll deleted file mode 100644 index ee37504..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.IsolatedStorage.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.MemoryMappedFiles.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.MemoryMappedFiles.dll deleted file mode 100644 index ec578d3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.MemoryMappedFiles.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Pipelines.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Pipelines.dll deleted file mode 100644 index e298c66..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Pipelines.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Pipes.AccessControl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Pipes.AccessControl.dll deleted file mode 100644 index 16b002d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Pipes.AccessControl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Pipes.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Pipes.dll deleted file mode 100644 index 36996db..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.Pipes.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.UnmanagedMemoryStream.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.UnmanagedMemoryStream.dll deleted file mode 100644 index 41a18a7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.UnmanagedMemoryStream.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.dll deleted file mode 100644 index 88e5554..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.IO.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Linq.Async.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Linq.Async.dll deleted file mode 100644 index 7ae9527..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Linq.Async.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Linq.Expressions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Linq.Expressions.dll deleted file mode 100644 index 1fdcda2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Linq.Expressions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Linq.Parallel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Linq.Parallel.dll deleted file mode 100644 index 863ae50..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Linq.Parallel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Linq.Queryable.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Linq.Queryable.dll deleted file mode 100644 index 67c46f7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Linq.Queryable.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Linq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Linq.dll deleted file mode 100644 index 57798f4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Linq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Memory.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Memory.dll deleted file mode 100644 index e9473b3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Memory.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Http.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Http.Json.dll deleted file mode 100644 index 1d35617..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Http.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Http.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Http.dll deleted file mode 100644 index 288bb18..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Http.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.HttpListener.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.HttpListener.dll deleted file mode 100644 index 02d972c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.HttpListener.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Mail.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Mail.dll deleted file mode 100644 index 0d7a3cd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Mail.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.NameResolution.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.NameResolution.dll deleted file mode 100644 index f35dac9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.NameResolution.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.NetworkInformation.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.NetworkInformation.dll deleted file mode 100644 index 56a3e11..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.NetworkInformation.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Ping.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Ping.dll deleted file mode 100644 index 69e2096..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Ping.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Primitives.dll deleted file mode 100644 index 144a844..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Quic.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Quic.dll deleted file mode 100644 index 155089d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Quic.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Requests.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Requests.dll deleted file mode 100644 index fad1ade..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Requests.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Security.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Security.dll deleted file mode 100644 index d2cc08b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Security.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.ServicePoint.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.ServicePoint.dll deleted file mode 100644 index 949f7f5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.ServicePoint.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Sockets.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Sockets.dll deleted file mode 100644 index b51f655..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.Sockets.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.WebClient.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.WebClient.dll deleted file mode 100644 index 163b203..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.WebClient.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.WebHeaderCollection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.WebHeaderCollection.dll deleted file mode 100644 index 0792691..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.WebHeaderCollection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.WebProxy.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.WebProxy.dll deleted file mode 100644 index 0d3b534..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.WebProxy.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.WebSockets.Client.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.WebSockets.Client.dll deleted file mode 100644 index a31c73f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.WebSockets.Client.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.WebSockets.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.WebSockets.dll deleted file mode 100644 index 27f4c19..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.WebSockets.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.dll deleted file mode 100644 index 020b8d5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Net.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Numerics.Vectors.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Numerics.Vectors.dll deleted file mode 100644 index d03f4ba..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Numerics.Vectors.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Numerics.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Numerics.dll deleted file mode 100644 index 0ff7682..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Numerics.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ObjectModel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ObjectModel.dll deleted file mode 100644 index b900e53..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ObjectModel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Private.CoreLib.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Private.CoreLib.dll deleted file mode 100644 index c1caf3c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Private.CoreLib.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Private.DataContractSerialization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Private.DataContractSerialization.dll deleted file mode 100644 index e24e5c5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Private.DataContractSerialization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Private.Uri.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Private.Uri.dll deleted file mode 100644 index 88d205c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Private.Uri.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Private.Xml.Linq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Private.Xml.Linq.dll deleted file mode 100644 index da13cb0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Private.Xml.Linq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Private.Xml.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Private.Xml.dll deleted file mode 100644 index b9fb715..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Private.Xml.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.DispatchProxy.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.DispatchProxy.dll deleted file mode 100644 index b740e0d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.DispatchProxy.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Emit.ILGeneration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Emit.ILGeneration.dll deleted file mode 100644 index 517e833..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Emit.Lightweight.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Emit.Lightweight.dll deleted file mode 100644 index f5cd2f4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Emit.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Emit.dll deleted file mode 100644 index d8faf72..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Emit.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Extensions.dll deleted file mode 100644 index b2c9ded..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Metadata.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Metadata.dll deleted file mode 100644 index e71c117..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Metadata.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Primitives.dll deleted file mode 100644 index 777916b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.TypeExtensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.TypeExtensions.dll deleted file mode 100644 index 0eaab92..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.dll deleted file mode 100644 index 1e01b52..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Reflection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Resources.Reader.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Resources.Reader.dll deleted file mode 100644 index 1ecd304..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Resources.Reader.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Resources.ResourceManager.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Resources.ResourceManager.dll deleted file mode 100644 index f40624e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Resources.ResourceManager.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Resources.Writer.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Resources.Writer.dll deleted file mode 100644 index 3bd3fff..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Resources.Writer.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.CompilerServices.Unsafe.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 99e8fd2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.CompilerServices.VisualC.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.CompilerServices.VisualC.dll deleted file mode 100644 index e3d6fdb..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.CompilerServices.VisualC.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Extensions.dll deleted file mode 100644 index 1c51470..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Handles.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Handles.dll deleted file mode 100644 index fd1172a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Handles.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.InteropServices.JavaScript.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.InteropServices.JavaScript.dll deleted file mode 100644 index 4cc262a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.InteropServices.JavaScript.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.InteropServices.RuntimeInformation.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100644 index 2e393cf..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.InteropServices.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.InteropServices.dll deleted file mode 100644 index b2a9b8b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.InteropServices.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Intrinsics.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Intrinsics.dll deleted file mode 100644 index 07abfd1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Intrinsics.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Loader.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Loader.dll deleted file mode 100644 index 534c8e1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Loader.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Numerics.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Numerics.dll deleted file mode 100644 index 39ac7ff..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Numerics.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Serialization.Formatters.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Serialization.Formatters.dll deleted file mode 100644 index 2a75f2b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Serialization.Formatters.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Serialization.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Serialization.Json.dll deleted file mode 100644 index 3daa4a9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Serialization.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Serialization.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Serialization.Primitives.dll deleted file mode 100644 index 86bbba6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Serialization.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Serialization.Xml.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Serialization.Xml.dll deleted file mode 100644 index 8da8c12..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Serialization.Xml.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Serialization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Serialization.dll deleted file mode 100644 index 1266eca..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.Serialization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.dll deleted file mode 100644 index b64e250..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Runtime.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.AccessControl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.AccessControl.dll deleted file mode 100644 index 712a00a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.AccessControl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Claims.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Claims.dll deleted file mode 100644 index 9303f7c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Claims.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.Algorithms.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.Algorithms.dll deleted file mode 100644 index 16967d3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.Cng.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.Cng.dll deleted file mode 100644 index b183069..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.Csp.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.Csp.dll deleted file mode 100644 index 0d7a2f8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.Csp.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.Encoding.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.Encoding.dll deleted file mode 100644 index 3c2179c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.OpenSsl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.OpenSsl.dll deleted file mode 100644 index 1795ebc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.Primitives.dll deleted file mode 100644 index 47d146e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.X509Certificates.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.X509Certificates.dll deleted file mode 100644 index 8212e5b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.dll deleted file mode 100644 index 30c86fd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Cryptography.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Principal.Windows.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Principal.Windows.dll deleted file mode 100644 index d8aa7b0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Principal.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Principal.dll deleted file mode 100644 index 138ae50..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.Principal.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.SecureString.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.SecureString.dll deleted file mode 100644 index d8516c8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.SecureString.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.dll deleted file mode 100644 index e682b91..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Security.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ServiceModel.Web.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ServiceModel.Web.dll deleted file mode 100644 index 9434d8f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ServiceModel.Web.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ServiceProcess.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ServiceProcess.dll deleted file mode 100644 index 18fe5d4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ServiceProcess.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.Encoding.CodePages.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.Encoding.CodePages.dll deleted file mode 100644 index 1c3255c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.Encoding.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.Encoding.Extensions.dll deleted file mode 100644 index 6585c96..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.Encoding.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.Encoding.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.Encoding.dll deleted file mode 100644 index 647e8e8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.Encoding.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.Encodings.Web.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.Encodings.Web.dll deleted file mode 100644 index 6a1cf9d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.Json.dll deleted file mode 100644 index e727c3e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.RegularExpressions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.RegularExpressions.dll deleted file mode 100644 index 44f783b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Channels.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Channels.dll deleted file mode 100644 index 9e1a75b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Channels.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Overlapped.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Overlapped.dll deleted file mode 100644 index 0bd494c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Overlapped.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Tasks.Dataflow.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Tasks.Dataflow.dll deleted file mode 100644 index a0b352c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Tasks.Dataflow.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Tasks.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Tasks.Extensions.dll deleted file mode 100644 index 67c1c98..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Tasks.Parallel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Tasks.Parallel.dll deleted file mode 100644 index 3f3024f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Tasks.Parallel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Tasks.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Tasks.dll deleted file mode 100644 index 77ecfc8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Tasks.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Thread.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Thread.dll deleted file mode 100644 index a342640..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Thread.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.ThreadPool.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.ThreadPool.dll deleted file mode 100644 index 480e9c7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Timer.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Timer.dll deleted file mode 100644 index 712347f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.Timer.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.dll deleted file mode 100644 index e3c5ec4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Threading.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Transactions.Local.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Transactions.Local.dll deleted file mode 100644 index d3fd4ce..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Transactions.Local.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Transactions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Transactions.dll deleted file mode 100644 index 9c9c499..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Transactions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ValueTuple.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ValueTuple.dll deleted file mode 100644 index 1874760..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.ValueTuple.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Web.HttpUtility.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Web.HttpUtility.dll deleted file mode 100644 index 6ba800a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Web.HttpUtility.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Web.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Web.dll deleted file mode 100644 index 6dd8577..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Web.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Windows.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Windows.dll deleted file mode 100644 index 015cd39..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Windows.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.Linq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.Linq.dll deleted file mode 100644 index 0f64f19..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.Linq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.ReaderWriter.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.ReaderWriter.dll deleted file mode 100644 index 5a7f8f8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.Serialization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.Serialization.dll deleted file mode 100644 index 86f25c1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.Serialization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.XDocument.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.XDocument.dll deleted file mode 100644 index a9e1f81..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.XDocument.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.XPath.XDocument.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.XPath.XDocument.dll deleted file mode 100644 index 2801c76..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.XPath.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.XPath.dll deleted file mode 100644 index 039cf52..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.XPath.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.XmlDocument.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.XmlDocument.dll deleted file mode 100644 index c8798ad..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.XmlSerializer.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.XmlSerializer.dll deleted file mode 100644 index b5145aa..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.dll deleted file mode 100644 index d58c91b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.Xml.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.dll deleted file mode 100644 index 19e7bd9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/System.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/WindowsBase.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/WindowsBase.dll deleted file mode 100644 index 1daadb6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/WindowsBase.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/createdump b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/createdump deleted file mode 100644 index 8288712..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/createdump and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/cs/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/cs/FSharp.Core.resources.dll deleted file mode 100644 index 3c7f15b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/cs/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/de/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/de/FSharp.Core.resources.dll deleted file mode 100644 index 2342aa0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/de/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/de/Spectre.Console.Cli.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/de/Spectre.Console.Cli.resources.dll deleted file mode 100644 index f06877f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/de/Spectre.Console.Cli.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce deleted file mode 100644 index 51a6cd4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce.deps.json b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce.deps.json deleted file mode 100644 index c9fd2ae..0000000 --- a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce.deps.json +++ /dev/null @@ -1,1538 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v9.0/osx-arm64", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v9.0": {}, - ".NETCoreApp,Version=v9.0/osx-arm64": { - "edb-commerce/1.0.0": { - "dependencies": { - "Bogus": "35.6.2", - "DuckDB.NET.Data.Full": "1.2.1", - "EventStore.Client.Grpc.Streams": "23.3.8", - "FSharp.Control.TaskSeq": "0.4.0", - "FSharp.Core": "9.0.201", - "FSharp.SystemTextJson": "1.3.13", - "Flurl.Http": "4.0.2", - "Microsoft.Extensions.Logging.Console": "9.0.3", - "Minerals.StringCases": "0.2.1", - "NJsonSchema": "11.1.0", - "NodaTime": "3.2.1", - "NodaTime.Serialization.SystemTextJson": "1.3.0", - "NodaTime.Testing": "3.2.1", - "Spectre.Console.Cli": "0.49.1", - "runtimepack.Microsoft.NETCore.App.Runtime.osx-arm64": "9.0.3" - }, - "runtime": { - "edb-commerce.dll": {} - } - }, - "runtimepack.Microsoft.NETCore.App.Runtime.osx-arm64/9.0.3": { - "runtime": { - "Microsoft.CSharp.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "Microsoft.VisualBasic.Core.dll": { - "assemblyVersion": "14.0.0.0", - "fileVersion": "14.0.325.11113" - }, - "Microsoft.VisualBasic.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "Microsoft.Win32.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "Microsoft.Win32.Registry.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.AppContext.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Buffers.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.Concurrent.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.Immutable.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.NonGeneric.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.Specialized.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.Annotations.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.DataAnnotations.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.EventBasedAsync.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Configuration.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Data.Common.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Data.DataSetExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Data.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Contracts.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Debug.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.FileVersionInfo.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Process.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.StackTrace.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.TextWriterTraceListener.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Tools.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.TraceSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Tracing.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Drawing.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Drawing.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Dynamic.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Formats.Asn1.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Formats.Tar.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Globalization.Calendars.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Globalization.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Globalization.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.Brotli.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.FileSystem.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.ZipFile.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.DriveInfo.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.Watcher.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.IsolatedStorage.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.MemoryMappedFiles.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Pipelines.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Pipes.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Pipes.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.UnmanagedMemoryStream.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.Expressions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.Parallel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.Queryable.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Memory.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Http.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Http.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.HttpListener.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Mail.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.NameResolution.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.NetworkInformation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Ping.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Quic.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Requests.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Security.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.ServicePoint.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Sockets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebClient.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebHeaderCollection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebProxy.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebSockets.Client.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebSockets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Numerics.Vectors.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Numerics.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ObjectModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.CoreLib.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.DataContractSerialization.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.Uri.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.Xml.Linq.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.Xml.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.DispatchProxy.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Emit.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Metadata.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Resources.Reader.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Resources.ResourceManager.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Resources.Writer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.CompilerServices.VisualC.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Handles.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.InteropServices.JavaScript.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.InteropServices.RuntimeInformation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.InteropServices.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Intrinsics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Loader.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Numerics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Formatters.dll": { - "assemblyVersion": "8.1.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Xml.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Claims.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Algorithms.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Cng.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Csp.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Encoding.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.OpenSsl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.X509Certificates.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Principal.Windows.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Principal.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.SecureString.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ServiceModel.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ServiceProcess.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encoding.CodePages.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encoding.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encoding.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encodings.Web.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.RegularExpressions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Channels.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Overlapped.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.Dataflow.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.Parallel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Thread.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.ThreadPool.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Timer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Transactions.Local.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Transactions.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ValueTuple.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Web.HttpUtility.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Windows.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.Linq.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.ReaderWriter.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XPath.XDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XPath.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XmlDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XmlSerializer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "WindowsBase.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "mscorlib.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "netstandard.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "9.0.325.11113" - } - }, - "native": { - "createdump": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Globalization.Native.dylib": { - "fileVersion": "0.0.0.0" - }, - "libSystem.IO.Compression.Native.dylib": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Native.dylib": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Net.Security.Native.dylib": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Security.Cryptography.Native.Apple.dylib": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Security.Cryptography.Native.OpenSsl.dylib": { - "fileVersion": "0.0.0.0" - }, - "libclrgc.dylib": { - "fileVersion": "0.0.0.0" - }, - "libclrgcexp.dylib": { - "fileVersion": "0.0.0.0" - }, - "libclrjit.dylib": { - "fileVersion": "0.0.0.0" - }, - "libcoreclr.dylib": { - "fileVersion": "0.0.0.0" - }, - "libhostfxr.dylib": { - "fileVersion": "0.0.0.0" - }, - "libhostpolicy.dylib": { - "fileVersion": "0.0.0.0" - }, - "libmscordaccore.dylib": { - "fileVersion": "0.0.0.0" - }, - "libmscordbi.dylib": { - "fileVersion": "0.0.0.0" - } - } - }, - "Bogus/35.6.2": { - "runtime": { - "lib/net6.0/Bogus.dll": { - "assemblyVersion": "35.6.2.0", - "fileVersion": "35.6.2.0" - } - } - }, - "DuckDB.NET.Bindings.Full/1.2.1": { - "runtime": { - "lib/net8.0/DuckDB.NET.Bindings.dll": { - "assemblyVersion": "1.2.1.0", - "fileVersion": "1.2.1.0" - } - }, - "native": { - "runtimes/osx/native/libduckdb.dylib": { - "fileVersion": "0.0.0.0" - } - } - }, - "DuckDB.NET.Data.Full/1.2.1": { - "dependencies": { - "DuckDB.NET.Bindings.Full": "1.2.1" - }, - "runtime": { - "lib/net8.0/DuckDB.NET.Data.dll": { - "assemblyVersion": "1.2.1.0", - "fileVersion": "1.2.1.0" - } - } - }, - "EventStore.Client.Grpc/23.3.8": { - "dependencies": { - "Google.Protobuf": "3.25.1", - "Grpc.Net.Client": "2.60.0", - "JetBrains.Annotations": "2023.3.0", - "Microsoft.Extensions.Logging": "9.0.3", - "System.Diagnostics.DiagnosticSource": "8.0.1", - "System.Linq.Async": "6.0.1", - "System.Text.Json": "8.0.5" - }, - "runtime": { - "lib/net8.0/EventStore.Client.dll": { - "assemblyVersion": "23.0.0.0", - "fileVersion": "23.3.8.0" - } - } - }, - "EventStore.Client.Grpc.Streams/23.3.8": { - "dependencies": { - "EventStore.Client.Grpc": "23.3.8" - }, - "runtime": { - "lib/net8.0/EventStore.Client.Streams.dll": { - "assemblyVersion": "23.0.0.0", - "fileVersion": "23.3.8.0" - } - } - }, - "Flurl/4.0.0": { - "runtime": { - "lib/netstandard2.0/Flurl.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.0.0" - } - } - }, - "Flurl.Http/4.0.2": { - "dependencies": { - "Flurl": "4.0.0" - }, - "runtime": { - "lib/net6.0/Flurl.Http.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.0.2.0" - } - } - }, - "FSharp.Control.TaskSeq/0.4.0": { - "dependencies": { - "FSharp.Core": "9.0.201" - }, - "runtime": { - "lib/netstandard2.1/FSharp.Control.TaskSeq.dll": { - "assemblyVersion": "0.4.0.0", - "fileVersion": "0.4.0.0" - } - } - }, - "FSharp.Core/9.0.201": { - "runtime": { - "lib/netstandard2.1/FSharp.Core.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.2.125.7003" - } - }, - "resources": { - "lib/netstandard2.1/cs/FSharp.Core.resources.dll": { - "locale": "cs" - }, - "lib/netstandard2.1/de/FSharp.Core.resources.dll": { - "locale": "de" - }, - "lib/netstandard2.1/es/FSharp.Core.resources.dll": { - "locale": "es" - }, - "lib/netstandard2.1/fr/FSharp.Core.resources.dll": { - "locale": "fr" - }, - "lib/netstandard2.1/it/FSharp.Core.resources.dll": { - "locale": "it" - }, - "lib/netstandard2.1/ja/FSharp.Core.resources.dll": { - "locale": "ja" - }, - "lib/netstandard2.1/ko/FSharp.Core.resources.dll": { - "locale": "ko" - }, - "lib/netstandard2.1/pl/FSharp.Core.resources.dll": { - "locale": "pl" - }, - "lib/netstandard2.1/pt-BR/FSharp.Core.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard2.1/ru/FSharp.Core.resources.dll": { - "locale": "ru" - }, - "lib/netstandard2.1/tr/FSharp.Core.resources.dll": { - "locale": "tr" - }, - "lib/netstandard2.1/zh-Hans/FSharp.Core.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard2.1/zh-Hant/FSharp.Core.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "FSharp.SystemTextJson/1.3.13": { - "dependencies": { - "FSharp.Core": "9.0.201", - "System.Text.Json": "8.0.5" - }, - "runtime": { - "lib/netstandard2.0/FSharp.SystemTextJson.dll": { - "assemblyVersion": "1.3.0.0", - "fileVersion": "1.3.13.11246" - } - } - }, - "Google.Protobuf/3.25.1": { - "runtime": { - "lib/net5.0/Google.Protobuf.dll": { - "assemblyVersion": "3.25.1.0", - "fileVersion": "3.25.1.0" - } - } - }, - "Grpc.Core.Api/2.60.0": { - "runtime": { - "lib/netstandard2.1/Grpc.Core.Api.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.60.0.0" - } - } - }, - "Grpc.Net.Client/2.60.0": { - "dependencies": { - "Grpc.Net.Common": "2.60.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net8.0/Grpc.Net.Client.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.60.0.0" - } - } - }, - "Grpc.Net.Common/2.60.0": { - "dependencies": { - "Grpc.Core.Api": "2.60.0" - }, - "runtime": { - "lib/net8.0/Grpc.Net.Common.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.60.0.0" - } - } - }, - "JetBrains.Annotations/2023.3.0": { - "runtime": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "assemblyVersion": "4242.42.42.42", - "fileVersion": "2023.3.0.0" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.DependencyInjection/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.3": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "9.0.3", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging.Configuration/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.3", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", - "Microsoft.Extensions.Configuration.Binder": "9.0.3", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Logging": "9.0.3", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3", - "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging.Console/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Logging": "9.0.3", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3", - "Microsoft.Extensions.Logging.Configuration": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Options/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", - "Microsoft.Extensions.Configuration.Binder": "9.0.3", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3", - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Primitives/9.0.3": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Minerals.StringCases/0.2.1": { - "runtime": { - "lib/netstandard2.0/Minerals.StringCases.dll": { - "assemblyVersion": "0.2.1.0", - "fileVersion": "0.2.1.0" - } - } - }, - "Namotion.Reflection/3.2.0": { - "runtime": { - "lib/net8.0/Namotion.Reflection.dll": { - "assemblyVersion": "3.2.0.0", - "fileVersion": "3.2.0.0" - } - } - }, - "Newtonsoft.Json/13.0.3": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" - } - } - }, - "NJsonSchema/11.1.0": { - "dependencies": { - "NJsonSchema.Annotations": "11.1.0", - "Namotion.Reflection": "3.2.0", - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/net6.0/NJsonSchema.dll": { - "assemblyVersion": "11.1.0.0", - "fileVersion": "11.1.0.0" - } - } - }, - "NJsonSchema.Annotations/11.1.0": { - "runtime": { - "lib/netstandard2.0/NJsonSchema.Annotations.dll": { - "assemblyVersion": "11.1.0.0", - "fileVersion": "11.1.0.0" - } - } - }, - "NodaTime/3.2.1": { - "runtime": { - "lib/net8.0/NodaTime.dll": { - "assemblyVersion": "3.2.1.0", - "fileVersion": "3.2.1.0" - } - } - }, - "NodaTime.Serialization.SystemTextJson/1.3.0": { - "dependencies": { - "NodaTime": "3.2.1" - }, - "runtime": { - "lib/net6.0/NodaTime.Serialization.SystemTextJson.dll": { - "assemblyVersion": "1.3.0.0", - "fileVersion": "1.3.0.0" - } - } - }, - "NodaTime.Testing/3.2.1": { - "dependencies": { - "NodaTime": "3.2.1" - }, - "runtime": { - "lib/netstandard2.0/NodaTime.Testing.dll": { - "assemblyVersion": "3.2.1.0", - "fileVersion": "3.2.1.0" - } - } - }, - "Spectre.Console/0.49.1": { - "runtime": { - "lib/net8.0/Spectre.Console.dll": { - "assemblyVersion": "0.0.0.0", - "fileVersion": "0.49.1.0" - } - } - }, - "Spectre.Console.Cli/0.49.1": { - "dependencies": { - "Spectre.Console": "0.49.1" - }, - "runtime": { - "lib/net8.0/Spectre.Console.Cli.dll": { - "assemblyVersion": "0.0.0.0", - "fileVersion": "0.49.1.0" - } - }, - "resources": { - "lib/net8.0/de/Spectre.Console.Cli.resources.dll": { - "locale": "de" - }, - "lib/net8.0/fr/Spectre.Console.Cli.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/sv/Spectre.Console.Cli.resources.dll": { - "locale": "sv" - } - } - }, - "System.Diagnostics.DiagnosticSource/8.0.1": {}, - "System.Linq.Async/6.0.1": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Linq.Async.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1.35981" - } - } - }, - "System.Text.Json/8.0.5": {} - } - }, - "libraries": { - "edb-commerce/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "runtimepack.Microsoft.NETCore.App.Runtime.osx-arm64/9.0.3": { - "type": "runtimepack", - "serviceable": false, - "sha512": "" - }, - "Bogus/35.6.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-u3XtrfDqwNDqmJiUA6AnUBGU2169av3BtBOrcgp1JZb2RVCg6P6JOTcJvXCLDd6YiRZFKxuoujiWM951Ze8D5w==", - "path": "bogus/35.6.2", - "hashPath": "bogus.35.6.2.nupkg.sha512" - }, - "DuckDB.NET.Bindings.Full/1.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tdK+r/Omifx+VXYo6uLjocgaPcSEWoL0ZN26D9KbffmLGfeYirMMhyoaAwOiBwGbeYS1jlQSiVjmtFv6Squb7g==", - "path": "duckdb.net.bindings.full/1.2.1", - "hashPath": "duckdb.net.bindings.full.1.2.1.nupkg.sha512" - }, - "DuckDB.NET.Data.Full/1.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eUdXsYwpnIu4gKjX/T6vA/73rY+O16YB/4mKj/jsdLnmk9C/lwo+AOgejuZgWell5HB7vQaoX8qjYgMM5XTCyA==", - "path": "duckdb.net.data.full/1.2.1", - "hashPath": "duckdb.net.data.full.1.2.1.nupkg.sha512" - }, - "EventStore.Client.Grpc/23.3.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rHQ8/umPRpI07uQV1cpqMt3fL8JRd8P+1WncIX0KULi4jz4Zg9xo1IHVvYXmljbAsJLSNy0QElf49+bjsBTAAg==", - "path": "eventstore.client.grpc/23.3.8", - "hashPath": "eventstore.client.grpc.23.3.8.nupkg.sha512" - }, - "EventStore.Client.Grpc.Streams/23.3.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xMFeUT2+/V07AgcIb041oFZIbfTE7d9atfvlBvVt3tmqrPV0dTe6eirDjUAZElM2ze/wyFpywlR6L2/LKG5+aQ==", - "path": "eventstore.client.grpc.streams/23.3.8", - "hashPath": "eventstore.client.grpc.streams.23.3.8.nupkg.sha512" - }, - "Flurl/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rpts69yYgvJqg6PPgqShBQEZ4aNzWQqWpWppcT0oDWxDCIsBqiod4pj6LQZdhk+1OozLFagemldMRACdHF3CsA==", - "path": "flurl/4.0.0", - "hashPath": "flurl.4.0.0.nupkg.sha512" - }, - "Flurl.Http/4.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9vCqFFyceA11yplkFD8AbCFFTvG1Lrw3tpsgOpL5sLUc28p6zcvGszNleuT6nDymRvtt5eS+rqUX+bRztg1fhA==", - "path": "flurl.http/4.0.2", - "hashPath": "flurl.http.4.0.2.nupkg.sha512" - }, - "FSharp.Control.TaskSeq/0.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+GK6oSwfffZaLPaWTBPYfX8mgWxszRrX9BdFh5ZLgQwg3IL3u10YneSCusOJ1gZKmdXAgGt4O4M9I9bgRTpL0Q==", - "path": "fsharp.control.taskseq/0.4.0", - "hashPath": "fsharp.control.taskseq.0.4.0.nupkg.sha512" - }, - "FSharp.Core/9.0.201": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ozq4T0ISTkqTYJ035XW/JkdDDaXofbykvfyVwkjLSqaDZ/4uNXfpf92cjcMI9lf9CxWqmlWHScViPh/4AvnWcw==", - "path": "fsharp.core/9.0.201", - "hashPath": "fsharp.core.9.0.201.nupkg.sha512" - }, - "FSharp.SystemTextJson/1.3.13": { - "type": "package", - "serviceable": true, - "sha512": "sha512-znp8odpdkVGKVX0AvbhiXdmeMi0KJ+A4AyAQWSkfAEAe4Z4clRE+rVhrLnAGrFD1VEIUX2lsQ4o84ywpWZUSGw==", - "path": "fsharp.systemtextjson/1.3.13", - "hashPath": "fsharp.systemtextjson.1.3.13.nupkg.sha512" - }, - "Google.Protobuf/3.25.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Sw9bq4hOD+AaS3RrnmP5IT25cyZ/T1qpM0e8+G+23Nojhv7+ScJFPEAQo1m4EFQWhXoI4FRZDrK+wjHCPw9yxg==", - "path": "google.protobuf/3.25.1", - "hashPath": "google.protobuf.3.25.1.nupkg.sha512" - }, - "Grpc.Core.Api/2.60.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VWah+8dGJhhsay5BQ/Ljq6GYDWj0lSjdzqyoBgUQhXTbBqhs+q5dRFROKxI1xxzlL4pfUO45cf/y+KnHVFG9ew==", - "path": "grpc.core.api/2.60.0", - "hashPath": "grpc.core.api.2.60.0.nupkg.sha512" - }, - "Grpc.Net.Client/2.60.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-J9U96gjZHOcqSgAThg9vZZhLsbTD005bUggPtMP/RVQnGc3+tQJTpkRUCJtJWq9cykNydsRVoyU38TjPP/VJ4A==", - "path": "grpc.net.client/2.60.0", - "hashPath": "grpc.net.client.2.60.0.nupkg.sha512" - }, - "Grpc.Net.Common/2.60.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Y/917aplgD1RA0q1cd9WpnMGyl9Luu3WZl6ZMpPvNQwg2TNw/3uXUDSriDBybeCtxnKUCtxUcWO3WsVkhM1DcA==", - "path": "grpc.net.common/2.60.0", - "hashPath": "grpc.net.common.2.60.0.nupkg.sha512" - }, - "JetBrains.Annotations/2023.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PHfnvdBUdGaTVG9bR/GEfxgTwWM0Z97Y6X3710wiljELBISipSfF5okn/vz+C2gfO+ihoEyVPjaJwn8ZalVukA==", - "path": "jetbrains.annotations/2023.3.0", - "hashPath": "jetbrains.annotations.2023.3.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RIEeZxWYm77+OWLwgik7DzSVSONjqkmcbuCb1koZdGAV7BgOUWnLz80VMyHZMw3onrVwFCCMHBBdruBPuQTvkg==", - "path": "microsoft.extensions.configuration/9.0.3", - "hashPath": "microsoft.extensions.configuration.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-q5qlbm6GRUrle2ZZxy9aqS/wWoc+mRD3JeP6rcpiJTh5XcemYkplAcJKq8lU11ZfPom5lfbZZfnQvDqcUhqD5Q==", - "path": "microsoft.extensions.configuration.abstractions/9.0.3", - "hashPath": "microsoft.extensions.configuration.abstractions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ad82pYBUSQbd3WIboxsS1HzFdRuHKRa2CpYwie/o6dZAxUjt62yFwjoVdM7Iw2VO5fHV1rJwa7jJZBNZin0E7Q==", - "path": "microsoft.extensions.configuration.binder/9.0.3", - "hashPath": "microsoft.extensions.configuration.binder.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lDbxJpkl6X8KZGpkAxgrrthQ42YeiR0xjPp7KPx+sCPc3ZbpaIbjzd0QQ+9kDdK2RU2DOl3pc6tQyAgEZY3V0A==", - "path": "microsoft.extensions.dependencyinjection/9.0.3", - "hashPath": "microsoft.extensions.dependencyinjection.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TfaHPSe39NyL2wxkisRxXK7xvHGZYBZ+dy3r+mqGvnxKgAPdHkMu3QMQZI4pquP6W5FIQBqs8FJpWV8ffCgDqQ==", - "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.3", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-utIi2R1nm+PCWkvWBf1Ou6LWqg9iLfHU23r8yyU9VCvda4dEs7xbTZSwGa5KuwbpzpgCbHCIuKaFHB3zyFmnGw==", - "path": "microsoft.extensions.logging/9.0.3", - "hashPath": "microsoft.extensions.logging.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H/MBMLt9A/69Ux4OrV7oCKt3DcMT04o5SCqDolulzQA66TLFEpYYb4qedMs/uwrLtyHXGuDGWKZse/oa8W9AZw==", - "path": "microsoft.extensions.logging.abstractions/9.0.3", - "hashPath": "microsoft.extensions.logging.abstractions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Configuration/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eVZsaKNyK0g0C1qp0mmn4Q2PiX+bXdkz8+zVkXyVMk8IvoWfmTjLjEq1MQlwt1A22lToANPiUrxPJ7Tt3V5puw==", - "path": "microsoft.extensions.logging.configuration/9.0.3", - "hashPath": "microsoft.extensions.logging.configuration.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Console/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o9VXLOdpTAro1q7ZThIB3S8OHrRn5pr8cFUCiN85fiwlfAt2DhU4ZIfHy+jCNbf7y7S5Exbr3dlDE8mKNrs0Yg==", - "path": "microsoft.extensions.logging.console/9.0.3", - "hashPath": "microsoft.extensions.logging.console.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Options/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xE7MpY70lkw1oiid5y6FbL9dVw8oLfkx8RhSNGN8sSzBlCqGn0SyT3Fqc8tZnDaPIq7Z8R9RTKlS564DS+MV3g==", - "path": "microsoft.extensions.options/9.0.3", - "hashPath": "microsoft.extensions.options.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PcyYHQglKnWVZHSPaL6v2qnfsIuFw8tSq7cyXHg3OeuDVn/CqmdWUjRiZomCF/Gi+qCi+ksz0lFphg2cNvB8zQ==", - "path": "microsoft.extensions.options.configurationextensions/9.0.3", - "hashPath": "microsoft.extensions.options.configurationextensions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yCCJHvBcRyqapMSNzP+kTc57Eaavq2cr5Tmuil6/XVnipQf5xmskxakSQ1enU6S4+fNg3sJ27WcInV64q24JsA==", - "path": "microsoft.extensions.primitives/9.0.3", - "hashPath": "microsoft.extensions.primitives.9.0.3.nupkg.sha512" - }, - "Minerals.StringCases/0.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oIYrFY0Gq7XkNyziWLofmHZmJWsTJ/EtFpytGO0azmngopJXcCvkamuPzFwTfNz3d3B4/m8+ma0qI/z7q6NHXA==", - "path": "minerals.stringcases/0.2.1", - "hashPath": "minerals.stringcases.0.2.1.nupkg.sha512" - }, - "Namotion.Reflection/3.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YfGjDPzMEs3vRMI4CMkJwOg75SV5JEDV72kMccD2GCo++TfgOYb5ZTpABYq3dUQqFtnAPpqMKM+deLlrUwnN1g==", - "path": "namotion.reflection/3.2.0", - "hashPath": "namotion.reflection.3.2.0.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" - }, - "NJsonSchema/11.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H7QO+bM/2uzF81mVyy4U8ha4MXS9eOX06rTvBgJKquzIuLUGuiOTc4nknkCFKW7mr+xnWgzY7Spevz5ZEK8fGg==", - "path": "njsonschema/11.1.0", - "hashPath": "njsonschema.11.1.0.nupkg.sha512" - }, - "NJsonSchema.Annotations/11.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2gU72pKhMLrQt7TjHv+nrb8CxxgUaBk2SD/CaB5f00SxuWdOT4YVQaGy+jTVx+8IgQit+9WWMvBWU9f6U2HNiQ==", - "path": "njsonschema.annotations/11.1.0", - "hashPath": "njsonschema.annotations.11.1.0.nupkg.sha512" - }, - "NodaTime/3.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D1aHhUfPQUxU2nfDCVuSLahpp0xCYZTmj/KNH3mSK/tStJYcx9HO9aJ0qbOP3hzjGPV/DXOqY2AHe27Nt4xs4g==", - "path": "nodatime/3.2.1", - "hashPath": "nodatime.3.2.1.nupkg.sha512" - }, - "NodaTime.Serialization.SystemTextJson/1.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zf9sdKrfcId0rvZLOB7Yncy/cfCv20TdQ84IKE6CkcWW33u1wsRvmYUbfaP5MYUm+9vp9Yoi3G2vN1/9nZ/JCA==", - "path": "nodatime.serialization.systemtextjson/1.3.0", - "hashPath": "nodatime.serialization.systemtextjson.1.3.0.nupkg.sha512" - }, - "NodaTime.Testing/3.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5/3Knjh+U/lshyad4MS6SSO4VD18RT6wf0tFi0rp7wlG0Zxso247qt7RPAPArnsD/bBUqq0/36N8QIs9SzSoSA==", - "path": "nodatime.testing/3.2.1", - "hashPath": "nodatime.testing.3.2.1.nupkg.sha512" - }, - "Spectre.Console/0.49.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-USV+pdu49OJ3nCjxNuw1K9Zw/c1HCBbwbjXZp0EOn6wM99tFdAtN34KEBZUMyRuJuXlUMDqhd8Yq9obW2MslYA==", - "path": "spectre.console/0.49.1", - "hashPath": "spectre.console.0.49.1.nupkg.sha512" - }, - "Spectre.Console.Cli/0.49.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wBZzyEbKqfPFFUPhV5E7/k4Kwy4UDO42IVzvzk0C4Pkjjw+NSd0EOBkIutYET4vJY4X81pD9ooQO9gfBGXj4+g==", - "path": "spectre.console.cli/0.49.1", - "hashPath": "spectre.console.cli.0.49.1.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", - "path": "system.diagnostics.diagnosticsource/8.0.1", - "hashPath": "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512" - }, - "System.Linq.Async/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0YhHcaroWpQ9UCot3Pizah7ryAzQhNvobLMSxeDIGmnXfkQn8u5owvpOH0K6EVB+z9L7u6Cc4W17Br/+jyttEQ==", - "path": "system.linq.async/6.0.1", - "hashPath": "system.linq.async.6.0.1.nupkg.sha512" - }, - "System.Text.Json/8.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==", - "path": "system.text.json/8.0.5", - "hashPath": "system.text.json.8.0.5.nupkg.sha512" - } - }, - "runtimes": { - "osx-arm64": [ - "osx", - "unix-arm64", - "unix", - "any", - "base" - ] - } -} \ No newline at end of file diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce.dll deleted file mode 100644 index bb9cc6f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce.runtimeconfig.json b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce.runtimeconfig.json deleted file mode 100644 index 8f2ed09..0000000 --- a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/edb-commerce.runtimeconfig.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net9.0", - "includedFrameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "9.0.3" - } - ], - "configProperties": { - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/es/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/es/FSharp.Core.resources.dll deleted file mode 100644 index 03f160e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/es/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/fr/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/fr/FSharp.Core.resources.dll deleted file mode 100644 index d9e8e6f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/fr/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/fr/Spectre.Console.Cli.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/fr/Spectre.Console.Cli.resources.dll deleted file mode 100644 index 42fbeaa..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/fr/Spectre.Console.Cli.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/it/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/it/FSharp.Core.resources.dll deleted file mode 100644 index 9302d17..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/it/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/ja/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/ja/FSharp.Core.resources.dll deleted file mode 100644 index 14b589c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/ja/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/ko/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/ko/FSharp.Core.resources.dll deleted file mode 100644 index 7fc7dd1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/ko/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.Globalization.Native.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.Globalization.Native.dylib deleted file mode 100644 index 3590060..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.Globalization.Native.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.IO.Compression.Native.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.IO.Compression.Native.dylib deleted file mode 100644 index 1acd75e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.IO.Compression.Native.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.Native.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.Native.dylib deleted file mode 100644 index d83b6ab..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.Native.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.Net.Security.Native.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.Net.Security.Native.dylib deleted file mode 100644 index 8c996c0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.Net.Security.Native.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.Security.Cryptography.Native.Apple.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.Security.Cryptography.Native.Apple.dylib deleted file mode 100644 index 4bca229..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.Security.Cryptography.Native.Apple.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.Security.Cryptography.Native.OpenSsl.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.Security.Cryptography.Native.OpenSsl.dylib deleted file mode 100644 index 641978f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libSystem.Security.Cryptography.Native.OpenSsl.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libclrgc.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libclrgc.dylib deleted file mode 100644 index 4c8f6bb..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libclrgc.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libclrgcexp.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libclrgcexp.dylib deleted file mode 100644 index b849a3f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libclrgcexp.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libclrjit.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libclrjit.dylib deleted file mode 100644 index 3bdb1fa..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libclrjit.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libcoreclr.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libcoreclr.dylib deleted file mode 100644 index 7e69f80..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libcoreclr.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libduckdb.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libduckdb.dylib deleted file mode 100644 index d53e163..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libduckdb.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libhostfxr.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libhostfxr.dylib deleted file mode 100644 index e079025..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libhostfxr.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libhostpolicy.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libhostpolicy.dylib deleted file mode 100644 index 82cce66..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libhostpolicy.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libmscordaccore.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libmscordaccore.dylib deleted file mode 100644 index b16f26b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libmscordaccore.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libmscordbi.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libmscordbi.dylib deleted file mode 100644 index 8a036a3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/libmscordbi.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/mscorlib.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/mscorlib.dll deleted file mode 100644 index c71cf0e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/mscorlib.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/netstandard.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/netstandard.dll deleted file mode 100644 index 44e91b4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/netstandard.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/pl/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/pl/FSharp.Core.resources.dll deleted file mode 100644 index f54855c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/pl/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/pt-BR/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/pt-BR/FSharp.Core.resources.dll deleted file mode 100644 index 0f3b357..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/pt-BR/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/ru/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/ru/FSharp.Core.resources.dll deleted file mode 100644 index 071d7ea..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/ru/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/sv/Spectre.Console.Cli.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/sv/Spectre.Console.Cli.resources.dll deleted file mode 100644 index c0e1e28..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/sv/Spectre.Console.Cli.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/tr/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/tr/FSharp.Core.resources.dll deleted file mode 100644 index 0d2191e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/tr/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/zh-Hans/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/zh-Hans/FSharp.Core.resources.dll deleted file mode 100644 index 20923ef..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/zh-Hans/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/zh-Hant/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/zh-Hant/FSharp.Core.resources.dll deleted file mode 100644 index c26d2f2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-arm64/zh-Hant/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Bogus.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Bogus.dll deleted file mode 100644 index 16fb003..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Bogus.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/DuckDB.NET.Bindings.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/DuckDB.NET.Bindings.dll deleted file mode 100644 index 814bedd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/DuckDB.NET.Bindings.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/DuckDB.NET.Data.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/DuckDB.NET.Data.dll deleted file mode 100644 index 6ade32e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/DuckDB.NET.Data.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/EventStore.Client.Streams.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/EventStore.Client.Streams.dll deleted file mode 100644 index 09c32e0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/EventStore.Client.Streams.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/EventStore.Client.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/EventStore.Client.dll deleted file mode 100644 index ee16a26..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/EventStore.Client.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/FSharp.Control.TaskSeq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/FSharp.Control.TaskSeq.dll deleted file mode 100644 index 58f1874..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/FSharp.Control.TaskSeq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/FSharp.Core.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/FSharp.Core.dll deleted file mode 100644 index b5fcc23..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/FSharp.Core.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/FSharp.SystemTextJson.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/FSharp.SystemTextJson.dll deleted file mode 100644 index 54a704c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/FSharp.SystemTextJson.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Flurl.Http.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Flurl.Http.dll deleted file mode 100644 index 32256f1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Flurl.Http.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Flurl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Flurl.dll deleted file mode 100644 index 69d8268..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Flurl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Google.Protobuf.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Google.Protobuf.dll deleted file mode 100644 index bee156e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Google.Protobuf.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Grpc.Core.Api.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Grpc.Core.Api.dll deleted file mode 100644 index 554d4f6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Grpc.Core.Api.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Grpc.Net.Client.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Grpc.Net.Client.dll deleted file mode 100644 index 513f4df..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Grpc.Net.Client.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Grpc.Net.Common.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Grpc.Net.Common.dll deleted file mode 100644 index 6ead792..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Grpc.Net.Common.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/JetBrains.Annotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/JetBrains.Annotations.dll deleted file mode 100644 index 627220d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/JetBrains.Annotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Bcl.AsyncInterfaces.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index fe6ba4c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.CSharp.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.CSharp.dll deleted file mode 100644 index 3f05bd9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.CSharp.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Configuration.Abstractions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100644 index 9d58f25..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Configuration.Binder.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Configuration.Binder.dll deleted file mode 100644 index 8d27d21..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Configuration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Configuration.dll deleted file mode 100644 index 2d38073..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Configuration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index 019f86e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.DependencyInjection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index 7eb65a5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Logging.Abstractions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index 9a3a2d9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Logging.Configuration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Logging.Configuration.dll deleted file mode 100644 index e7ccd84..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Logging.Configuration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Logging.Console.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Logging.Console.dll deleted file mode 100644 index 2c0da5c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Logging.Console.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Logging.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Logging.dll deleted file mode 100644 index c531383..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Options.ConfigurationExtensions.dll deleted file mode 100644 index 72908b9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Options.ConfigurationExtensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Options.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Options.dll deleted file mode 100644 index 08a9771..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index 4a3d0f1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.VisualBasic.Core.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.VisualBasic.Core.dll deleted file mode 100644 index fc03138..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.VisualBasic.Core.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.VisualBasic.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.VisualBasic.dll deleted file mode 100644 index f2aae34..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.VisualBasic.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Win32.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Win32.Primitives.dll deleted file mode 100644 index 58fd0a9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Win32.Registry.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Win32.Registry.dll deleted file mode 100644 index c7ad65a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Microsoft.Win32.Registry.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Minerals.StringCases.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Minerals.StringCases.dll deleted file mode 100644 index 9715248..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Minerals.StringCases.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/NJsonSchema.Annotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/NJsonSchema.Annotations.dll deleted file mode 100644 index c8db2a3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/NJsonSchema.Annotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/NJsonSchema.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/NJsonSchema.dll deleted file mode 100644 index 7efca78..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/NJsonSchema.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Namotion.Reflection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Namotion.Reflection.dll deleted file mode 100644 index 46c2790..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Namotion.Reflection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Newtonsoft.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Newtonsoft.Json.dll deleted file mode 100644 index d035c38..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Newtonsoft.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/NodaTime.Serialization.SystemTextJson.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/NodaTime.Serialization.SystemTextJson.dll deleted file mode 100644 index f321f43..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/NodaTime.Serialization.SystemTextJson.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/NodaTime.Testing.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/NodaTime.Testing.dll deleted file mode 100644 index 6e1d14a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/NodaTime.Testing.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/NodaTime.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/NodaTime.dll deleted file mode 100644 index 6227aca..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/NodaTime.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Spectre.Console.Cli.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Spectre.Console.Cli.dll deleted file mode 100644 index 8aaa97c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Spectre.Console.Cli.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Spectre.Console.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Spectre.Console.dll deleted file mode 100644 index 85cd7b4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/Spectre.Console.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.AppContext.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.AppContext.dll deleted file mode 100644 index ac2ec02..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.AppContext.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Buffers.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Buffers.dll deleted file mode 100644 index 883f059..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Buffers.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Collections.Concurrent.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Collections.Concurrent.dll deleted file mode 100644 index 76303f8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Collections.Concurrent.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Collections.Immutable.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Collections.Immutable.dll deleted file mode 100644 index 65f976c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Collections.Immutable.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Collections.NonGeneric.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Collections.NonGeneric.dll deleted file mode 100644 index f24e1c0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Collections.Specialized.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Collections.Specialized.dll deleted file mode 100644 index e0be323..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Collections.Specialized.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Collections.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Collections.dll deleted file mode 100644 index 0fbcee4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Collections.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.Annotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.Annotations.dll deleted file mode 100644 index 7e1c810..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.DataAnnotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.DataAnnotations.dll deleted file mode 100644 index 78f4d59..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.DataAnnotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.EventBasedAsync.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.EventBasedAsync.dll deleted file mode 100644 index af5fcb3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.EventBasedAsync.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.Primitives.dll deleted file mode 100644 index 93015fa..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.TypeConverter.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.TypeConverter.dll deleted file mode 100644 index 153cb29..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.dll deleted file mode 100644 index a8d0b37..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ComponentModel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Configuration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Configuration.dll deleted file mode 100644 index e6692b9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Configuration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Console.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Console.dll deleted file mode 100644 index 341b585..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Console.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Core.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Core.dll deleted file mode 100644 index 7af4825..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Core.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Data.Common.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Data.Common.dll deleted file mode 100644 index 43342e9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Data.Common.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Data.DataSetExtensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Data.DataSetExtensions.dll deleted file mode 100644 index 385b537..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Data.DataSetExtensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Data.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Data.dll deleted file mode 100644 index 8ee8073..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Data.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.Contracts.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.Contracts.dll deleted file mode 100644 index d76f4cb..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.Contracts.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.Debug.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.Debug.dll deleted file mode 100644 index 9f67929..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.Debug.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.DiagnosticSource.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index e0069c3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.FileVersionInfo.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.FileVersionInfo.dll deleted file mode 100644 index 214a735..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.Process.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.Process.dll deleted file mode 100644 index 0c7b92e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.Process.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.StackTrace.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.StackTrace.dll deleted file mode 100644 index c6f49b1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.TextWriterTraceListener.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.TextWriterTraceListener.dll deleted file mode 100644 index 679b564..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.TextWriterTraceListener.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.Tools.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.Tools.dll deleted file mode 100644 index 8ae3fea..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.Tools.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.TraceSource.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.TraceSource.dll deleted file mode 100644 index 9287e7f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.Tracing.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.Tracing.dll deleted file mode 100644 index 09e5130..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Diagnostics.Tracing.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Drawing.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Drawing.Primitives.dll deleted file mode 100644 index 0630f6b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Drawing.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Drawing.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Drawing.dll deleted file mode 100644 index 34f8af5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Drawing.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Dynamic.Runtime.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Dynamic.Runtime.dll deleted file mode 100644 index 9493a16..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Dynamic.Runtime.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Formats.Asn1.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Formats.Asn1.dll deleted file mode 100644 index 2ff2270..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Formats.Asn1.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Formats.Tar.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Formats.Tar.dll deleted file mode 100644 index 45bf413..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Formats.Tar.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Globalization.Calendars.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Globalization.Calendars.dll deleted file mode 100644 index 2031a46..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Globalization.Calendars.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Globalization.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Globalization.Extensions.dll deleted file mode 100644 index f893e7a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Globalization.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Globalization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Globalization.dll deleted file mode 100644 index f1d9308..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Globalization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Compression.Brotli.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Compression.Brotli.dll deleted file mode 100644 index 9194b93..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Compression.Brotli.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Compression.FileSystem.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Compression.FileSystem.dll deleted file mode 100644 index 9ec4fa9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Compression.FileSystem.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Compression.ZipFile.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Compression.ZipFile.dll deleted file mode 100644 index ef0fcdc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Compression.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Compression.dll deleted file mode 100644 index 06ca033..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Compression.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.FileSystem.AccessControl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.FileSystem.AccessControl.dll deleted file mode 100644 index 9ecc1e4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.FileSystem.DriveInfo.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.FileSystem.DriveInfo.dll deleted file mode 100644 index c4bb450..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.FileSystem.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.FileSystem.Primitives.dll deleted file mode 100644 index 9f4e281..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.FileSystem.Watcher.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.FileSystem.Watcher.dll deleted file mode 100644 index 012c632..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.FileSystem.Watcher.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.FileSystem.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.FileSystem.dll deleted file mode 100644 index 8f9449c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.FileSystem.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.IsolatedStorage.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.IsolatedStorage.dll deleted file mode 100644 index 4fc1f32..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.IsolatedStorage.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.MemoryMappedFiles.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.MemoryMappedFiles.dll deleted file mode 100644 index c067cd4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.MemoryMappedFiles.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Pipelines.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Pipelines.dll deleted file mode 100644 index ec3d0fe..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Pipelines.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Pipes.AccessControl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Pipes.AccessControl.dll deleted file mode 100644 index 6ab056b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Pipes.AccessControl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Pipes.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Pipes.dll deleted file mode 100644 index 1a5ceae..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.Pipes.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.UnmanagedMemoryStream.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.UnmanagedMemoryStream.dll deleted file mode 100644 index 41a18a7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.UnmanagedMemoryStream.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.dll deleted file mode 100644 index 88e5554..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.IO.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Linq.Async.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Linq.Async.dll deleted file mode 100644 index 7ae9527..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Linq.Async.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Linq.Expressions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Linq.Expressions.dll deleted file mode 100644 index c053f38..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Linq.Expressions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Linq.Parallel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Linq.Parallel.dll deleted file mode 100644 index 77930a6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Linq.Parallel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Linq.Queryable.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Linq.Queryable.dll deleted file mode 100644 index 6bc62e4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Linq.Queryable.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Linq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Linq.dll deleted file mode 100644 index 2396bb7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Linq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Memory.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Memory.dll deleted file mode 100644 index 6a8a425..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Memory.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Http.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Http.Json.dll deleted file mode 100644 index 0eaf11e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Http.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Http.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Http.dll deleted file mode 100644 index 5327402..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Http.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.HttpListener.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.HttpListener.dll deleted file mode 100644 index 73dd148..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.HttpListener.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Mail.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Mail.dll deleted file mode 100644 index b28190f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Mail.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.NameResolution.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.NameResolution.dll deleted file mode 100644 index 330b8d8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.NameResolution.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.NetworkInformation.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.NetworkInformation.dll deleted file mode 100644 index 9aebf10..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.NetworkInformation.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Ping.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Ping.dll deleted file mode 100644 index be62873..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Ping.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Primitives.dll deleted file mode 100644 index c939ecd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Quic.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Quic.dll deleted file mode 100644 index 77d408b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Quic.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Requests.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Requests.dll deleted file mode 100644 index 48bb7e1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Requests.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Security.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Security.dll deleted file mode 100644 index 76bcf0d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Security.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.ServicePoint.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.ServicePoint.dll deleted file mode 100644 index 949f7f5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.ServicePoint.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Sockets.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Sockets.dll deleted file mode 100644 index d09f01c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.Sockets.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.WebClient.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.WebClient.dll deleted file mode 100644 index f3a0fab..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.WebClient.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.WebHeaderCollection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.WebHeaderCollection.dll deleted file mode 100644 index d15091a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.WebHeaderCollection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.WebProxy.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.WebProxy.dll deleted file mode 100644 index ded4e81..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.WebProxy.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.WebSockets.Client.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.WebSockets.Client.dll deleted file mode 100644 index 2c85140..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.WebSockets.Client.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.WebSockets.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.WebSockets.dll deleted file mode 100644 index 5f10b49..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.WebSockets.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.dll deleted file mode 100644 index 020b8d5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Net.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Numerics.Vectors.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Numerics.Vectors.dll deleted file mode 100644 index d03f4ba..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Numerics.Vectors.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Numerics.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Numerics.dll deleted file mode 100644 index 0ff7682..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Numerics.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ObjectModel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ObjectModel.dll deleted file mode 100644 index 778e97c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ObjectModel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Private.CoreLib.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Private.CoreLib.dll deleted file mode 100644 index 179c54f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Private.CoreLib.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Private.DataContractSerialization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Private.DataContractSerialization.dll deleted file mode 100644 index 0ee7a8f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Private.DataContractSerialization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Private.Uri.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Private.Uri.dll deleted file mode 100644 index 0935931..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Private.Uri.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Private.Xml.Linq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Private.Xml.Linq.dll deleted file mode 100644 index 93d1d5f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Private.Xml.Linq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Private.Xml.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Private.Xml.dll deleted file mode 100644 index 49d5516..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Private.Xml.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.DispatchProxy.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.DispatchProxy.dll deleted file mode 100644 index dcb4d5d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.DispatchProxy.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Emit.ILGeneration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Emit.ILGeneration.dll deleted file mode 100644 index 517e833..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Emit.Lightweight.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Emit.Lightweight.dll deleted file mode 100644 index f5cd2f4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Emit.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Emit.dll deleted file mode 100644 index 323331f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Emit.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Extensions.dll deleted file mode 100644 index b2c9ded..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Metadata.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Metadata.dll deleted file mode 100644 index 2d6d423..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Metadata.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Primitives.dll deleted file mode 100644 index 777916b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.TypeExtensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.TypeExtensions.dll deleted file mode 100644 index 49866d9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.dll deleted file mode 100644 index 1e01b52..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Reflection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Resources.Reader.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Resources.Reader.dll deleted file mode 100644 index 1ecd304..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Resources.Reader.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Resources.ResourceManager.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Resources.ResourceManager.dll deleted file mode 100644 index f40624e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Resources.ResourceManager.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Resources.Writer.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Resources.Writer.dll deleted file mode 100644 index 3c7f31b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Resources.Writer.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.CompilerServices.Unsafe.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 99e8fd2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.CompilerServices.VisualC.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.CompilerServices.VisualC.dll deleted file mode 100644 index 9c9beb3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.CompilerServices.VisualC.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Extensions.dll deleted file mode 100644 index 1c51470..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Handles.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Handles.dll deleted file mode 100644 index fd1172a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Handles.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.InteropServices.JavaScript.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.InteropServices.JavaScript.dll deleted file mode 100644 index c257de7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.InteropServices.JavaScript.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100644 index 2e393cf..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.InteropServices.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.InteropServices.dll deleted file mode 100644 index 81c4020..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.InteropServices.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Intrinsics.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Intrinsics.dll deleted file mode 100644 index 07abfd1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Intrinsics.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Loader.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Loader.dll deleted file mode 100644 index 534c8e1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Loader.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Numerics.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Numerics.dll deleted file mode 100644 index 09b72b6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Numerics.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Serialization.Formatters.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Serialization.Formatters.dll deleted file mode 100644 index dd56240..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Serialization.Formatters.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Serialization.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Serialization.Json.dll deleted file mode 100644 index 3daa4a9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Serialization.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Serialization.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Serialization.Primitives.dll deleted file mode 100644 index a42e1b5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Serialization.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Serialization.Xml.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Serialization.Xml.dll deleted file mode 100644 index 8da8c12..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Serialization.Xml.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Serialization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Serialization.dll deleted file mode 100644 index 1266eca..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.Serialization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.dll deleted file mode 100644 index b64e250..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Runtime.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.AccessControl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.AccessControl.dll deleted file mode 100644 index 2e06b08..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.AccessControl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Claims.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Claims.dll deleted file mode 100644 index 4e5a594..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Claims.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.Algorithms.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.Algorithms.dll deleted file mode 100644 index 16967d3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.Cng.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.Cng.dll deleted file mode 100644 index b183069..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.Csp.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.Csp.dll deleted file mode 100644 index 0d7a2f8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.Csp.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.Encoding.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.Encoding.dll deleted file mode 100644 index 3c2179c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.OpenSsl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.OpenSsl.dll deleted file mode 100644 index 1795ebc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.Primitives.dll deleted file mode 100644 index 47d146e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.X509Certificates.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.X509Certificates.dll deleted file mode 100644 index 8212e5b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.dll deleted file mode 100644 index d8b8952..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Cryptography.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Principal.Windows.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Principal.Windows.dll deleted file mode 100644 index b9518f0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Principal.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Principal.dll deleted file mode 100644 index 138ae50..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.Principal.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.SecureString.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.SecureString.dll deleted file mode 100644 index d8516c8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.SecureString.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.dll deleted file mode 100644 index e682b91..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Security.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ServiceModel.Web.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ServiceModel.Web.dll deleted file mode 100644 index 9434d8f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ServiceModel.Web.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ServiceProcess.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ServiceProcess.dll deleted file mode 100644 index 18fe5d4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ServiceProcess.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.Encoding.CodePages.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.Encoding.CodePages.dll deleted file mode 100644 index 8b8f1ff..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.Encoding.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.Encoding.Extensions.dll deleted file mode 100644 index 6585c96..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.Encoding.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.Encoding.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.Encoding.dll deleted file mode 100644 index 647e8e8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.Encoding.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.Encodings.Web.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.Encodings.Web.dll deleted file mode 100644 index 8415d7a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.Json.dll deleted file mode 100644 index add57b7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.RegularExpressions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.RegularExpressions.dll deleted file mode 100644 index 10bdcb9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Channels.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Channels.dll deleted file mode 100644 index 103daa3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Channels.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Overlapped.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Overlapped.dll deleted file mode 100644 index 0bd494c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Overlapped.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Tasks.Dataflow.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Tasks.Dataflow.dll deleted file mode 100644 index 4be1ca1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Tasks.Dataflow.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Tasks.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Tasks.Extensions.dll deleted file mode 100644 index 67c1c98..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Tasks.Parallel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Tasks.Parallel.dll deleted file mode 100644 index d83c2dd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Tasks.Parallel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Tasks.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Tasks.dll deleted file mode 100644 index 77ecfc8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Tasks.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Thread.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Thread.dll deleted file mode 100644 index a342640..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Thread.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.ThreadPool.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.ThreadPool.dll deleted file mode 100644 index 480e9c7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Timer.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Timer.dll deleted file mode 100644 index 712347f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.Timer.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.dll deleted file mode 100644 index 5501364..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Threading.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Transactions.Local.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Transactions.Local.dll deleted file mode 100644 index aeb98d7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Transactions.Local.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Transactions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Transactions.dll deleted file mode 100644 index 9c9c499..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Transactions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ValueTuple.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ValueTuple.dll deleted file mode 100644 index 1874760..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.ValueTuple.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Web.HttpUtility.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Web.HttpUtility.dll deleted file mode 100644 index 65d73bf..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Web.HttpUtility.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Web.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Web.dll deleted file mode 100644 index 6dd8577..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Web.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Windows.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Windows.dll deleted file mode 100644 index 015cd39..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Windows.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.Linq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.Linq.dll deleted file mode 100644 index 0f64f19..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.Linq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.ReaderWriter.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.ReaderWriter.dll deleted file mode 100644 index 5a7f8f8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.Serialization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.Serialization.dll deleted file mode 100644 index 86f25c1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.Serialization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.XDocument.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.XDocument.dll deleted file mode 100644 index a9e1f81..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.XDocument.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.XPath.XDocument.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.XPath.XDocument.dll deleted file mode 100644 index b94ea90..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.XPath.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.XPath.dll deleted file mode 100644 index 039cf52..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.XPath.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.XmlDocument.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.XmlDocument.dll deleted file mode 100644 index c8798ad..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.XmlSerializer.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.XmlSerializer.dll deleted file mode 100644 index b5145aa..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.dll deleted file mode 100644 index d58c91b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.Xml.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.dll deleted file mode 100644 index 19e7bd9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/System.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/WindowsBase.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/WindowsBase.dll deleted file mode 100644 index 1daadb6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/WindowsBase.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/createdump b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/createdump deleted file mode 100644 index 8b6a3b2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/createdump and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/cs/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/cs/FSharp.Core.resources.dll deleted file mode 100644 index 3c7f15b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/cs/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/de/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/de/FSharp.Core.resources.dll deleted file mode 100644 index 2342aa0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/de/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/de/Spectre.Console.Cli.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/de/Spectre.Console.Cli.resources.dll deleted file mode 100644 index f06877f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/de/Spectre.Console.Cli.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce deleted file mode 100644 index 896ba55..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce.deps.json b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce.deps.json deleted file mode 100644 index 3336a06..0000000 --- a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce.deps.json +++ /dev/null @@ -1,1538 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v9.0/osx-x64", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v9.0": {}, - ".NETCoreApp,Version=v9.0/osx-x64": { - "edb-commerce/1.0.0": { - "dependencies": { - "Bogus": "35.6.2", - "DuckDB.NET.Data.Full": "1.2.1", - "EventStore.Client.Grpc.Streams": "23.3.8", - "FSharp.Control.TaskSeq": "0.4.0", - "FSharp.Core": "9.0.201", - "FSharp.SystemTextJson": "1.3.13", - "Flurl.Http": "4.0.2", - "Microsoft.Extensions.Logging.Console": "9.0.3", - "Minerals.StringCases": "0.2.1", - "NJsonSchema": "11.1.0", - "NodaTime": "3.2.1", - "NodaTime.Serialization.SystemTextJson": "1.3.0", - "NodaTime.Testing": "3.2.1", - "Spectre.Console.Cli": "0.49.1", - "runtimepack.Microsoft.NETCore.App.Runtime.osx-x64": "9.0.3" - }, - "runtime": { - "edb-commerce.dll": {} - } - }, - "runtimepack.Microsoft.NETCore.App.Runtime.osx-x64/9.0.3": { - "runtime": { - "Microsoft.CSharp.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "Microsoft.VisualBasic.Core.dll": { - "assemblyVersion": "14.0.0.0", - "fileVersion": "14.0.325.11113" - }, - "Microsoft.VisualBasic.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "Microsoft.Win32.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "Microsoft.Win32.Registry.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.AppContext.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Buffers.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.Concurrent.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.Immutable.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.NonGeneric.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.Specialized.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.Annotations.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.DataAnnotations.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.EventBasedAsync.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Configuration.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Data.Common.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Data.DataSetExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Data.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Contracts.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Debug.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.FileVersionInfo.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Process.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.StackTrace.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.TextWriterTraceListener.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Tools.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.TraceSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Tracing.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Drawing.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Drawing.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Dynamic.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Formats.Asn1.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Formats.Tar.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Globalization.Calendars.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Globalization.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Globalization.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.Brotli.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.FileSystem.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.ZipFile.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.DriveInfo.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.Watcher.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.IsolatedStorage.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.MemoryMappedFiles.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Pipelines.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Pipes.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Pipes.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.UnmanagedMemoryStream.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.Expressions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.Parallel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.Queryable.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Memory.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Http.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Http.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.HttpListener.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Mail.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.NameResolution.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.NetworkInformation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Ping.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Quic.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Requests.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Security.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.ServicePoint.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Sockets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebClient.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebHeaderCollection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebProxy.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebSockets.Client.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebSockets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Numerics.Vectors.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Numerics.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ObjectModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.CoreLib.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.DataContractSerialization.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.Uri.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.Xml.Linq.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.Xml.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.DispatchProxy.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Emit.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Metadata.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Resources.Reader.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Resources.ResourceManager.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Resources.Writer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.CompilerServices.VisualC.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Handles.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.InteropServices.JavaScript.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.InteropServices.RuntimeInformation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.InteropServices.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Intrinsics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Loader.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Numerics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Formatters.dll": { - "assemblyVersion": "8.1.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Xml.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Claims.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Algorithms.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Cng.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Csp.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Encoding.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.OpenSsl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.X509Certificates.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Principal.Windows.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Principal.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.SecureString.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ServiceModel.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ServiceProcess.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encoding.CodePages.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encoding.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encoding.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encodings.Web.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.RegularExpressions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Channels.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Overlapped.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.Dataflow.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.Parallel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Thread.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.ThreadPool.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Timer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Transactions.Local.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Transactions.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ValueTuple.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Web.HttpUtility.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Windows.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.Linq.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.ReaderWriter.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XPath.XDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XPath.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XmlDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XmlSerializer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "WindowsBase.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "mscorlib.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "netstandard.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "9.0.325.11113" - } - }, - "native": { - "createdump": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Globalization.Native.dylib": { - "fileVersion": "0.0.0.0" - }, - "libSystem.IO.Compression.Native.dylib": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Native.dylib": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Net.Security.Native.dylib": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Security.Cryptography.Native.Apple.dylib": { - "fileVersion": "0.0.0.0" - }, - "libSystem.Security.Cryptography.Native.OpenSsl.dylib": { - "fileVersion": "0.0.0.0" - }, - "libclrgc.dylib": { - "fileVersion": "0.0.0.0" - }, - "libclrgcexp.dylib": { - "fileVersion": "0.0.0.0" - }, - "libclrjit.dylib": { - "fileVersion": "0.0.0.0" - }, - "libcoreclr.dylib": { - "fileVersion": "0.0.0.0" - }, - "libhostfxr.dylib": { - "fileVersion": "0.0.0.0" - }, - "libhostpolicy.dylib": { - "fileVersion": "0.0.0.0" - }, - "libmscordaccore.dylib": { - "fileVersion": "0.0.0.0" - }, - "libmscordbi.dylib": { - "fileVersion": "0.0.0.0" - } - } - }, - "Bogus/35.6.2": { - "runtime": { - "lib/net6.0/Bogus.dll": { - "assemblyVersion": "35.6.2.0", - "fileVersion": "35.6.2.0" - } - } - }, - "DuckDB.NET.Bindings.Full/1.2.1": { - "runtime": { - "lib/net8.0/DuckDB.NET.Bindings.dll": { - "assemblyVersion": "1.2.1.0", - "fileVersion": "1.2.1.0" - } - }, - "native": { - "runtimes/osx/native/libduckdb.dylib": { - "fileVersion": "0.0.0.0" - } - } - }, - "DuckDB.NET.Data.Full/1.2.1": { - "dependencies": { - "DuckDB.NET.Bindings.Full": "1.2.1" - }, - "runtime": { - "lib/net8.0/DuckDB.NET.Data.dll": { - "assemblyVersion": "1.2.1.0", - "fileVersion": "1.2.1.0" - } - } - }, - "EventStore.Client.Grpc/23.3.8": { - "dependencies": { - "Google.Protobuf": "3.25.1", - "Grpc.Net.Client": "2.60.0", - "JetBrains.Annotations": "2023.3.0", - "Microsoft.Extensions.Logging": "9.0.3", - "System.Diagnostics.DiagnosticSource": "8.0.1", - "System.Linq.Async": "6.0.1", - "System.Text.Json": "8.0.5" - }, - "runtime": { - "lib/net8.0/EventStore.Client.dll": { - "assemblyVersion": "23.0.0.0", - "fileVersion": "23.3.8.0" - } - } - }, - "EventStore.Client.Grpc.Streams/23.3.8": { - "dependencies": { - "EventStore.Client.Grpc": "23.3.8" - }, - "runtime": { - "lib/net8.0/EventStore.Client.Streams.dll": { - "assemblyVersion": "23.0.0.0", - "fileVersion": "23.3.8.0" - } - } - }, - "Flurl/4.0.0": { - "runtime": { - "lib/netstandard2.0/Flurl.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.0.0" - } - } - }, - "Flurl.Http/4.0.2": { - "dependencies": { - "Flurl": "4.0.0" - }, - "runtime": { - "lib/net6.0/Flurl.Http.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.0.2.0" - } - } - }, - "FSharp.Control.TaskSeq/0.4.0": { - "dependencies": { - "FSharp.Core": "9.0.201" - }, - "runtime": { - "lib/netstandard2.1/FSharp.Control.TaskSeq.dll": { - "assemblyVersion": "0.4.0.0", - "fileVersion": "0.4.0.0" - } - } - }, - "FSharp.Core/9.0.201": { - "runtime": { - "lib/netstandard2.1/FSharp.Core.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.2.125.7003" - } - }, - "resources": { - "lib/netstandard2.1/cs/FSharp.Core.resources.dll": { - "locale": "cs" - }, - "lib/netstandard2.1/de/FSharp.Core.resources.dll": { - "locale": "de" - }, - "lib/netstandard2.1/es/FSharp.Core.resources.dll": { - "locale": "es" - }, - "lib/netstandard2.1/fr/FSharp.Core.resources.dll": { - "locale": "fr" - }, - "lib/netstandard2.1/it/FSharp.Core.resources.dll": { - "locale": "it" - }, - "lib/netstandard2.1/ja/FSharp.Core.resources.dll": { - "locale": "ja" - }, - "lib/netstandard2.1/ko/FSharp.Core.resources.dll": { - "locale": "ko" - }, - "lib/netstandard2.1/pl/FSharp.Core.resources.dll": { - "locale": "pl" - }, - "lib/netstandard2.1/pt-BR/FSharp.Core.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard2.1/ru/FSharp.Core.resources.dll": { - "locale": "ru" - }, - "lib/netstandard2.1/tr/FSharp.Core.resources.dll": { - "locale": "tr" - }, - "lib/netstandard2.1/zh-Hans/FSharp.Core.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard2.1/zh-Hant/FSharp.Core.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "FSharp.SystemTextJson/1.3.13": { - "dependencies": { - "FSharp.Core": "9.0.201", - "System.Text.Json": "8.0.5" - }, - "runtime": { - "lib/netstandard2.0/FSharp.SystemTextJson.dll": { - "assemblyVersion": "1.3.0.0", - "fileVersion": "1.3.13.11246" - } - } - }, - "Google.Protobuf/3.25.1": { - "runtime": { - "lib/net5.0/Google.Protobuf.dll": { - "assemblyVersion": "3.25.1.0", - "fileVersion": "3.25.1.0" - } - } - }, - "Grpc.Core.Api/2.60.0": { - "runtime": { - "lib/netstandard2.1/Grpc.Core.Api.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.60.0.0" - } - } - }, - "Grpc.Net.Client/2.60.0": { - "dependencies": { - "Grpc.Net.Common": "2.60.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net8.0/Grpc.Net.Client.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.60.0.0" - } - } - }, - "Grpc.Net.Common/2.60.0": { - "dependencies": { - "Grpc.Core.Api": "2.60.0" - }, - "runtime": { - "lib/net8.0/Grpc.Net.Common.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.60.0.0" - } - } - }, - "JetBrains.Annotations/2023.3.0": { - "runtime": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "assemblyVersion": "4242.42.42.42", - "fileVersion": "2023.3.0.0" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.DependencyInjection/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.3": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "9.0.3", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging.Configuration/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.3", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", - "Microsoft.Extensions.Configuration.Binder": "9.0.3", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Logging": "9.0.3", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3", - "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging.Console/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Logging": "9.0.3", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3", - "Microsoft.Extensions.Logging.Configuration": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Options/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", - "Microsoft.Extensions.Configuration.Binder": "9.0.3", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3", - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Primitives/9.0.3": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Minerals.StringCases/0.2.1": { - "runtime": { - "lib/netstandard2.0/Minerals.StringCases.dll": { - "assemblyVersion": "0.2.1.0", - "fileVersion": "0.2.1.0" - } - } - }, - "Namotion.Reflection/3.2.0": { - "runtime": { - "lib/net8.0/Namotion.Reflection.dll": { - "assemblyVersion": "3.2.0.0", - "fileVersion": "3.2.0.0" - } - } - }, - "Newtonsoft.Json/13.0.3": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" - } - } - }, - "NJsonSchema/11.1.0": { - "dependencies": { - "NJsonSchema.Annotations": "11.1.0", - "Namotion.Reflection": "3.2.0", - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/net6.0/NJsonSchema.dll": { - "assemblyVersion": "11.1.0.0", - "fileVersion": "11.1.0.0" - } - } - }, - "NJsonSchema.Annotations/11.1.0": { - "runtime": { - "lib/netstandard2.0/NJsonSchema.Annotations.dll": { - "assemblyVersion": "11.1.0.0", - "fileVersion": "11.1.0.0" - } - } - }, - "NodaTime/3.2.1": { - "runtime": { - "lib/net8.0/NodaTime.dll": { - "assemblyVersion": "3.2.1.0", - "fileVersion": "3.2.1.0" - } - } - }, - "NodaTime.Serialization.SystemTextJson/1.3.0": { - "dependencies": { - "NodaTime": "3.2.1" - }, - "runtime": { - "lib/net6.0/NodaTime.Serialization.SystemTextJson.dll": { - "assemblyVersion": "1.3.0.0", - "fileVersion": "1.3.0.0" - } - } - }, - "NodaTime.Testing/3.2.1": { - "dependencies": { - "NodaTime": "3.2.1" - }, - "runtime": { - "lib/netstandard2.0/NodaTime.Testing.dll": { - "assemblyVersion": "3.2.1.0", - "fileVersion": "3.2.1.0" - } - } - }, - "Spectre.Console/0.49.1": { - "runtime": { - "lib/net8.0/Spectre.Console.dll": { - "assemblyVersion": "0.0.0.0", - "fileVersion": "0.49.1.0" - } - } - }, - "Spectre.Console.Cli/0.49.1": { - "dependencies": { - "Spectre.Console": "0.49.1" - }, - "runtime": { - "lib/net8.0/Spectre.Console.Cli.dll": { - "assemblyVersion": "0.0.0.0", - "fileVersion": "0.49.1.0" - } - }, - "resources": { - "lib/net8.0/de/Spectre.Console.Cli.resources.dll": { - "locale": "de" - }, - "lib/net8.0/fr/Spectre.Console.Cli.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/sv/Spectre.Console.Cli.resources.dll": { - "locale": "sv" - } - } - }, - "System.Diagnostics.DiagnosticSource/8.0.1": {}, - "System.Linq.Async/6.0.1": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Linq.Async.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1.35981" - } - } - }, - "System.Text.Json/8.0.5": {} - } - }, - "libraries": { - "edb-commerce/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "runtimepack.Microsoft.NETCore.App.Runtime.osx-x64/9.0.3": { - "type": "runtimepack", - "serviceable": false, - "sha512": "" - }, - "Bogus/35.6.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-u3XtrfDqwNDqmJiUA6AnUBGU2169av3BtBOrcgp1JZb2RVCg6P6JOTcJvXCLDd6YiRZFKxuoujiWM951Ze8D5w==", - "path": "bogus/35.6.2", - "hashPath": "bogus.35.6.2.nupkg.sha512" - }, - "DuckDB.NET.Bindings.Full/1.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tdK+r/Omifx+VXYo6uLjocgaPcSEWoL0ZN26D9KbffmLGfeYirMMhyoaAwOiBwGbeYS1jlQSiVjmtFv6Squb7g==", - "path": "duckdb.net.bindings.full/1.2.1", - "hashPath": "duckdb.net.bindings.full.1.2.1.nupkg.sha512" - }, - "DuckDB.NET.Data.Full/1.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eUdXsYwpnIu4gKjX/T6vA/73rY+O16YB/4mKj/jsdLnmk9C/lwo+AOgejuZgWell5HB7vQaoX8qjYgMM5XTCyA==", - "path": "duckdb.net.data.full/1.2.1", - "hashPath": "duckdb.net.data.full.1.2.1.nupkg.sha512" - }, - "EventStore.Client.Grpc/23.3.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rHQ8/umPRpI07uQV1cpqMt3fL8JRd8P+1WncIX0KULi4jz4Zg9xo1IHVvYXmljbAsJLSNy0QElf49+bjsBTAAg==", - "path": "eventstore.client.grpc/23.3.8", - "hashPath": "eventstore.client.grpc.23.3.8.nupkg.sha512" - }, - "EventStore.Client.Grpc.Streams/23.3.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xMFeUT2+/V07AgcIb041oFZIbfTE7d9atfvlBvVt3tmqrPV0dTe6eirDjUAZElM2ze/wyFpywlR6L2/LKG5+aQ==", - "path": "eventstore.client.grpc.streams/23.3.8", - "hashPath": "eventstore.client.grpc.streams.23.3.8.nupkg.sha512" - }, - "Flurl/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rpts69yYgvJqg6PPgqShBQEZ4aNzWQqWpWppcT0oDWxDCIsBqiod4pj6LQZdhk+1OozLFagemldMRACdHF3CsA==", - "path": "flurl/4.0.0", - "hashPath": "flurl.4.0.0.nupkg.sha512" - }, - "Flurl.Http/4.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9vCqFFyceA11yplkFD8AbCFFTvG1Lrw3tpsgOpL5sLUc28p6zcvGszNleuT6nDymRvtt5eS+rqUX+bRztg1fhA==", - "path": "flurl.http/4.0.2", - "hashPath": "flurl.http.4.0.2.nupkg.sha512" - }, - "FSharp.Control.TaskSeq/0.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+GK6oSwfffZaLPaWTBPYfX8mgWxszRrX9BdFh5ZLgQwg3IL3u10YneSCusOJ1gZKmdXAgGt4O4M9I9bgRTpL0Q==", - "path": "fsharp.control.taskseq/0.4.0", - "hashPath": "fsharp.control.taskseq.0.4.0.nupkg.sha512" - }, - "FSharp.Core/9.0.201": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ozq4T0ISTkqTYJ035XW/JkdDDaXofbykvfyVwkjLSqaDZ/4uNXfpf92cjcMI9lf9CxWqmlWHScViPh/4AvnWcw==", - "path": "fsharp.core/9.0.201", - "hashPath": "fsharp.core.9.0.201.nupkg.sha512" - }, - "FSharp.SystemTextJson/1.3.13": { - "type": "package", - "serviceable": true, - "sha512": "sha512-znp8odpdkVGKVX0AvbhiXdmeMi0KJ+A4AyAQWSkfAEAe4Z4clRE+rVhrLnAGrFD1VEIUX2lsQ4o84ywpWZUSGw==", - "path": "fsharp.systemtextjson/1.3.13", - "hashPath": "fsharp.systemtextjson.1.3.13.nupkg.sha512" - }, - "Google.Protobuf/3.25.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Sw9bq4hOD+AaS3RrnmP5IT25cyZ/T1qpM0e8+G+23Nojhv7+ScJFPEAQo1m4EFQWhXoI4FRZDrK+wjHCPw9yxg==", - "path": "google.protobuf/3.25.1", - "hashPath": "google.protobuf.3.25.1.nupkg.sha512" - }, - "Grpc.Core.Api/2.60.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VWah+8dGJhhsay5BQ/Ljq6GYDWj0lSjdzqyoBgUQhXTbBqhs+q5dRFROKxI1xxzlL4pfUO45cf/y+KnHVFG9ew==", - "path": "grpc.core.api/2.60.0", - "hashPath": "grpc.core.api.2.60.0.nupkg.sha512" - }, - "Grpc.Net.Client/2.60.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-J9U96gjZHOcqSgAThg9vZZhLsbTD005bUggPtMP/RVQnGc3+tQJTpkRUCJtJWq9cykNydsRVoyU38TjPP/VJ4A==", - "path": "grpc.net.client/2.60.0", - "hashPath": "grpc.net.client.2.60.0.nupkg.sha512" - }, - "Grpc.Net.Common/2.60.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Y/917aplgD1RA0q1cd9WpnMGyl9Luu3WZl6ZMpPvNQwg2TNw/3uXUDSriDBybeCtxnKUCtxUcWO3WsVkhM1DcA==", - "path": "grpc.net.common/2.60.0", - "hashPath": "grpc.net.common.2.60.0.nupkg.sha512" - }, - "JetBrains.Annotations/2023.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PHfnvdBUdGaTVG9bR/GEfxgTwWM0Z97Y6X3710wiljELBISipSfF5okn/vz+C2gfO+ihoEyVPjaJwn8ZalVukA==", - "path": "jetbrains.annotations/2023.3.0", - "hashPath": "jetbrains.annotations.2023.3.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RIEeZxWYm77+OWLwgik7DzSVSONjqkmcbuCb1koZdGAV7BgOUWnLz80VMyHZMw3onrVwFCCMHBBdruBPuQTvkg==", - "path": "microsoft.extensions.configuration/9.0.3", - "hashPath": "microsoft.extensions.configuration.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-q5qlbm6GRUrle2ZZxy9aqS/wWoc+mRD3JeP6rcpiJTh5XcemYkplAcJKq8lU11ZfPom5lfbZZfnQvDqcUhqD5Q==", - "path": "microsoft.extensions.configuration.abstractions/9.0.3", - "hashPath": "microsoft.extensions.configuration.abstractions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ad82pYBUSQbd3WIboxsS1HzFdRuHKRa2CpYwie/o6dZAxUjt62yFwjoVdM7Iw2VO5fHV1rJwa7jJZBNZin0E7Q==", - "path": "microsoft.extensions.configuration.binder/9.0.3", - "hashPath": "microsoft.extensions.configuration.binder.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lDbxJpkl6X8KZGpkAxgrrthQ42YeiR0xjPp7KPx+sCPc3ZbpaIbjzd0QQ+9kDdK2RU2DOl3pc6tQyAgEZY3V0A==", - "path": "microsoft.extensions.dependencyinjection/9.0.3", - "hashPath": "microsoft.extensions.dependencyinjection.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TfaHPSe39NyL2wxkisRxXK7xvHGZYBZ+dy3r+mqGvnxKgAPdHkMu3QMQZI4pquP6W5FIQBqs8FJpWV8ffCgDqQ==", - "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.3", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-utIi2R1nm+PCWkvWBf1Ou6LWqg9iLfHU23r8yyU9VCvda4dEs7xbTZSwGa5KuwbpzpgCbHCIuKaFHB3zyFmnGw==", - "path": "microsoft.extensions.logging/9.0.3", - "hashPath": "microsoft.extensions.logging.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H/MBMLt9A/69Ux4OrV7oCKt3DcMT04o5SCqDolulzQA66TLFEpYYb4qedMs/uwrLtyHXGuDGWKZse/oa8W9AZw==", - "path": "microsoft.extensions.logging.abstractions/9.0.3", - "hashPath": "microsoft.extensions.logging.abstractions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Configuration/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eVZsaKNyK0g0C1qp0mmn4Q2PiX+bXdkz8+zVkXyVMk8IvoWfmTjLjEq1MQlwt1A22lToANPiUrxPJ7Tt3V5puw==", - "path": "microsoft.extensions.logging.configuration/9.0.3", - "hashPath": "microsoft.extensions.logging.configuration.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Console/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o9VXLOdpTAro1q7ZThIB3S8OHrRn5pr8cFUCiN85fiwlfAt2DhU4ZIfHy+jCNbf7y7S5Exbr3dlDE8mKNrs0Yg==", - "path": "microsoft.extensions.logging.console/9.0.3", - "hashPath": "microsoft.extensions.logging.console.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Options/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xE7MpY70lkw1oiid5y6FbL9dVw8oLfkx8RhSNGN8sSzBlCqGn0SyT3Fqc8tZnDaPIq7Z8R9RTKlS564DS+MV3g==", - "path": "microsoft.extensions.options/9.0.3", - "hashPath": "microsoft.extensions.options.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PcyYHQglKnWVZHSPaL6v2qnfsIuFw8tSq7cyXHg3OeuDVn/CqmdWUjRiZomCF/Gi+qCi+ksz0lFphg2cNvB8zQ==", - "path": "microsoft.extensions.options.configurationextensions/9.0.3", - "hashPath": "microsoft.extensions.options.configurationextensions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yCCJHvBcRyqapMSNzP+kTc57Eaavq2cr5Tmuil6/XVnipQf5xmskxakSQ1enU6S4+fNg3sJ27WcInV64q24JsA==", - "path": "microsoft.extensions.primitives/9.0.3", - "hashPath": "microsoft.extensions.primitives.9.0.3.nupkg.sha512" - }, - "Minerals.StringCases/0.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oIYrFY0Gq7XkNyziWLofmHZmJWsTJ/EtFpytGO0azmngopJXcCvkamuPzFwTfNz3d3B4/m8+ma0qI/z7q6NHXA==", - "path": "minerals.stringcases/0.2.1", - "hashPath": "minerals.stringcases.0.2.1.nupkg.sha512" - }, - "Namotion.Reflection/3.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YfGjDPzMEs3vRMI4CMkJwOg75SV5JEDV72kMccD2GCo++TfgOYb5ZTpABYq3dUQqFtnAPpqMKM+deLlrUwnN1g==", - "path": "namotion.reflection/3.2.0", - "hashPath": "namotion.reflection.3.2.0.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" - }, - "NJsonSchema/11.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H7QO+bM/2uzF81mVyy4U8ha4MXS9eOX06rTvBgJKquzIuLUGuiOTc4nknkCFKW7mr+xnWgzY7Spevz5ZEK8fGg==", - "path": "njsonschema/11.1.0", - "hashPath": "njsonschema.11.1.0.nupkg.sha512" - }, - "NJsonSchema.Annotations/11.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2gU72pKhMLrQt7TjHv+nrb8CxxgUaBk2SD/CaB5f00SxuWdOT4YVQaGy+jTVx+8IgQit+9WWMvBWU9f6U2HNiQ==", - "path": "njsonschema.annotations/11.1.0", - "hashPath": "njsonschema.annotations.11.1.0.nupkg.sha512" - }, - "NodaTime/3.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D1aHhUfPQUxU2nfDCVuSLahpp0xCYZTmj/KNH3mSK/tStJYcx9HO9aJ0qbOP3hzjGPV/DXOqY2AHe27Nt4xs4g==", - "path": "nodatime/3.2.1", - "hashPath": "nodatime.3.2.1.nupkg.sha512" - }, - "NodaTime.Serialization.SystemTextJson/1.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zf9sdKrfcId0rvZLOB7Yncy/cfCv20TdQ84IKE6CkcWW33u1wsRvmYUbfaP5MYUm+9vp9Yoi3G2vN1/9nZ/JCA==", - "path": "nodatime.serialization.systemtextjson/1.3.0", - "hashPath": "nodatime.serialization.systemtextjson.1.3.0.nupkg.sha512" - }, - "NodaTime.Testing/3.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5/3Knjh+U/lshyad4MS6SSO4VD18RT6wf0tFi0rp7wlG0Zxso247qt7RPAPArnsD/bBUqq0/36N8QIs9SzSoSA==", - "path": "nodatime.testing/3.2.1", - "hashPath": "nodatime.testing.3.2.1.nupkg.sha512" - }, - "Spectre.Console/0.49.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-USV+pdu49OJ3nCjxNuw1K9Zw/c1HCBbwbjXZp0EOn6wM99tFdAtN34KEBZUMyRuJuXlUMDqhd8Yq9obW2MslYA==", - "path": "spectre.console/0.49.1", - "hashPath": "spectre.console.0.49.1.nupkg.sha512" - }, - "Spectre.Console.Cli/0.49.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wBZzyEbKqfPFFUPhV5E7/k4Kwy4UDO42IVzvzk0C4Pkjjw+NSd0EOBkIutYET4vJY4X81pD9ooQO9gfBGXj4+g==", - "path": "spectre.console.cli/0.49.1", - "hashPath": "spectre.console.cli.0.49.1.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", - "path": "system.diagnostics.diagnosticsource/8.0.1", - "hashPath": "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512" - }, - "System.Linq.Async/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0YhHcaroWpQ9UCot3Pizah7ryAzQhNvobLMSxeDIGmnXfkQn8u5owvpOH0K6EVB+z9L7u6Cc4W17Br/+jyttEQ==", - "path": "system.linq.async/6.0.1", - "hashPath": "system.linq.async.6.0.1.nupkg.sha512" - }, - "System.Text.Json/8.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==", - "path": "system.text.json/8.0.5", - "hashPath": "system.text.json.8.0.5.nupkg.sha512" - } - }, - "runtimes": { - "osx-x64": [ - "osx", - "unix-x64", - "unix", - "any", - "base" - ] - } -} \ No newline at end of file diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce.dll deleted file mode 100644 index a13b0d8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce.runtimeconfig.json b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce.runtimeconfig.json deleted file mode 100644 index 8f2ed09..0000000 --- a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/edb-commerce.runtimeconfig.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net9.0", - "includedFrameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "9.0.3" - } - ], - "configProperties": { - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/es/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/es/FSharp.Core.resources.dll deleted file mode 100644 index 03f160e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/es/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/fr/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/fr/FSharp.Core.resources.dll deleted file mode 100644 index d9e8e6f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/fr/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/fr/Spectre.Console.Cli.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/fr/Spectre.Console.Cli.resources.dll deleted file mode 100644 index 42fbeaa..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/fr/Spectre.Console.Cli.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/it/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/it/FSharp.Core.resources.dll deleted file mode 100644 index 9302d17..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/it/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/ja/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/ja/FSharp.Core.resources.dll deleted file mode 100644 index 14b589c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/ja/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/ko/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/ko/FSharp.Core.resources.dll deleted file mode 100644 index 7fc7dd1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/ko/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.Globalization.Native.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.Globalization.Native.dylib deleted file mode 100644 index 7bb3ab0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.Globalization.Native.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.IO.Compression.Native.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.IO.Compression.Native.dylib deleted file mode 100644 index 60c1d51..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.IO.Compression.Native.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.Native.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.Native.dylib deleted file mode 100644 index 92aec26..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.Native.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.Net.Security.Native.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.Net.Security.Native.dylib deleted file mode 100644 index e2341ad..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.Net.Security.Native.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.Security.Cryptography.Native.Apple.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.Security.Cryptography.Native.Apple.dylib deleted file mode 100644 index 9f661d5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.Security.Cryptography.Native.Apple.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.Security.Cryptography.Native.OpenSsl.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.Security.Cryptography.Native.OpenSsl.dylib deleted file mode 100644 index e90ca7a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libSystem.Security.Cryptography.Native.OpenSsl.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libclrgc.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libclrgc.dylib deleted file mode 100644 index ecd52d5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libclrgc.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libclrgcexp.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libclrgcexp.dylib deleted file mode 100644 index 51d640b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libclrgcexp.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libclrjit.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libclrjit.dylib deleted file mode 100644 index 101730d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libclrjit.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libcoreclr.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libcoreclr.dylib deleted file mode 100644 index 89e36db..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libcoreclr.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libduckdb.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libduckdb.dylib deleted file mode 100644 index d53e163..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libduckdb.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libhostfxr.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libhostfxr.dylib deleted file mode 100644 index b115fb0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libhostfxr.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libhostpolicy.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libhostpolicy.dylib deleted file mode 100644 index 6640b69..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libhostpolicy.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libmscordaccore.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libmscordaccore.dylib deleted file mode 100644 index 4433150..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libmscordaccore.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libmscordbi.dylib b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libmscordbi.dylib deleted file mode 100644 index 5d3d109..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/libmscordbi.dylib and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/mscorlib.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/mscorlib.dll deleted file mode 100644 index c71cf0e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/mscorlib.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/netstandard.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/netstandard.dll deleted file mode 100644 index 44e91b4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/netstandard.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/pl/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/pl/FSharp.Core.resources.dll deleted file mode 100644 index f54855c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/pl/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/pt-BR/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/pt-BR/FSharp.Core.resources.dll deleted file mode 100644 index 0f3b357..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/pt-BR/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/ru/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/ru/FSharp.Core.resources.dll deleted file mode 100644 index 071d7ea..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/ru/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/sv/Spectre.Console.Cli.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/sv/Spectre.Console.Cli.resources.dll deleted file mode 100644 index c0e1e28..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/sv/Spectre.Console.Cli.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/tr/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/tr/FSharp.Core.resources.dll deleted file mode 100644 index 0d2191e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/tr/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/zh-Hans/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/zh-Hans/FSharp.Core.resources.dll deleted file mode 100644 index 20923ef..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/zh-Hans/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/zh-Hant/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/zh-Hant/FSharp.Core.resources.dll deleted file mode 100644 index c26d2f2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/osx-x64/zh-Hant/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Bogus.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Bogus.dll deleted file mode 100644 index 16fb003..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Bogus.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/DuckDB.NET.Bindings.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/DuckDB.NET.Bindings.dll deleted file mode 100644 index 814bedd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/DuckDB.NET.Bindings.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/DuckDB.NET.Data.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/DuckDB.NET.Data.dll deleted file mode 100644 index 6ade32e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/DuckDB.NET.Data.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/EventStore.Client.Streams.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/EventStore.Client.Streams.dll deleted file mode 100644 index 09c32e0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/EventStore.Client.Streams.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/EventStore.Client.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/EventStore.Client.dll deleted file mode 100644 index ee16a26..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/EventStore.Client.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/FSharp.Control.TaskSeq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/FSharp.Control.TaskSeq.dll deleted file mode 100644 index 58f1874..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/FSharp.Control.TaskSeq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/FSharp.Core.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/FSharp.Core.dll deleted file mode 100644 index b5fcc23..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/FSharp.Core.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/FSharp.SystemTextJson.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/FSharp.SystemTextJson.dll deleted file mode 100644 index 54a704c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/FSharp.SystemTextJson.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Flurl.Http.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Flurl.Http.dll deleted file mode 100644 index 32256f1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Flurl.Http.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Flurl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Flurl.dll deleted file mode 100644 index 69d8268..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Flurl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Google.Protobuf.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Google.Protobuf.dll deleted file mode 100644 index bee156e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Google.Protobuf.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Grpc.Core.Api.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Grpc.Core.Api.dll deleted file mode 100644 index 554d4f6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Grpc.Core.Api.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Grpc.Net.Client.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Grpc.Net.Client.dll deleted file mode 100644 index 513f4df..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Grpc.Net.Client.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Grpc.Net.Common.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Grpc.Net.Common.dll deleted file mode 100644 index 6ead792..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Grpc.Net.Common.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/JetBrains.Annotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/JetBrains.Annotations.dll deleted file mode 100644 index 627220d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/JetBrains.Annotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Bcl.AsyncInterfaces.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index fe6ba4c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.CSharp.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.CSharp.dll deleted file mode 100644 index e46a8ee..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.CSharp.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.DiaSymReader.Native.amd64.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.DiaSymReader.Native.amd64.dll deleted file mode 100644 index 92b355b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.DiaSymReader.Native.amd64.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Configuration.Abstractions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100644 index 9d58f25..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Configuration.Binder.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Configuration.Binder.dll deleted file mode 100644 index 8d27d21..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Configuration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Configuration.dll deleted file mode 100644 index 2d38073..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Configuration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index 019f86e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.DependencyInjection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index 7eb65a5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Logging.Abstractions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index 9a3a2d9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Logging.Configuration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Logging.Configuration.dll deleted file mode 100644 index e7ccd84..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Logging.Configuration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Logging.Console.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Logging.Console.dll deleted file mode 100644 index 2c0da5c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Logging.Console.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Logging.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Logging.dll deleted file mode 100644 index c531383..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Options.ConfigurationExtensions.dll deleted file mode 100644 index 72908b9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Options.ConfigurationExtensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Options.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Options.dll deleted file mode 100644 index 08a9771..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index 4a3d0f1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.VisualBasic.Core.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.VisualBasic.Core.dll deleted file mode 100644 index cb9daf1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.VisualBasic.Core.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.VisualBasic.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.VisualBasic.dll deleted file mode 100644 index 3ab5d76..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.VisualBasic.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Win32.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Win32.Primitives.dll deleted file mode 100644 index f7f31bf..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Win32.Registry.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Win32.Registry.dll deleted file mode 100644 index d827189..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Microsoft.Win32.Registry.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Minerals.StringCases.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Minerals.StringCases.dll deleted file mode 100644 index 9715248..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Minerals.StringCases.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/NJsonSchema.Annotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/NJsonSchema.Annotations.dll deleted file mode 100644 index c8db2a3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/NJsonSchema.Annotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/NJsonSchema.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/NJsonSchema.dll deleted file mode 100644 index 7efca78..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/NJsonSchema.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Namotion.Reflection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Namotion.Reflection.dll deleted file mode 100644 index 46c2790..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Namotion.Reflection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Newtonsoft.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Newtonsoft.Json.dll deleted file mode 100644 index d035c38..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Newtonsoft.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/NodaTime.Serialization.SystemTextJson.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/NodaTime.Serialization.SystemTextJson.dll deleted file mode 100644 index f321f43..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/NodaTime.Serialization.SystemTextJson.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/NodaTime.Testing.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/NodaTime.Testing.dll deleted file mode 100644 index 6e1d14a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/NodaTime.Testing.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/NodaTime.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/NodaTime.dll deleted file mode 100644 index 6227aca..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/NodaTime.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Spectre.Console.Cli.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Spectre.Console.Cli.dll deleted file mode 100644 index 8aaa97c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Spectre.Console.Cli.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Spectre.Console.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Spectre.Console.dll deleted file mode 100644 index 85cd7b4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/Spectre.Console.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.AppContext.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.AppContext.dll deleted file mode 100644 index 78f2ef2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.AppContext.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Buffers.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Buffers.dll deleted file mode 100644 index e6e34e5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Buffers.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Collections.Concurrent.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Collections.Concurrent.dll deleted file mode 100644 index cfd8634..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Collections.Concurrent.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Collections.Immutable.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Collections.Immutable.dll deleted file mode 100644 index 419a527..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Collections.Immutable.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Collections.NonGeneric.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Collections.NonGeneric.dll deleted file mode 100644 index 81489a6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Collections.Specialized.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Collections.Specialized.dll deleted file mode 100644 index 00f265e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Collections.Specialized.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Collections.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Collections.dll deleted file mode 100644 index dd025e1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Collections.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.Annotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.Annotations.dll deleted file mode 100644 index 77a1078..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.DataAnnotations.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.DataAnnotations.dll deleted file mode 100644 index 68f9eb2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.DataAnnotations.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.EventBasedAsync.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.EventBasedAsync.dll deleted file mode 100644 index 6edabb7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.EventBasedAsync.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.Primitives.dll deleted file mode 100644 index a5fa4b1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.TypeConverter.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.TypeConverter.dll deleted file mode 100644 index 44e8905..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.dll deleted file mode 100644 index 8f121ad..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ComponentModel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Configuration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Configuration.dll deleted file mode 100644 index c90ef36..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Configuration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Console.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Console.dll deleted file mode 100644 index a43b0a5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Console.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Core.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Core.dll deleted file mode 100644 index 9bd7213..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Core.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Data.Common.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Data.Common.dll deleted file mode 100644 index 03135f3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Data.Common.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Data.DataSetExtensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Data.DataSetExtensions.dll deleted file mode 100644 index 7417358..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Data.DataSetExtensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Data.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Data.dll deleted file mode 100644 index 4cbb271..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Data.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.Contracts.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.Contracts.dll deleted file mode 100644 index d7f7dcb..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.Contracts.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.Debug.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.Debug.dll deleted file mode 100644 index 6472c19..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.Debug.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.DiagnosticSource.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index 21b4306..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.FileVersionInfo.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.FileVersionInfo.dll deleted file mode 100644 index 5b7e2ef..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.Process.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.Process.dll deleted file mode 100644 index 15b75c2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.Process.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.StackTrace.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.StackTrace.dll deleted file mode 100644 index 377b4a2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.TextWriterTraceListener.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.TextWriterTraceListener.dll deleted file mode 100644 index d9af310..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.TextWriterTraceListener.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.Tools.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.Tools.dll deleted file mode 100644 index 25f06bd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.Tools.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.TraceSource.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.TraceSource.dll deleted file mode 100644 index 1f8c9d7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.Tracing.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.Tracing.dll deleted file mode 100644 index c19f217..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Diagnostics.Tracing.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Drawing.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Drawing.Primitives.dll deleted file mode 100644 index a7787ee..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Drawing.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Drawing.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Drawing.dll deleted file mode 100644 index 9d6e40d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Drawing.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Dynamic.Runtime.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Dynamic.Runtime.dll deleted file mode 100644 index 4becfc5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Dynamic.Runtime.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Formats.Asn1.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Formats.Asn1.dll deleted file mode 100644 index b9d487f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Formats.Asn1.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Formats.Tar.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Formats.Tar.dll deleted file mode 100644 index 3588d36..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Formats.Tar.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Globalization.Calendars.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Globalization.Calendars.dll deleted file mode 100644 index 4c0a108..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Globalization.Calendars.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Globalization.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Globalization.Extensions.dll deleted file mode 100644 index 4e9c896..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Globalization.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Globalization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Globalization.dll deleted file mode 100644 index e39224c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Globalization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Compression.Brotli.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Compression.Brotli.dll deleted file mode 100644 index 352e9c1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Compression.Brotli.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Compression.FileSystem.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Compression.FileSystem.dll deleted file mode 100644 index 20bf8ac..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Compression.FileSystem.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Compression.Native.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Compression.Native.dll deleted file mode 100644 index 5aa8814..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Compression.Native.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Compression.ZipFile.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Compression.ZipFile.dll deleted file mode 100644 index 10465dd..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Compression.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Compression.dll deleted file mode 100644 index e5f1e94..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Compression.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.FileSystem.AccessControl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.FileSystem.AccessControl.dll deleted file mode 100644 index 4344d59..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.FileSystem.DriveInfo.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.FileSystem.DriveInfo.dll deleted file mode 100644 index 80a839f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.FileSystem.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.FileSystem.Primitives.dll deleted file mode 100644 index ae0b1ba..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.FileSystem.Watcher.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.FileSystem.Watcher.dll deleted file mode 100644 index 5f76211..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.FileSystem.Watcher.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.FileSystem.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.FileSystem.dll deleted file mode 100644 index e69fdc6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.FileSystem.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.IsolatedStorage.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.IsolatedStorage.dll deleted file mode 100644 index 73295c9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.IsolatedStorage.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.MemoryMappedFiles.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.MemoryMappedFiles.dll deleted file mode 100644 index 11d1816..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.MemoryMappedFiles.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Pipelines.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Pipelines.dll deleted file mode 100644 index 1907bbf..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Pipelines.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Pipes.AccessControl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Pipes.AccessControl.dll deleted file mode 100644 index 408011d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Pipes.AccessControl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Pipes.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Pipes.dll deleted file mode 100644 index ec2b06e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.Pipes.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.UnmanagedMemoryStream.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.UnmanagedMemoryStream.dll deleted file mode 100644 index 696a496..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.UnmanagedMemoryStream.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.dll deleted file mode 100644 index 39be500..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.IO.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Linq.Async.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Linq.Async.dll deleted file mode 100644 index 7ae9527..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Linq.Async.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Linq.Expressions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Linq.Expressions.dll deleted file mode 100644 index bb17641..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Linq.Expressions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Linq.Parallel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Linq.Parallel.dll deleted file mode 100644 index f2fa147..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Linq.Parallel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Linq.Queryable.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Linq.Queryable.dll deleted file mode 100644 index e6846fb..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Linq.Queryable.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Linq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Linq.dll deleted file mode 100644 index a7b1ded..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Linq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Memory.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Memory.dll deleted file mode 100644 index 81047a4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Memory.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Http.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Http.Json.dll deleted file mode 100644 index 636f449..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Http.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Http.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Http.dll deleted file mode 100644 index 3dc2757..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Http.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.HttpListener.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.HttpListener.dll deleted file mode 100644 index ce5a24d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.HttpListener.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Mail.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Mail.dll deleted file mode 100644 index eee407f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Mail.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.NameResolution.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.NameResolution.dll deleted file mode 100644 index 31ca956..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.NameResolution.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.NetworkInformation.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.NetworkInformation.dll deleted file mode 100644 index df64a68..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.NetworkInformation.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Ping.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Ping.dll deleted file mode 100644 index af29718..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Ping.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Primitives.dll deleted file mode 100644 index 4c4bf36..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Quic.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Quic.dll deleted file mode 100644 index 86333bf..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Quic.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Requests.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Requests.dll deleted file mode 100644 index 58b96e4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Requests.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Security.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Security.dll deleted file mode 100644 index b726003..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Security.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.ServicePoint.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.ServicePoint.dll deleted file mode 100644 index 62f61fa..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.ServicePoint.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Sockets.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Sockets.dll deleted file mode 100644 index af441e9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.Sockets.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.WebClient.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.WebClient.dll deleted file mode 100644 index ac5bf68..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.WebClient.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.WebHeaderCollection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.WebHeaderCollection.dll deleted file mode 100644 index f2e7ad8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.WebHeaderCollection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.WebProxy.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.WebProxy.dll deleted file mode 100644 index 7022f8a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.WebProxy.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.WebSockets.Client.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.WebSockets.Client.dll deleted file mode 100644 index 6e2fd16..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.WebSockets.Client.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.WebSockets.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.WebSockets.dll deleted file mode 100644 index d40fd49..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.WebSockets.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.dll deleted file mode 100644 index 0c20257..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Net.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Numerics.Vectors.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Numerics.Vectors.dll deleted file mode 100644 index 856eb2a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Numerics.Vectors.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Numerics.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Numerics.dll deleted file mode 100644 index 0add586..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Numerics.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ObjectModel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ObjectModel.dll deleted file mode 100644 index e5ffb1a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ObjectModel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Private.CoreLib.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Private.CoreLib.dll deleted file mode 100644 index c6304ff..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Private.CoreLib.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Private.DataContractSerialization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Private.DataContractSerialization.dll deleted file mode 100644 index e76f89d..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Private.DataContractSerialization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Private.Uri.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Private.Uri.dll deleted file mode 100644 index 5004d40..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Private.Uri.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Private.Xml.Linq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Private.Xml.Linq.dll deleted file mode 100644 index 3ebbb18..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Private.Xml.Linq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Private.Xml.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Private.Xml.dll deleted file mode 100644 index 1fd2426..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Private.Xml.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.DispatchProxy.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.DispatchProxy.dll deleted file mode 100644 index 2eaeb03..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.DispatchProxy.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Emit.ILGeneration.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Emit.ILGeneration.dll deleted file mode 100644 index 5c32980..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Emit.Lightweight.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Emit.Lightweight.dll deleted file mode 100644 index 3695af4..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Emit.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Emit.dll deleted file mode 100644 index fec7c35..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Emit.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Extensions.dll deleted file mode 100644 index 4a6a5a6..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Metadata.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Metadata.dll deleted file mode 100644 index 8250aa3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Metadata.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Primitives.dll deleted file mode 100644 index a37876e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.TypeExtensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.TypeExtensions.dll deleted file mode 100644 index e4edc55..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.dll deleted file mode 100644 index e9dabb3..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Reflection.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Resources.Reader.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Resources.Reader.dll deleted file mode 100644 index 52c0562..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Resources.Reader.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Resources.ResourceManager.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Resources.ResourceManager.dll deleted file mode 100644 index 2136853..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Resources.ResourceManager.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Resources.Writer.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Resources.Writer.dll deleted file mode 100644 index 1a98fdc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Resources.Writer.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.CompilerServices.Unsafe.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 9651566..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.CompilerServices.VisualC.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.CompilerServices.VisualC.dll deleted file mode 100644 index be98649..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.CompilerServices.VisualC.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Extensions.dll deleted file mode 100644 index 246fc15..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Handles.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Handles.dll deleted file mode 100644 index 703813a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Handles.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.InteropServices.JavaScript.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.InteropServices.JavaScript.dll deleted file mode 100644 index 2dd485c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.InteropServices.JavaScript.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100644 index ff5db3c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.InteropServices.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.InteropServices.dll deleted file mode 100644 index 48a9338..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.InteropServices.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Intrinsics.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Intrinsics.dll deleted file mode 100644 index c36e8f9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Intrinsics.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Loader.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Loader.dll deleted file mode 100644 index 17fd7bc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Loader.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Numerics.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Numerics.dll deleted file mode 100644 index d7caaed..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Numerics.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Serialization.Formatters.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Serialization.Formatters.dll deleted file mode 100644 index 2941d5b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Serialization.Formatters.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Serialization.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Serialization.Json.dll deleted file mode 100644 index 31afafa..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Serialization.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Serialization.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Serialization.Primitives.dll deleted file mode 100644 index 9896259..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Serialization.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Serialization.Xml.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Serialization.Xml.dll deleted file mode 100644 index b390153..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Serialization.Xml.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Serialization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Serialization.dll deleted file mode 100644 index 801c3b9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.Serialization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.dll deleted file mode 100644 index 94d1831..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Runtime.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.AccessControl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.AccessControl.dll deleted file mode 100644 index c00420b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.AccessControl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Claims.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Claims.dll deleted file mode 100644 index 819f4b1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Claims.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.Algorithms.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.Algorithms.dll deleted file mode 100644 index 54ea99a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.Cng.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.Cng.dll deleted file mode 100644 index ee23332..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.Csp.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.Csp.dll deleted file mode 100644 index a054b71..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.Csp.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.Encoding.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.Encoding.dll deleted file mode 100644 index fc91148..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.OpenSsl.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.OpenSsl.dll deleted file mode 100644 index aaf5582..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.Primitives.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.Primitives.dll deleted file mode 100644 index 00442b7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.X509Certificates.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.X509Certificates.dll deleted file mode 100644 index 4409a30..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.dll deleted file mode 100644 index c7f39c7..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Cryptography.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Principal.Windows.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Principal.Windows.dll deleted file mode 100644 index 2d95a4a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Principal.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Principal.dll deleted file mode 100644 index 59bce56..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.Principal.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.SecureString.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.SecureString.dll deleted file mode 100644 index 8869ba8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.SecureString.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.dll deleted file mode 100644 index d11562a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Security.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ServiceModel.Web.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ServiceModel.Web.dll deleted file mode 100644 index febdcf8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ServiceModel.Web.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ServiceProcess.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ServiceProcess.dll deleted file mode 100644 index 12f8709..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ServiceProcess.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.Encoding.CodePages.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.Encoding.CodePages.dll deleted file mode 100644 index 8e3bfe8..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.Encoding.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.Encoding.Extensions.dll deleted file mode 100644 index 2d1909f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.Encoding.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.Encoding.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.Encoding.dll deleted file mode 100644 index e5d3a6c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.Encoding.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.Encodings.Web.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.Encodings.Web.dll deleted file mode 100644 index 17f2505..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.Json.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.Json.dll deleted file mode 100644 index 4ff7d13..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.Json.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.RegularExpressions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.RegularExpressions.dll deleted file mode 100644 index c0a2914..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Channels.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Channels.dll deleted file mode 100644 index 212e6cc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Channels.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Overlapped.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Overlapped.dll deleted file mode 100644 index e3f7d90..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Overlapped.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Tasks.Dataflow.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Tasks.Dataflow.dll deleted file mode 100644 index a7e6169..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Tasks.Dataflow.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Tasks.Extensions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Tasks.Extensions.dll deleted file mode 100644 index 0f1478e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Tasks.Parallel.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Tasks.Parallel.dll deleted file mode 100644 index b94f934..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Tasks.Parallel.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Tasks.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Tasks.dll deleted file mode 100644 index cba1f1f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Tasks.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Thread.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Thread.dll deleted file mode 100644 index e1c6f89..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Thread.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.ThreadPool.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.ThreadPool.dll deleted file mode 100644 index 27bba4b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Timer.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Timer.dll deleted file mode 100644 index 116a1e5..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.Timer.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.dll deleted file mode 100644 index 0c90457..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Threading.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Transactions.Local.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Transactions.Local.dll deleted file mode 100644 index f4ed74e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Transactions.Local.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Transactions.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Transactions.dll deleted file mode 100644 index 4016d19..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Transactions.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ValueTuple.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ValueTuple.dll deleted file mode 100644 index 28d7672..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.ValueTuple.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Web.HttpUtility.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Web.HttpUtility.dll deleted file mode 100644 index 4bc6ebc..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Web.HttpUtility.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Web.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Web.dll deleted file mode 100644 index 5317b10..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Web.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Windows.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Windows.dll deleted file mode 100644 index a264a29..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Windows.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.Linq.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.Linq.dll deleted file mode 100644 index f7af176..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.Linq.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.ReaderWriter.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.ReaderWriter.dll deleted file mode 100644 index 4453d2b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.Serialization.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.Serialization.dll deleted file mode 100644 index 26f8803..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.Serialization.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.XDocument.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.XDocument.dll deleted file mode 100644 index d55347e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.XDocument.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.XPath.XDocument.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.XPath.XDocument.dll deleted file mode 100644 index 9f74572..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.XPath.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.XPath.dll deleted file mode 100644 index 8fbd00a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.XPath.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.XmlDocument.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.XmlDocument.dll deleted file mode 100644 index df2e68f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.XmlSerializer.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.XmlSerializer.dll deleted file mode 100644 index 3bd34fa..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.dll deleted file mode 100644 index c7c95b2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.Xml.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.dll deleted file mode 100644 index 033d0f9..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/System.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/WindowsBase.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/WindowsBase.dll deleted file mode 100644 index 2a21ffe..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/WindowsBase.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/clretwrc.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/clretwrc.dll deleted file mode 100644 index 1198ee0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/clretwrc.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/clrgc.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/clrgc.dll deleted file mode 100644 index b42abae..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/clrgc.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/clrgcexp.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/clrgcexp.dll deleted file mode 100644 index b9767ff..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/clrgcexp.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/clrjit.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/clrjit.dll deleted file mode 100644 index 3401389..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/clrjit.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/coreclr.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/coreclr.dll deleted file mode 100644 index 6519ea1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/coreclr.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/createdump.exe b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/createdump.exe deleted file mode 100644 index bc86e4b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/createdump.exe and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/cs/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/cs/FSharp.Core.resources.dll deleted file mode 100644 index 3c7f15b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/cs/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/de/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/de/FSharp.Core.resources.dll deleted file mode 100644 index 2342aa0..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/de/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/de/Spectre.Console.Cli.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/de/Spectre.Console.Cli.resources.dll deleted file mode 100644 index f06877f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/de/Spectre.Console.Cli.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/duckdb.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/duckdb.dll deleted file mode 100644 index 19ee395..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/duckdb.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.deps.json b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.deps.json deleted file mode 100644 index 7ff3e2c..0000000 --- a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.deps.json +++ /dev/null @@ -1,1536 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v9.0/win-x64", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v9.0": {}, - ".NETCoreApp,Version=v9.0/win-x64": { - "edb-commerce/1.0.0": { - "dependencies": { - "Bogus": "35.6.2", - "DuckDB.NET.Data.Full": "1.2.1", - "EventStore.Client.Grpc.Streams": "23.3.8", - "FSharp.Control.TaskSeq": "0.4.0", - "FSharp.Core": "9.0.201", - "FSharp.SystemTextJson": "1.3.13", - "Flurl.Http": "4.0.2", - "Microsoft.Extensions.Logging.Console": "9.0.3", - "Minerals.StringCases": "0.2.1", - "NJsonSchema": "11.1.0", - "NodaTime": "3.2.1", - "NodaTime.Serialization.SystemTextJson": "1.3.0", - "NodaTime.Testing": "3.2.1", - "Spectre.Console.Cli": "0.49.1", - "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "9.0.3" - }, - "runtime": { - "edb-commerce.dll": {} - } - }, - "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/9.0.3": { - "runtime": { - "Microsoft.CSharp.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "Microsoft.VisualBasic.Core.dll": { - "assemblyVersion": "14.0.0.0", - "fileVersion": "14.0.325.11113" - }, - "Microsoft.VisualBasic.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "Microsoft.Win32.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "Microsoft.Win32.Registry.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.AppContext.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Buffers.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.Concurrent.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.Immutable.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.NonGeneric.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.Specialized.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Collections.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.Annotations.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.DataAnnotations.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.EventBasedAsync.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ComponentModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Configuration.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Data.Common.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Data.DataSetExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Data.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Contracts.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Debug.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.FileVersionInfo.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Process.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.StackTrace.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.TextWriterTraceListener.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Tools.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.TraceSource.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Diagnostics.Tracing.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Drawing.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Drawing.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Dynamic.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Formats.Asn1.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Formats.Tar.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Globalization.Calendars.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Globalization.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Globalization.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.Brotli.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.FileSystem.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.ZipFile.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Compression.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.DriveInfo.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.Watcher.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.FileSystem.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.IsolatedStorage.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.MemoryMappedFiles.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Pipelines.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Pipes.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.Pipes.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.UnmanagedMemoryStream.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.IO.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.Expressions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.Parallel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.Queryable.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Linq.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Memory.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Http.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Http.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.HttpListener.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Mail.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.NameResolution.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.NetworkInformation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Ping.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Quic.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Requests.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Security.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.ServicePoint.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.Sockets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebClient.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebHeaderCollection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebProxy.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebSockets.Client.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.WebSockets.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Net.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Numerics.Vectors.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Numerics.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ObjectModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.CoreLib.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.DataContractSerialization.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.Uri.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.Xml.Linq.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Private.Xml.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.DispatchProxy.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Emit.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Metadata.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Reflection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Resources.Reader.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Resources.ResourceManager.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Resources.Writer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.CompilerServices.VisualC.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Handles.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.InteropServices.JavaScript.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.InteropServices.RuntimeInformation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.InteropServices.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Intrinsics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Loader.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Numerics.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Formatters.dll": { - "assemblyVersion": "8.1.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.Xml.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.AccessControl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Claims.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Algorithms.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Cng.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Csp.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Encoding.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.OpenSsl.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.X509Certificates.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Cryptography.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Principal.Windows.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.Principal.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.SecureString.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Security.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ServiceModel.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ServiceProcess.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encoding.CodePages.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encoding.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encoding.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Encodings.Web.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Text.RegularExpressions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Channels.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Overlapped.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.Dataflow.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.Parallel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Tasks.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Thread.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.ThreadPool.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.Timer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Threading.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Transactions.Local.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Transactions.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.ValueTuple.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Web.HttpUtility.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Web.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Windows.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.Linq.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.ReaderWriter.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.Serialization.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XPath.XDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XPath.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XmlDocument.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.XmlSerializer.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.Xml.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "System.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "WindowsBase.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "mscorlib.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "9.0.325.11113" - }, - "netstandard.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "9.0.325.11113" - } - }, - "native": { - "Microsoft.DiaSymReader.Native.amd64.dll": { - "fileVersion": "14.42.34436.0" - }, - "System.IO.Compression.Native.dll": { - "fileVersion": "9.0.325.11113" - }, - "clretwrc.dll": { - "fileVersion": "9.0.325.11113" - }, - "clrgc.dll": { - "fileVersion": "9.0.325.11113" - }, - "clrgcexp.dll": { - "fileVersion": "9.0.325.11113" - }, - "clrjit.dll": { - "fileVersion": "9.0.325.11113" - }, - "coreclr.dll": { - "fileVersion": "9.0.325.11113" - }, - "createdump.exe": { - "fileVersion": "9.0.325.11113" - }, - "hostfxr.dll": { - "fileVersion": "9.0.325.11113" - }, - "hostpolicy.dll": { - "fileVersion": "9.0.325.11113" - }, - "mscordaccore.dll": { - "fileVersion": "9.0.325.11113" - }, - "mscordaccore_amd64_amd64_9.0.325.11113.dll": { - "fileVersion": "9.0.325.11113" - }, - "mscordbi.dll": { - "fileVersion": "9.0.325.11113" - }, - "mscorrc.dll": { - "fileVersion": "9.0.325.11113" - }, - "msquic.dll": { - "fileVersion": "2.4.3.0" - } - } - }, - "Bogus/35.6.2": { - "runtime": { - "lib/net6.0/Bogus.dll": { - "assemblyVersion": "35.6.2.0", - "fileVersion": "35.6.2.0" - } - } - }, - "DuckDB.NET.Bindings.Full/1.2.1": { - "runtime": { - "lib/net8.0/DuckDB.NET.Bindings.dll": { - "assemblyVersion": "1.2.1.0", - "fileVersion": "1.2.1.0" - } - }, - "native": { - "runtimes/win-x64/native/duckdb.dll": { - "fileVersion": "1.2.1.0" - } - } - }, - "DuckDB.NET.Data.Full/1.2.1": { - "dependencies": { - "DuckDB.NET.Bindings.Full": "1.2.1" - }, - "runtime": { - "lib/net8.0/DuckDB.NET.Data.dll": { - "assemblyVersion": "1.2.1.0", - "fileVersion": "1.2.1.0" - } - } - }, - "EventStore.Client.Grpc/23.3.8": { - "dependencies": { - "Google.Protobuf": "3.25.1", - "Grpc.Net.Client": "2.60.0", - "JetBrains.Annotations": "2023.3.0", - "Microsoft.Extensions.Logging": "9.0.3", - "System.Diagnostics.DiagnosticSource": "8.0.1", - "System.Linq.Async": "6.0.1", - "System.Text.Json": "8.0.5" - }, - "runtime": { - "lib/net8.0/EventStore.Client.dll": { - "assemblyVersion": "23.0.0.0", - "fileVersion": "23.3.8.0" - } - } - }, - "EventStore.Client.Grpc.Streams/23.3.8": { - "dependencies": { - "EventStore.Client.Grpc": "23.3.8" - }, - "runtime": { - "lib/net8.0/EventStore.Client.Streams.dll": { - "assemblyVersion": "23.0.0.0", - "fileVersion": "23.3.8.0" - } - } - }, - "Flurl/4.0.0": { - "runtime": { - "lib/netstandard2.0/Flurl.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.0.0" - } - } - }, - "Flurl.Http/4.0.2": { - "dependencies": { - "Flurl": "4.0.0" - }, - "runtime": { - "lib/net6.0/Flurl.Http.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.0.2.0" - } - } - }, - "FSharp.Control.TaskSeq/0.4.0": { - "dependencies": { - "FSharp.Core": "9.0.201" - }, - "runtime": { - "lib/netstandard2.1/FSharp.Control.TaskSeq.dll": { - "assemblyVersion": "0.4.0.0", - "fileVersion": "0.4.0.0" - } - } - }, - "FSharp.Core/9.0.201": { - "runtime": { - "lib/netstandard2.1/FSharp.Core.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.2.125.7003" - } - }, - "resources": { - "lib/netstandard2.1/cs/FSharp.Core.resources.dll": { - "locale": "cs" - }, - "lib/netstandard2.1/de/FSharp.Core.resources.dll": { - "locale": "de" - }, - "lib/netstandard2.1/es/FSharp.Core.resources.dll": { - "locale": "es" - }, - "lib/netstandard2.1/fr/FSharp.Core.resources.dll": { - "locale": "fr" - }, - "lib/netstandard2.1/it/FSharp.Core.resources.dll": { - "locale": "it" - }, - "lib/netstandard2.1/ja/FSharp.Core.resources.dll": { - "locale": "ja" - }, - "lib/netstandard2.1/ko/FSharp.Core.resources.dll": { - "locale": "ko" - }, - "lib/netstandard2.1/pl/FSharp.Core.resources.dll": { - "locale": "pl" - }, - "lib/netstandard2.1/pt-BR/FSharp.Core.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard2.1/ru/FSharp.Core.resources.dll": { - "locale": "ru" - }, - "lib/netstandard2.1/tr/FSharp.Core.resources.dll": { - "locale": "tr" - }, - "lib/netstandard2.1/zh-Hans/FSharp.Core.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard2.1/zh-Hant/FSharp.Core.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "FSharp.SystemTextJson/1.3.13": { - "dependencies": { - "FSharp.Core": "9.0.201", - "System.Text.Json": "8.0.5" - }, - "runtime": { - "lib/netstandard2.0/FSharp.SystemTextJson.dll": { - "assemblyVersion": "1.3.0.0", - "fileVersion": "1.3.13.11246" - } - } - }, - "Google.Protobuf/3.25.1": { - "runtime": { - "lib/net5.0/Google.Protobuf.dll": { - "assemblyVersion": "3.25.1.0", - "fileVersion": "3.25.1.0" - } - } - }, - "Grpc.Core.Api/2.60.0": { - "runtime": { - "lib/netstandard2.1/Grpc.Core.Api.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.60.0.0" - } - } - }, - "Grpc.Net.Client/2.60.0": { - "dependencies": { - "Grpc.Net.Common": "2.60.0", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net8.0/Grpc.Net.Client.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.60.0.0" - } - } - }, - "Grpc.Net.Common/2.60.0": { - "dependencies": { - "Grpc.Core.Api": "2.60.0" - }, - "runtime": { - "lib/net8.0/Grpc.Net.Common.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.60.0.0" - } - } - }, - "JetBrains.Annotations/2023.3.0": { - "runtime": { - "lib/netstandard2.0/JetBrains.Annotations.dll": { - "assemblyVersion": "4242.42.42.42", - "fileVersion": "2023.3.0.0" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Configuration/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.DependencyInjection/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.3": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "9.0.3", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging.Configuration/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration": "9.0.3", - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", - "Microsoft.Extensions.Configuration.Binder": "9.0.3", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Logging": "9.0.3", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3", - "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Logging.Console/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Logging": "9.0.3", - "Microsoft.Extensions.Logging.Abstractions": "9.0.3", - "Microsoft.Extensions.Logging.Configuration": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Logging.Console.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Options/9.0.3": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.3": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "9.0.3", - "Microsoft.Extensions.Configuration.Binder": "9.0.3", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.3", - "Microsoft.Extensions.Options": "9.0.3", - "Microsoft.Extensions.Primitives": "9.0.3" - }, - "runtime": { - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Microsoft.Extensions.Primitives/9.0.3": { - "runtime": { - "lib/net9.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.325.11113" - } - } - }, - "Minerals.StringCases/0.2.1": { - "runtime": { - "lib/netstandard2.0/Minerals.StringCases.dll": { - "assemblyVersion": "0.2.1.0", - "fileVersion": "0.2.1.0" - } - } - }, - "Namotion.Reflection/3.2.0": { - "runtime": { - "lib/net8.0/Namotion.Reflection.dll": { - "assemblyVersion": "3.2.0.0", - "fileVersion": "3.2.0.0" - } - } - }, - "Newtonsoft.Json/13.0.3": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" - } - } - }, - "NJsonSchema/11.1.0": { - "dependencies": { - "NJsonSchema.Annotations": "11.1.0", - "Namotion.Reflection": "3.2.0", - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/net6.0/NJsonSchema.dll": { - "assemblyVersion": "11.1.0.0", - "fileVersion": "11.1.0.0" - } - } - }, - "NJsonSchema.Annotations/11.1.0": { - "runtime": { - "lib/netstandard2.0/NJsonSchema.Annotations.dll": { - "assemblyVersion": "11.1.0.0", - "fileVersion": "11.1.0.0" - } - } - }, - "NodaTime/3.2.1": { - "runtime": { - "lib/net8.0/NodaTime.dll": { - "assemblyVersion": "3.2.1.0", - "fileVersion": "3.2.1.0" - } - } - }, - "NodaTime.Serialization.SystemTextJson/1.3.0": { - "dependencies": { - "NodaTime": "3.2.1" - }, - "runtime": { - "lib/net6.0/NodaTime.Serialization.SystemTextJson.dll": { - "assemblyVersion": "1.3.0.0", - "fileVersion": "1.3.0.0" - } - } - }, - "NodaTime.Testing/3.2.1": { - "dependencies": { - "NodaTime": "3.2.1" - }, - "runtime": { - "lib/netstandard2.0/NodaTime.Testing.dll": { - "assemblyVersion": "3.2.1.0", - "fileVersion": "3.2.1.0" - } - } - }, - "Spectre.Console/0.49.1": { - "runtime": { - "lib/net8.0/Spectre.Console.dll": { - "assemblyVersion": "0.0.0.0", - "fileVersion": "0.49.1.0" - } - } - }, - "Spectre.Console.Cli/0.49.1": { - "dependencies": { - "Spectre.Console": "0.49.1" - }, - "runtime": { - "lib/net8.0/Spectre.Console.Cli.dll": { - "assemblyVersion": "0.0.0.0", - "fileVersion": "0.49.1.0" - } - }, - "resources": { - "lib/net8.0/de/Spectre.Console.Cli.resources.dll": { - "locale": "de" - }, - "lib/net8.0/fr/Spectre.Console.Cli.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/sv/Spectre.Console.Cli.resources.dll": { - "locale": "sv" - } - } - }, - "System.Diagnostics.DiagnosticSource/8.0.1": {}, - "System.Linq.Async/6.0.1": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Linq.Async.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1.35981" - } - } - }, - "System.Text.Json/8.0.5": {} - } - }, - "libraries": { - "edb-commerce/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/9.0.3": { - "type": "runtimepack", - "serviceable": false, - "sha512": "" - }, - "Bogus/35.6.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-u3XtrfDqwNDqmJiUA6AnUBGU2169av3BtBOrcgp1JZb2RVCg6P6JOTcJvXCLDd6YiRZFKxuoujiWM951Ze8D5w==", - "path": "bogus/35.6.2", - "hashPath": "bogus.35.6.2.nupkg.sha512" - }, - "DuckDB.NET.Bindings.Full/1.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tdK+r/Omifx+VXYo6uLjocgaPcSEWoL0ZN26D9KbffmLGfeYirMMhyoaAwOiBwGbeYS1jlQSiVjmtFv6Squb7g==", - "path": "duckdb.net.bindings.full/1.2.1", - "hashPath": "duckdb.net.bindings.full.1.2.1.nupkg.sha512" - }, - "DuckDB.NET.Data.Full/1.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eUdXsYwpnIu4gKjX/T6vA/73rY+O16YB/4mKj/jsdLnmk9C/lwo+AOgejuZgWell5HB7vQaoX8qjYgMM5XTCyA==", - "path": "duckdb.net.data.full/1.2.1", - "hashPath": "duckdb.net.data.full.1.2.1.nupkg.sha512" - }, - "EventStore.Client.Grpc/23.3.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rHQ8/umPRpI07uQV1cpqMt3fL8JRd8P+1WncIX0KULi4jz4Zg9xo1IHVvYXmljbAsJLSNy0QElf49+bjsBTAAg==", - "path": "eventstore.client.grpc/23.3.8", - "hashPath": "eventstore.client.grpc.23.3.8.nupkg.sha512" - }, - "EventStore.Client.Grpc.Streams/23.3.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xMFeUT2+/V07AgcIb041oFZIbfTE7d9atfvlBvVt3tmqrPV0dTe6eirDjUAZElM2ze/wyFpywlR6L2/LKG5+aQ==", - "path": "eventstore.client.grpc.streams/23.3.8", - "hashPath": "eventstore.client.grpc.streams.23.3.8.nupkg.sha512" - }, - "Flurl/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rpts69yYgvJqg6PPgqShBQEZ4aNzWQqWpWppcT0oDWxDCIsBqiod4pj6LQZdhk+1OozLFagemldMRACdHF3CsA==", - "path": "flurl/4.0.0", - "hashPath": "flurl.4.0.0.nupkg.sha512" - }, - "Flurl.Http/4.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9vCqFFyceA11yplkFD8AbCFFTvG1Lrw3tpsgOpL5sLUc28p6zcvGszNleuT6nDymRvtt5eS+rqUX+bRztg1fhA==", - "path": "flurl.http/4.0.2", - "hashPath": "flurl.http.4.0.2.nupkg.sha512" - }, - "FSharp.Control.TaskSeq/0.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+GK6oSwfffZaLPaWTBPYfX8mgWxszRrX9BdFh5ZLgQwg3IL3u10YneSCusOJ1gZKmdXAgGt4O4M9I9bgRTpL0Q==", - "path": "fsharp.control.taskseq/0.4.0", - "hashPath": "fsharp.control.taskseq.0.4.0.nupkg.sha512" - }, - "FSharp.Core/9.0.201": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ozq4T0ISTkqTYJ035XW/JkdDDaXofbykvfyVwkjLSqaDZ/4uNXfpf92cjcMI9lf9CxWqmlWHScViPh/4AvnWcw==", - "path": "fsharp.core/9.0.201", - "hashPath": "fsharp.core.9.0.201.nupkg.sha512" - }, - "FSharp.SystemTextJson/1.3.13": { - "type": "package", - "serviceable": true, - "sha512": "sha512-znp8odpdkVGKVX0AvbhiXdmeMi0KJ+A4AyAQWSkfAEAe4Z4clRE+rVhrLnAGrFD1VEIUX2lsQ4o84ywpWZUSGw==", - "path": "fsharp.systemtextjson/1.3.13", - "hashPath": "fsharp.systemtextjson.1.3.13.nupkg.sha512" - }, - "Google.Protobuf/3.25.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Sw9bq4hOD+AaS3RrnmP5IT25cyZ/T1qpM0e8+G+23Nojhv7+ScJFPEAQo1m4EFQWhXoI4FRZDrK+wjHCPw9yxg==", - "path": "google.protobuf/3.25.1", - "hashPath": "google.protobuf.3.25.1.nupkg.sha512" - }, - "Grpc.Core.Api/2.60.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VWah+8dGJhhsay5BQ/Ljq6GYDWj0lSjdzqyoBgUQhXTbBqhs+q5dRFROKxI1xxzlL4pfUO45cf/y+KnHVFG9ew==", - "path": "grpc.core.api/2.60.0", - "hashPath": "grpc.core.api.2.60.0.nupkg.sha512" - }, - "Grpc.Net.Client/2.60.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-J9U96gjZHOcqSgAThg9vZZhLsbTD005bUggPtMP/RVQnGc3+tQJTpkRUCJtJWq9cykNydsRVoyU38TjPP/VJ4A==", - "path": "grpc.net.client/2.60.0", - "hashPath": "grpc.net.client.2.60.0.nupkg.sha512" - }, - "Grpc.Net.Common/2.60.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Y/917aplgD1RA0q1cd9WpnMGyl9Luu3WZl6ZMpPvNQwg2TNw/3uXUDSriDBybeCtxnKUCtxUcWO3WsVkhM1DcA==", - "path": "grpc.net.common/2.60.0", - "hashPath": "grpc.net.common.2.60.0.nupkg.sha512" - }, - "JetBrains.Annotations/2023.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PHfnvdBUdGaTVG9bR/GEfxgTwWM0Z97Y6X3710wiljELBISipSfF5okn/vz+C2gfO+ihoEyVPjaJwn8ZalVukA==", - "path": "jetbrains.annotations/2023.3.0", - "hashPath": "jetbrains.annotations.2023.3.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RIEeZxWYm77+OWLwgik7DzSVSONjqkmcbuCb1koZdGAV7BgOUWnLz80VMyHZMw3onrVwFCCMHBBdruBPuQTvkg==", - "path": "microsoft.extensions.configuration/9.0.3", - "hashPath": "microsoft.extensions.configuration.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-q5qlbm6GRUrle2ZZxy9aqS/wWoc+mRD3JeP6rcpiJTh5XcemYkplAcJKq8lU11ZfPom5lfbZZfnQvDqcUhqD5Q==", - "path": "microsoft.extensions.configuration.abstractions/9.0.3", - "hashPath": "microsoft.extensions.configuration.abstractions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ad82pYBUSQbd3WIboxsS1HzFdRuHKRa2CpYwie/o6dZAxUjt62yFwjoVdM7Iw2VO5fHV1rJwa7jJZBNZin0E7Q==", - "path": "microsoft.extensions.configuration.binder/9.0.3", - "hashPath": "microsoft.extensions.configuration.binder.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lDbxJpkl6X8KZGpkAxgrrthQ42YeiR0xjPp7KPx+sCPc3ZbpaIbjzd0QQ+9kDdK2RU2DOl3pc6tQyAgEZY3V0A==", - "path": "microsoft.extensions.dependencyinjection/9.0.3", - "hashPath": "microsoft.extensions.dependencyinjection.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TfaHPSe39NyL2wxkisRxXK7xvHGZYBZ+dy3r+mqGvnxKgAPdHkMu3QMQZI4pquP6W5FIQBqs8FJpWV8ffCgDqQ==", - "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.3", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-utIi2R1nm+PCWkvWBf1Ou6LWqg9iLfHU23r8yyU9VCvda4dEs7xbTZSwGa5KuwbpzpgCbHCIuKaFHB3zyFmnGw==", - "path": "microsoft.extensions.logging/9.0.3", - "hashPath": "microsoft.extensions.logging.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H/MBMLt9A/69Ux4OrV7oCKt3DcMT04o5SCqDolulzQA66TLFEpYYb4qedMs/uwrLtyHXGuDGWKZse/oa8W9AZw==", - "path": "microsoft.extensions.logging.abstractions/9.0.3", - "hashPath": "microsoft.extensions.logging.abstractions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Configuration/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eVZsaKNyK0g0C1qp0mmn4Q2PiX+bXdkz8+zVkXyVMk8IvoWfmTjLjEq1MQlwt1A22lToANPiUrxPJ7Tt3V5puw==", - "path": "microsoft.extensions.logging.configuration/9.0.3", - "hashPath": "microsoft.extensions.logging.configuration.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Console/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o9VXLOdpTAro1q7ZThIB3S8OHrRn5pr8cFUCiN85fiwlfAt2DhU4ZIfHy+jCNbf7y7S5Exbr3dlDE8mKNrs0Yg==", - "path": "microsoft.extensions.logging.console/9.0.3", - "hashPath": "microsoft.extensions.logging.console.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Options/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xE7MpY70lkw1oiid5y6FbL9dVw8oLfkx8RhSNGN8sSzBlCqGn0SyT3Fqc8tZnDaPIq7Z8R9RTKlS564DS+MV3g==", - "path": "microsoft.extensions.options/9.0.3", - "hashPath": "microsoft.extensions.options.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PcyYHQglKnWVZHSPaL6v2qnfsIuFw8tSq7cyXHg3OeuDVn/CqmdWUjRiZomCF/Gi+qCi+ksz0lFphg2cNvB8zQ==", - "path": "microsoft.extensions.options.configurationextensions/9.0.3", - "hashPath": "microsoft.extensions.options.configurationextensions.9.0.3.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/9.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yCCJHvBcRyqapMSNzP+kTc57Eaavq2cr5Tmuil6/XVnipQf5xmskxakSQ1enU6S4+fNg3sJ27WcInV64q24JsA==", - "path": "microsoft.extensions.primitives/9.0.3", - "hashPath": "microsoft.extensions.primitives.9.0.3.nupkg.sha512" - }, - "Minerals.StringCases/0.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oIYrFY0Gq7XkNyziWLofmHZmJWsTJ/EtFpytGO0azmngopJXcCvkamuPzFwTfNz3d3B4/m8+ma0qI/z7q6NHXA==", - "path": "minerals.stringcases/0.2.1", - "hashPath": "minerals.stringcases.0.2.1.nupkg.sha512" - }, - "Namotion.Reflection/3.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YfGjDPzMEs3vRMI4CMkJwOg75SV5JEDV72kMccD2GCo++TfgOYb5ZTpABYq3dUQqFtnAPpqMKM+deLlrUwnN1g==", - "path": "namotion.reflection/3.2.0", - "hashPath": "namotion.reflection.3.2.0.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" - }, - "NJsonSchema/11.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H7QO+bM/2uzF81mVyy4U8ha4MXS9eOX06rTvBgJKquzIuLUGuiOTc4nknkCFKW7mr+xnWgzY7Spevz5ZEK8fGg==", - "path": "njsonschema/11.1.0", - "hashPath": "njsonschema.11.1.0.nupkg.sha512" - }, - "NJsonSchema.Annotations/11.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2gU72pKhMLrQt7TjHv+nrb8CxxgUaBk2SD/CaB5f00SxuWdOT4YVQaGy+jTVx+8IgQit+9WWMvBWU9f6U2HNiQ==", - "path": "njsonschema.annotations/11.1.0", - "hashPath": "njsonschema.annotations.11.1.0.nupkg.sha512" - }, - "NodaTime/3.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D1aHhUfPQUxU2nfDCVuSLahpp0xCYZTmj/KNH3mSK/tStJYcx9HO9aJ0qbOP3hzjGPV/DXOqY2AHe27Nt4xs4g==", - "path": "nodatime/3.2.1", - "hashPath": "nodatime.3.2.1.nupkg.sha512" - }, - "NodaTime.Serialization.SystemTextJson/1.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zf9sdKrfcId0rvZLOB7Yncy/cfCv20TdQ84IKE6CkcWW33u1wsRvmYUbfaP5MYUm+9vp9Yoi3G2vN1/9nZ/JCA==", - "path": "nodatime.serialization.systemtextjson/1.3.0", - "hashPath": "nodatime.serialization.systemtextjson.1.3.0.nupkg.sha512" - }, - "NodaTime.Testing/3.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5/3Knjh+U/lshyad4MS6SSO4VD18RT6wf0tFi0rp7wlG0Zxso247qt7RPAPArnsD/bBUqq0/36N8QIs9SzSoSA==", - "path": "nodatime.testing/3.2.1", - "hashPath": "nodatime.testing.3.2.1.nupkg.sha512" - }, - "Spectre.Console/0.49.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-USV+pdu49OJ3nCjxNuw1K9Zw/c1HCBbwbjXZp0EOn6wM99tFdAtN34KEBZUMyRuJuXlUMDqhd8Yq9obW2MslYA==", - "path": "spectre.console/0.49.1", - "hashPath": "spectre.console.0.49.1.nupkg.sha512" - }, - "Spectre.Console.Cli/0.49.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wBZzyEbKqfPFFUPhV5E7/k4Kwy4UDO42IVzvzk0C4Pkjjw+NSd0EOBkIutYET4vJY4X81pD9ooQO9gfBGXj4+g==", - "path": "spectre.console.cli/0.49.1", - "hashPath": "spectre.console.cli.0.49.1.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", - "path": "system.diagnostics.diagnosticsource/8.0.1", - "hashPath": "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512" - }, - "System.Linq.Async/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0YhHcaroWpQ9UCot3Pizah7ryAzQhNvobLMSxeDIGmnXfkQn8u5owvpOH0K6EVB+z9L7u6Cc4W17Br/+jyttEQ==", - "path": "system.linq.async/6.0.1", - "hashPath": "system.linq.async.6.0.1.nupkg.sha512" - }, - "System.Text.Json/8.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==", - "path": "system.text.json/8.0.5", - "hashPath": "system.text.json.8.0.5.nupkg.sha512" - } - }, - "runtimes": { - "win-x64": [ - "win", - "any", - "base" - ] - } -} \ No newline at end of file diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.dll deleted file mode 100644 index a92db6c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.exe b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.exe deleted file mode 100644 index 56311ca..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.exe and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.runtimeconfig.json b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.runtimeconfig.json deleted file mode 100644 index 8f2ed09..0000000 --- a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/edb-commerce.runtimeconfig.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net9.0", - "includedFrameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "9.0.3" - } - ], - "configProperties": { - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/es/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/es/FSharp.Core.resources.dll deleted file mode 100644 index 03f160e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/es/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/fr/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/fr/FSharp.Core.resources.dll deleted file mode 100644 index d9e8e6f..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/fr/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/fr/Spectre.Console.Cli.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/fr/Spectre.Console.Cli.resources.dll deleted file mode 100644 index 42fbeaa..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/fr/Spectre.Console.Cli.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/hostfxr.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/hostfxr.dll deleted file mode 100644 index 479ad10..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/hostfxr.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/hostpolicy.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/hostpolicy.dll deleted file mode 100644 index b1da799..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/hostpolicy.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/it/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/it/FSharp.Core.resources.dll deleted file mode 100644 index 9302d17..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/it/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/ja/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/ja/FSharp.Core.resources.dll deleted file mode 100644 index 14b589c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/ja/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/ko/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/ko/FSharp.Core.resources.dll deleted file mode 100644 index 7fc7dd1..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/ko/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/mscordaccore.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/mscordaccore.dll deleted file mode 100644 index 127896a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/mscordaccore.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/mscordaccore_amd64_amd64_9.0.325.11113.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/mscordaccore_amd64_amd64_9.0.325.11113.dll deleted file mode 100644 index 127896a..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/mscordaccore_amd64_amd64_9.0.325.11113.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/mscordbi.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/mscordbi.dll deleted file mode 100644 index d0e8d1b..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/mscordbi.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/mscorlib.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/mscorlib.dll deleted file mode 100644 index 6c5d774..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/mscorlib.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/mscorrc.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/mscorrc.dll deleted file mode 100644 index 6fdbb08..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/mscorrc.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/msquic.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/msquic.dll deleted file mode 100644 index ad01495..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/msquic.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/netstandard.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/netstandard.dll deleted file mode 100644 index 0a92967..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/netstandard.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/pl/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/pl/FSharp.Core.resources.dll deleted file mode 100644 index f54855c..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/pl/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/pt-BR/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/pt-BR/FSharp.Core.resources.dll deleted file mode 100644 index 0f3b357..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/pt-BR/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/ru/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/ru/FSharp.Core.resources.dll deleted file mode 100644 index 071d7ea..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/ru/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/sv/Spectre.Console.Cli.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/sv/Spectre.Console.Cli.resources.dll deleted file mode 100644 index c0e1e28..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/sv/Spectre.Console.Cli.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/tr/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/tr/FSharp.Core.resources.dll deleted file mode 100644 index 0d2191e..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/tr/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/zh-Hans/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/zh-Hans/FSharp.Core.resources.dll deleted file mode 100644 index 20923ef..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/zh-Hans/FSharp.Core.resources.dll and /dev/null differ diff --git a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/zh-Hant/FSharp.Core.resources.dll b/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/zh-Hant/FSharp.Core.resources.dll deleted file mode 100644 index c26d2f2..0000000 Binary files a/polyglot-persistence/tools/Kurrent.Extensions.Commerce/win-x64/zh-Hant/FSharp.Core.resources.dll and /dev/null differ