diff --git a/TrafagSalesExporter/Services/ExcelExportService.cs b/TrafagSalesExporter/Services/ExcelExportService.cs index 36034ee..3b92431 100644 --- a/TrafagSalesExporter/Services/ExcelExportService.cs +++ b/TrafagSalesExporter/Services/ExcelExportService.cs @@ -10,7 +10,21 @@ public class ExcelExportService Directory.CreateDirectory(outputDirectory); var fileName = $"Sales_{tsc}_{fileDate:yyyy-MM-dd}.xlsx"; var fullPath = Path.Combine(outputDirectory, fileName); + WriteWorkbook(fullPath, records); + return fullPath; + } + public string CreateConsolidatedExcelFile(string outputDirectory, DateTime fileDate, List records) + { + Directory.CreateDirectory(outputDirectory); + var fileName = $"Sales_All_{fileDate:yyyy-MM-dd}.xlsx"; + var fullPath = Path.Combine(outputDirectory, fileName); + WriteWorkbook(fullPath, records); + return fullPath; + } + + private static void WriteWorkbook(string fullPath, List records) + { using var workbook = new XLWorkbook(); var ws = workbook.Worksheets.Add("Sales"); @@ -84,6 +98,5 @@ public class ExcelExportService ws.Columns().AdjustToContents(); workbook.SaveAs(fullPath); - return fullPath; } } diff --git a/TrafagSalesExporter/Services/ExportOrchestrationService.cs b/TrafagSalesExporter/Services/ExportOrchestrationService.cs index bd3d650..287066a 100644 --- a/TrafagSalesExporter/Services/ExportOrchestrationService.cs +++ b/TrafagSalesExporter/Services/ExportOrchestrationService.cs @@ -55,9 +55,39 @@ public class ExportOrchestrationService { using var db = await _dbFactory.CreateDbContextAsync(); var sites = await db.Sites.Include(s => s.HanaServer).Where(s => s.IsActive).ToListAsync(); + var consolidatedRecords = new List(); + foreach (var site in sites) { - await ExportSiteAsync(site); + var result = await ExportSiteAsync(site); + if (result?.Records is { Count: > 0 }) + consolidatedRecords.AddRange(result.Records); + } + + if (consolidatedRecords.Count > 0) + { + var spConfig = await db.SharePointConfigs.FirstOrDefaultAsync(); + var outputDir = Path.Combine(AppContext.BaseDirectory, "output"); + var consolidatedPath = _excelService.CreateConsolidatedExcelFile( + outputDir, + DateTime.UtcNow.Date, + consolidatedRecords + .OrderBy(r => r.Land) + .ThenBy(r => r.Tsc) + .ThenByDescending(r => r.InvoiceDate ?? DateTime.MinValue) + .ThenBy(r => r.InvoiceNumber) + .ThenBy(r => r.PositionOnInvoice) + .ToList()); + + if (spConfig is not null && + !string.IsNullOrWhiteSpace(spConfig.TenantId) && + !string.IsNullOrWhiteSpace(spConfig.ClientId) && + !string.IsNullOrWhiteSpace(spConfig.ClientSecret)) + { + await _sharePointService.UploadAsync( + spConfig.TenantId, spConfig.ClientId, spConfig.ClientSecret, + spConfig.SiteUrl, spConfig.ExportFolder, "Alle", consolidatedPath); + } } } @@ -69,13 +99,13 @@ public class ExportOrchestrationService await ExportSiteAsync(site); } - private async Task ExportSiteAsync(Site site) + private async Task ExportSiteAsync(Site site) { - if (site.HanaServer is null) return; + if (site.HanaServer is null) return null; lock (_lock) { - if (_runningExports.ContainsKey(site.Id)) return; + if (_runningExports.ContainsKey(site.Id)) return null; _runningExports[site.Id] = "HANA Abfrage..."; } NotifyChanged(); @@ -130,6 +160,8 @@ public class ExportOrchestrationService _logger.LogInformation("Export OK: {Land} ({TSC}) - {Rows} Zeilen in {Duration:F1}s", site.Land, site.TSC, records.Count, sw.Elapsed.TotalSeconds); + + return new SiteExportResult(records, filePath); } catch (Exception ex) { @@ -140,6 +172,7 @@ public class ExportOrchestrationService log.DurationSeconds = sw.Elapsed.TotalSeconds; _logger.LogError(ex, "Export Fehler: {Land} ({TSC})", site.Land, site.TSC); + return null; } finally { @@ -168,4 +201,6 @@ public class ExportOrchestrationService { OnExportStatusChanged?.Invoke(); } + + private sealed record SiteExportResult(List Records, string FilePath); } diff --git a/TrafagSalesExporter/build_verify/central_export/Azure.Core.dll b/TrafagSalesExporter/build_verify/central_export/Azure.Core.dll new file mode 100644 index 0000000..1b0de61 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Azure.Core.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Azure.Identity.dll b/TrafagSalesExporter/build_verify/central_export/Azure.Identity.dll new file mode 100644 index 0000000..c64a0db Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Azure.Identity.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/ClosedXML.Parser.dll b/TrafagSalesExporter/build_verify/central_export/ClosedXML.Parser.dll new file mode 100644 index 0000000..1613f29 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/ClosedXML.Parser.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/ClosedXML.dll b/TrafagSalesExporter/build_verify/central_export/ClosedXML.dll new file mode 100644 index 0000000..fcaf164 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/ClosedXML.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/DocumentFormat.OpenXml.Framework.dll b/TrafagSalesExporter/build_verify/central_export/DocumentFormat.OpenXml.Framework.dll new file mode 100644 index 0000000..895c615 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/DocumentFormat.OpenXml.Framework.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/DocumentFormat.OpenXml.dll b/TrafagSalesExporter/build_verify/central_export/DocumentFormat.OpenXml.dll new file mode 100644 index 0000000..dbc29d1 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/DocumentFormat.OpenXml.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/ExcelNumberFormat.dll b/TrafagSalesExporter/build_verify/central_export/ExcelNumberFormat.dll new file mode 100644 index 0000000..aaf7bf8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/ExcelNumberFormat.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Humanizer.dll b/TrafagSalesExporter/build_verify/central_export/Humanizer.dll new file mode 100644 index 0000000..c9a7ef8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Humanizer.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.AspNetCore.Authorization.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 0000000..6cc4edc Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.AspNetCore.Authorization.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.AspNetCore.Components.Forms.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.AspNetCore.Components.Forms.dll new file mode 100644 index 0000000..8846e9f Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.AspNetCore.Components.Web.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.AspNetCore.Components.Web.dll new file mode 100644 index 0000000..17618af Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.AspNetCore.Components.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.AspNetCore.Components.dll new file mode 100644 index 0000000..f83f23a Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.AspNetCore.Components.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.AspNetCore.Metadata.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 0000000..c58acf9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.AspNetCore.Metadata.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Bcl.AsyncInterfaces.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..fe6ba4c Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Bcl.Memory.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Bcl.Memory.dll new file mode 100644 index 0000000..84f76cb Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Bcl.Memory.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100644 index 0000000..dc218f9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.CodeAnalysis.CSharp.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.CodeAnalysis.CSharp.dll new file mode 100644 index 0000000..412e7ed Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.CodeAnalysis.Workspaces.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100644 index 0000000..8dec441 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.CodeAnalysis.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.CodeAnalysis.dll new file mode 100644 index 0000000..79e9046 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.CodeAnalysis.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Data.Sqlite.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..5e5f13b Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Data.Sqlite.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.EntityFrameworkCore.Abstractions.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100644 index 0000000..c972d3e Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.EntityFrameworkCore.Design.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.EntityFrameworkCore.Design.dll new file mode 100644 index 0000000..dc960cd Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.EntityFrameworkCore.Relational.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100644 index 0000000..e980332 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.EntityFrameworkCore.Sqlite.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.EntityFrameworkCore.Sqlite.dll new file mode 100644 index 0000000..58df708 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.EntityFrameworkCore.Sqlite.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.EntityFrameworkCore.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.EntityFrameworkCore.dll new file mode 100644 index 0000000..1e9773e Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.EntityFrameworkCore.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Caching.Memory.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Caching.Memory.dll new file mode 100644 index 0000000..077b1b6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..81ed3de Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.DependencyInjection.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..bd71a2b Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.DependencyModel.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..8905537 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.DependencyModel.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Localization.Abstractions.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Localization.Abstractions.dll new file mode 100644 index 0000000..8766429 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Localization.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Localization.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Localization.dll new file mode 100644 index 0000000..eb2d5db Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Localization.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Logging.Abstractions.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..f9d1dc6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Logging.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..35905b6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Logging.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Options.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..a7b3f21 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Extensions.Options.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Graph.Core.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Graph.Core.dll new file mode 100644 index 0000000..c97ca10 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Graph.Core.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Graph.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Graph.dll new file mode 100644 index 0000000..5f36dad Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Graph.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Identity.Client.Extensions.Msal.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Identity.Client.Extensions.Msal.dll new file mode 100644 index 0000000..a401863 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Identity.Client.Extensions.Msal.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Identity.Client.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Identity.Client.dll new file mode 100644 index 0000000..49b6979 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Identity.Client.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Abstractions.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Abstractions.dll new file mode 100644 index 0000000..9634859 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.JsonWebTokens.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..255c7c7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Logging.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..1df208a Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Logging.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..4d6ff2f Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Protocols.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..e4d4c63 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Protocols.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Tokens.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..51cfca8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Tokens.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Validators.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Validators.dll new file mode 100644 index 0000000..29e99ca Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.IdentityModel.Validators.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.JSInterop.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.JSInterop.dll new file mode 100644 index 0000000..8e7a162 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.JSInterop.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Abstractions.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Abstractions.dll new file mode 100644 index 0000000..d06e8a0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Authentication.Azure.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Authentication.Azure.dll new file mode 100644 index 0000000..39cfa97 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Authentication.Azure.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Http.HttpClientLibrary.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Http.HttpClientLibrary.dll new file mode 100644 index 0000000..4a6ea19 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Http.HttpClientLibrary.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Serialization.Form.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Serialization.Form.dll new file mode 100644 index 0000000..e0cca44 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Serialization.Form.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Serialization.Json.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Serialization.Json.dll new file mode 100644 index 0000000..cf2e11e Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Serialization.Json.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Serialization.Multipart.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Serialization.Multipart.dll new file mode 100644 index 0000000..aa260a7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Serialization.Multipart.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Serialization.Text.dll b/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Serialization.Text.dll new file mode 100644 index 0000000..09e8c49 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Microsoft.Kiota.Serialization.Text.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Mono.TextTemplating.dll b/TrafagSalesExporter/build_verify/central_export/Mono.TextTemplating.dll new file mode 100644 index 0000000..d5a4b3c Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Mono.TextTemplating.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/MudBlazor.dll b/TrafagSalesExporter/build_verify/central_export/MudBlazor.dll new file mode 100644 index 0000000..37dec92 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/MudBlazor.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/RBush.dll b/TrafagSalesExporter/build_verify/central_export/RBush.dll new file mode 100644 index 0000000..a4a305b Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/RBush.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/SQLitePCLRaw.batteries_v2.dll b/TrafagSalesExporter/build_verify/central_export/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..f9eb46b Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/SQLitePCLRaw.batteries_v2.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/SQLitePCLRaw.core.dll b/TrafagSalesExporter/build_verify/central_export/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..556d40f Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/SQLitePCLRaw.core.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/SQLitePCLRaw.provider.e_sqlite3.dll b/TrafagSalesExporter/build_verify/central_export/SQLitePCLRaw.provider.e_sqlite3.dll new file mode 100644 index 0000000..fc5919d Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/SQLitePCLRaw.provider.e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Sap.Data.Hana.Core.v2.1.dll b/TrafagSalesExporter/build_verify/central_export/Sap.Data.Hana.Core.v2.1.dll new file mode 100644 index 0000000..f385978 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Sap.Data.Hana.Core.v2.1.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Sap.Data.Hana.Core.v2.1.pdb b/TrafagSalesExporter/build_verify/central_export/Sap.Data.Hana.Core.v2.1.pdb new file mode 100644 index 0000000..5b49f2a Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Sap.Data.Hana.Core.v2.1.pdb differ diff --git a/TrafagSalesExporter/build_verify/central_export/SixLabors.Fonts.dll b/TrafagSalesExporter/build_verify/central_export/SixLabors.Fonts.dll new file mode 100644 index 0000000..281d8a7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/SixLabors.Fonts.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/Std.UriTemplate.dll b/TrafagSalesExporter/build_verify/central_export/Std.UriTemplate.dll new file mode 100644 index 0000000..104cbae Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/Std.UriTemplate.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/System.ClientModel.dll b/TrafagSalesExporter/build_verify/central_export/System.ClientModel.dll new file mode 100644 index 0000000..2657496 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/System.ClientModel.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/System.CodeDom.dll b/TrafagSalesExporter/build_verify/central_export/System.CodeDom.dll new file mode 100644 index 0000000..3128b6a Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/System.CodeDom.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/System.Composition.AttributedModel.dll b/TrafagSalesExporter/build_verify/central_export/System.Composition.AttributedModel.dll new file mode 100644 index 0000000..d37283b Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/System.Composition.AttributedModel.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/System.Composition.Convention.dll b/TrafagSalesExporter/build_verify/central_export/System.Composition.Convention.dll new file mode 100644 index 0000000..b6fa4ab Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/System.Composition.Convention.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/System.Composition.Hosting.dll b/TrafagSalesExporter/build_verify/central_export/System.Composition.Hosting.dll new file mode 100644 index 0000000..c67f1c0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/System.Composition.Hosting.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/System.Composition.Runtime.dll b/TrafagSalesExporter/build_verify/central_export/System.Composition.Runtime.dll new file mode 100644 index 0000000..2a4b38c Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/System.Composition.Runtime.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/System.Composition.TypedParts.dll b/TrafagSalesExporter/build_verify/central_export/System.Composition.TypedParts.dll new file mode 100644 index 0000000..7c0c780 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/System.Composition.TypedParts.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/System.IO.Packaging.dll b/TrafagSalesExporter/build_verify/central_export/System.IO.Packaging.dll new file mode 100644 index 0000000..eb95db7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/System.IO.Packaging.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/System.IdentityModel.Tokens.Jwt.dll b/TrafagSalesExporter/build_verify/central_export/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..442c7a3 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/System.Memory.Data.dll b/TrafagSalesExporter/build_verify/central_export/System.Memory.Data.dll new file mode 100644 index 0000000..a9bb64f Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/System.Memory.Data.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/System.Security.Cryptography.ProtectedData.dll b/TrafagSalesExporter/build_verify/central_export/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..3feb9f9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/System.Security.Cryptography.ProtectedData.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.deps.json b/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.deps.json new file mode 100644 index 0000000..b097214 --- /dev/null +++ b/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.deps.json @@ -0,0 +1,1850 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "TrafagSalesExporter/1.0.0": { + "dependencies": { + "Azure.Identity": "1.13.1", + "ClosedXML": "0.104.2", + "Microsoft.EntityFrameworkCore.Design": "8.0.11", + "Microsoft.EntityFrameworkCore.Sqlite": "8.0.11", + "Microsoft.Graph": "5.80.0", + "MudBlazor": "7.15.0", + "Sap.Data.Hana.Core.v2.1": "2.7.26.0" + }, + "runtime": { + "TrafagSalesExporter.dll": {} + } + }, + "Azure.Core/1.44.1": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "System.ClientModel": "1.1.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "6.0.0", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "6.0.0", + "System.Text.Json": "6.0.10", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "assemblyVersion": "1.44.1.0", + "fileVersion": "1.4400.124.50905" + } + } + }, + "Azure.Identity/1.13.1": { + "dependencies": { + "Azure.Core": "1.44.1", + "Microsoft.Identity.Client": "4.66.1", + "Microsoft.Identity.Client.Extensions.Msal": "4.66.1", + "System.Memory": "4.5.5", + "System.Text.Json": "6.0.10", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "assemblyVersion": "1.13.1.0", + "fileVersion": "1.1300.124.52405" + } + } + }, + "ClosedXML/0.104.2": { + "dependencies": { + "ClosedXML.Parser": "1.2.0", + "DocumentFormat.OpenXml": "3.1.1", + "ExcelNumberFormat": "1.1.0", + "RBush": "4.0.0", + "SixLabors.Fonts": "1.0.0" + }, + "runtime": { + "lib/netstandard2.1/ClosedXML.dll": { + "assemblyVersion": "0.104.2.0", + "fileVersion": "0.104.2.0" + } + } + }, + "ClosedXML.Parser/1.2.0": { + "runtime": { + "lib/netstandard2.1/ClosedXML.Parser.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "DocumentFormat.OpenXml/3.1.1": { + "dependencies": { + "DocumentFormat.OpenXml.Framework": "3.1.1" + }, + "runtime": { + "lib/net8.0/DocumentFormat.OpenXml.dll": { + "assemblyVersion": "3.1.1.0", + "fileVersion": "3.1.1.0" + } + } + }, + "DocumentFormat.OpenXml.Framework/3.1.1": { + "dependencies": { + "System.IO.Packaging": "8.0.1" + }, + "runtime": { + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll": { + "assemblyVersion": "3.1.1.0", + "fileVersion": "3.1.1.0" + } + } + }, + "ExcelNumberFormat/1.1.0": { + "runtime": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.0" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.Authorization/8.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "8.0.8", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.824.36908" + } + } + }, + "Microsoft.AspNetCore.Components/8.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "8.0.8", + "Microsoft.AspNetCore.Components.Analyzers": "8.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.824.36908" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/8.0.8": {}, + "Microsoft.AspNetCore.Components.Forms/8.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Components": "8.0.8" + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Components.Forms.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.824.36908" + } + } + }, + "Microsoft.AspNetCore.Components.Web/8.0.8": { + "dependencies": { + "Microsoft.AspNetCore.Components": "8.0.8", + "Microsoft.AspNetCore.Components.Forms": "8.0.8", + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Primitives": "8.0.0", + "Microsoft.JSInterop": "8.0.8", + "System.IO.Pipelines": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.824.36908" + } + } + }, + "Microsoft.AspNetCore.Metadata/8.0.8": { + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.824.36908" + } + } + }, + "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.Bcl.Memory/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Bcl.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.3": {}, + "Microsoft.CodeAnalysis.Common/4.5.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.3", + "System.Collections.Immutable": "6.0.0", + "System.Reflection.Metadata": "6.0.1", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.5.0.0", + "fileVersion": "4.500.23.10905" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.5.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.5.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.5.0.0", + "fileVersion": "4.500.23.10905" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.5.0", + "Microsoft.CodeAnalysis.Common": "4.5.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.5.0.0", + "fileVersion": "4.500.23.10905" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "Microsoft.CodeAnalysis.Common": "4.5.0", + "System.Composition": "6.0.0", + "System.IO.Pipelines": "8.0.0", + "System.Threading.Channels": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.5.0.0", + "fileVersion": "4.500.23.10905" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Sqlite.Core/8.0.11": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "8.0.11.0", + "fileVersion": "8.0.1124.52104" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.11": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.11", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.11", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "8.0.11.0", + "fileVersion": "8.0.1124.52104" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.11": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "8.0.11.0", + "fileVersion": "8.0.1124.52104" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.11": {}, + "Microsoft.EntityFrameworkCore.Design/8.0.11": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.11", + "Microsoft.Extensions.DependencyModel": "8.0.2", + "Mono.TextTemplating": "2.2.1" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "8.0.11.0", + "fileVersion": "8.0.1124.52104" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.11": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.11", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "8.0.11.0", + "fileVersion": "8.0.1124.52104" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.11": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.11", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.11": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.11", + "Microsoft.EntityFrameworkCore.Relational": "8.0.11", + "Microsoft.Extensions.DependencyModel": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "assemblyVersion": "8.0.11.0", + "fileVersion": "8.0.1124.52104" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "8.0.0.2", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Localization/8.0.8": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Localization.Abstractions": "8.0.8", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Localization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.824.36908" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/8.0.8": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.824.36908" + } + } + }, + "Microsoft.Extensions.Logging/8.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Options/8.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.224.6711" + } + } + }, + "Microsoft.Extensions.Primitives/8.0.0": {}, + "Microsoft.Graph/5.80.0": { + "dependencies": { + "Microsoft.Graph.Core": "3.2.4" + }, + "runtime": { + "lib/net5.0/Microsoft.Graph.dll": { + "assemblyVersion": "5.80.0.0", + "fileVersion": "5.80.0.0" + } + } + }, + "Microsoft.Graph.Core/3.2.4": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.6.1", + "Microsoft.IdentityModel.Validators": "8.6.1", + "Microsoft.Kiota.Abstractions": "1.17.1", + "Microsoft.Kiota.Authentication.Azure": "1.17.1", + "Microsoft.Kiota.Http.HttpClientLibrary": "1.17.1", + "Microsoft.Kiota.Serialization.Form": "1.17.1", + "Microsoft.Kiota.Serialization.Json": "1.17.1", + "Microsoft.Kiota.Serialization.Multipart": "1.17.1", + "Microsoft.Kiota.Serialization.Text": "1.17.1" + }, + "runtime": { + "lib/net6.0/Microsoft.Graph.Core.dll": { + "assemblyVersion": "3.2.4.0", + "fileVersion": "3.2.4.0" + } + } + }, + "Microsoft.Identity.Client/4.66.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.6.1", + "System.Diagnostics.DiagnosticSource": "6.0.1" + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.66.1.0", + "fileVersion": "4.66.1.0" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.66.1": { + "dependencies": { + "Microsoft.Identity.Client": "4.66.1", + "System.Security.Cryptography.ProtectedData": "4.5.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "assemblyVersion": "4.66.1.0", + "fileVersion": "4.66.1.0" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.6.1": { + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.6.1.0", + "fileVersion": "8.6.1.60307" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.6.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.6.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.6.1.0", + "fileVersion": "8.6.1.60307" + } + } + }, + "Microsoft.IdentityModel.Logging/8.6.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.6.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.6.1.0", + "fileVersion": "8.6.1.60307" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.6.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.6.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.6.1.0", + "fileVersion": "8.6.1.60307" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.6.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.6.1", + "System.IdentityModel.Tokens.Jwt": "8.6.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.6.1.0", + "fileVersion": "8.6.1.60307" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.6.1": { + "dependencies": { + "Microsoft.Bcl.Memory": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.IdentityModel.Logging": "8.6.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.6.1.0", + "fileVersion": "8.6.1.60307" + } + } + }, + "Microsoft.IdentityModel.Validators/8.6.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.6.1", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.6.1", + "Microsoft.IdentityModel.Tokens": "8.6.1", + "System.IdentityModel.Tokens.Jwt": "8.6.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Validators.dll": { + "assemblyVersion": "8.6.1.0", + "fileVersion": "8.6.1.60307" + } + } + }, + "Microsoft.JSInterop/8.0.8": { + "runtime": { + "lib/net8.0/Microsoft.JSInterop.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.824.36908" + } + } + }, + "Microsoft.Kiota.Abstractions/1.17.1": { + "dependencies": { + "Std.UriTemplate": "2.0.1" + }, + "runtime": { + "lib/net8.0/Microsoft.Kiota.Abstractions.dll": { + "assemblyVersion": "1.17.1.0", + "fileVersion": "1.17.1.0" + } + } + }, + "Microsoft.Kiota.Authentication.Azure/1.17.1": { + "dependencies": { + "Azure.Core": "1.44.1", + "Microsoft.Kiota.Abstractions": "1.17.1" + }, + "runtime": { + "lib/net8.0/Microsoft.Kiota.Authentication.Azure.dll": { + "assemblyVersion": "1.17.1.0", + "fileVersion": "1.17.1.0" + } + } + }, + "Microsoft.Kiota.Http.HttpClientLibrary/1.17.1": { + "dependencies": { + "Microsoft.Kiota.Abstractions": "1.17.1" + }, + "runtime": { + "lib/net8.0/Microsoft.Kiota.Http.HttpClientLibrary.dll": { + "assemblyVersion": "1.17.1.0", + "fileVersion": "1.17.1.0" + } + } + }, + "Microsoft.Kiota.Serialization.Form/1.17.1": { + "dependencies": { + "Microsoft.Kiota.Abstractions": "1.17.1" + }, + "runtime": { + "lib/net8.0/Microsoft.Kiota.Serialization.Form.dll": { + "assemblyVersion": "1.17.1.0", + "fileVersion": "1.17.1.0" + } + } + }, + "Microsoft.Kiota.Serialization.Json/1.17.1": { + "dependencies": { + "Microsoft.Kiota.Abstractions": "1.17.1" + }, + "runtime": { + "lib/net8.0/Microsoft.Kiota.Serialization.Json.dll": { + "assemblyVersion": "1.17.1.0", + "fileVersion": "1.17.1.0" + } + } + }, + "Microsoft.Kiota.Serialization.Multipart/1.17.1": { + "dependencies": { + "Microsoft.Kiota.Abstractions": "1.17.1" + }, + "runtime": { + "lib/net8.0/Microsoft.Kiota.Serialization.Multipart.dll": { + "assemblyVersion": "1.17.1.0", + "fileVersion": "1.17.1.0" + } + } + }, + "Microsoft.Kiota.Serialization.Text/1.17.1": { + "dependencies": { + "Microsoft.Kiota.Abstractions": "1.17.1" + }, + "runtime": { + "lib/net8.0/Microsoft.Kiota.Serialization.Text.dll": { + "assemblyVersion": "1.17.1.0", + "fileVersion": "1.17.1.0" + } + } + }, + "Mono.TextTemplating/2.2.1": { + "dependencies": { + "System.CodeDom": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/Mono.TextTemplating.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.1.1" + } + } + }, + "MudBlazor/7.15.0": { + "dependencies": { + "Microsoft.AspNetCore.Components": "8.0.8", + "Microsoft.AspNetCore.Components.Web": "8.0.8", + "Microsoft.Extensions.Localization": "8.0.8" + }, + "runtime": { + "lib/net8.0/MudBlazor.dll": { + "assemblyVersion": "7.15.0.0", + "fileVersion": "7.15.0.0" + } + } + }, + "RBush/4.0.0": { + "runtime": { + "lib/net8.0/RBush.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "SixLabors.Fonts/1.0.0": { + "runtime": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.core/2.1.6": { + "dependencies": { + "System.Memory": "4.5.5" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "rid": "browser-wasm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "rid": "linux-ppc64le", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "rid": "linux-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "Std.UriTemplate/2.0.1": { + "runtime": { + "lib/net5.0/Std.UriTemplate.dll": { + "assemblyVersion": "2.0.1.0", + "fileVersion": "2.0.1.0" + } + } + }, + "System.ClientModel/1.1.0": { + "dependencies": { + "System.Memory.Data": "6.0.0", + "System.Text.Json": "6.0.10" + }, + "runtime": { + "lib/net6.0/System.ClientModel.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.100.24.46703" + } + } + }, + "System.CodeDom/4.4.0": { + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.25519.3" + } + } + }, + "System.Collections.Immutable/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Composition/6.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "6.0.0", + "System.Composition.Convention": "6.0.0", + "System.Composition.Hosting": "6.0.0", + "System.Composition.Runtime": "6.0.0", + "System.Composition.TypedParts": "6.0.0" + } + }, + "System.Composition.AttributedModel/6.0.0": { + "runtime": { + "lib/net6.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition.Convention/6.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Composition.Convention.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition.Hosting/6.0.0": { + "dependencies": { + "System.Composition.Runtime": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Composition.Hosting.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition.Runtime/6.0.0": { + "runtime": { + "lib/net6.0/System.Composition.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition.TypedParts/6.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "6.0.0", + "System.Composition.Hosting": "6.0.0", + "System.Composition.Runtime": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Diagnostics.DiagnosticSource/6.0.1": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.IdentityModel.Tokens.Jwt/8.6.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.6.1", + "Microsoft.IdentityModel.Tokens": "8.6.1" + }, + "runtime": { + "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.6.1.0", + "fileVersion": "8.6.1.60307" + } + } + }, + "System.IO.Packaging/8.0.1": { + "runtime": { + "lib/net8.0/System.IO.Packaging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "System.IO.Pipelines/8.0.0": {}, + "System.Memory/4.5.5": {}, + "System.Memory.Data/6.0.0": { + "dependencies": { + "System.Text.Json": "6.0.10" + }, + "runtime": { + "lib/net6.0/System.Memory.Data.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Numerics.Vectors/4.5.0": {}, + "System.Reflection.Metadata/6.0.1": { + "dependencies": { + "System.Collections.Immutable": "6.0.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.6.26515.6" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.6.26515.6" + } + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Json/6.0.10": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + } + }, + "System.Threading.Channels/6.0.0": {}, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "Sap.Data.Hana.Core.v2.1/2.7.26.0": { + "runtime": { + "Sap.Data.Hana.Core.v2.1.dll": { + "assemblyVersion": "2.7.26.0", + "fileVersion": "2.7.26.0" + } + } + } + } + }, + "libraries": { + "TrafagSalesExporter/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Azure.Core/1.44.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YyznXLQZCregzHvioip07/BkzjuWNXogJEVz9T5W6TwjNr17ax41YGzYMptlo2G10oLCuVPoyva62y0SIRDixg==", + "path": "azure.core/1.44.1", + "hashPath": "azure.core.1.44.1.nupkg.sha512" + }, + "Azure.Identity/1.13.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4eeK9XztjTmvA4WN+qAvlUCSxSv45+LqTMeC8XT2giGGZHKthTMU2IuXcHjAOf5VLH3wE3Bo6EwhIcJxVB8RmQ==", + "path": "azure.identity/1.13.1", + "hashPath": "azure.identity.1.13.1.nupkg.sha512" + }, + "ClosedXML/0.104.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gOkSjQ152MhpKmw70cBkJV+FnaZAWzDwM36luRf/7FlWYnNeH++9XYdGTd0Y4KQlVPkKVxy948M5MMsnsGC4GQ==", + "path": "closedxml/0.104.2", + "hashPath": "closedxml.0.104.2.nupkg.sha512" + }, + "ClosedXML.Parser/1.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w+/0tsxABS3lkSH8EUlA7IGme+mq5T/Puf3DbOiTckmSuUpAUO2LK29oXYByCcWkBv6wcRHxgWlQb1lxkwI0Tw==", + "path": "closedxml.parser/1.2.0", + "hashPath": "closedxml.parser.1.2.0.nupkg.sha512" + }, + "DocumentFormat.OpenXml/3.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2z9QBzeTLNNKWM9SaOSDMegfQk/7hDuElOsmF77pKZMkFRP/GHA/W/4yOAQD9kn15N/FsFxHn3QVYkatuZghiA==", + "path": "documentformat.openxml/3.1.1", + "hashPath": "documentformat.openxml.3.1.1.nupkg.sha512" + }, + "DocumentFormat.OpenXml.Framework/3.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6APEp/ElZV58S/4v8mf4Ke3ONEDORs64MqdD64Z7wWpcHANB9oovQsGIwtqjnKihulOj7T0a6IxHIHOfMqKOng==", + "path": "documentformat.openxml.framework/3.1.1", + "hashPath": "documentformat.openxml.framework.3.1.1.nupkg.sha512" + }, + "ExcelNumberFormat/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-R3BVHPs9O+RkExbZYTGT0+9HLbi8ZrNij1Yziyw6znd3J7P3uoIR07uwTLGOogtz1p6+0sna66eBoXu7tBiVQA==", + "path": "excelnumberformat/1.1.0", + "hashPath": "excelnumberformat.1.1.0.nupkg.sha512" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/8.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e+ehkJTx0bqUb9zzM9ohV830LhoK3fy5lfVGPWAozbq6I2rJpyq7L0OUgEGNEQLMTzawkDjpNlJ4WU1ck/TDjw==", + "path": "microsoft.aspnetcore.authorization/8.0.8", + "hashPath": "microsoft.aspnetcore.authorization.8.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components/8.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VszyvGli+bgbt6gANOPSx8dzHWIH8qrDmWaNzb0GcU8MDKi2eULNW4ga+xyj7ApOYDLZA2V1FL4710Edw0Om4g==", + "path": "microsoft.aspnetcore.components/8.0.8", + "hashPath": "microsoft.aspnetcore.components.8.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Analyzers/8.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PKujmeqEO8fY/U5bWoww63yMF4XqjSnrq0cP4fXUyz4JVYTkh+MZEFktfLaoVaGU4JbtUNjJFvEYA96H8lbb8Q==", + "path": "microsoft.aspnetcore.components.analyzers/8.0.8", + "hashPath": "microsoft.aspnetcore.components.analyzers.8.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Forms/8.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-81P0TqjN+Q52QZbMje1Cirb7DOPKBW8CiemLo9x0KITWEGofdNJJECK1FPoMfUkgyaOknuCRQy0L+6G3K6+rPg==", + "path": "microsoft.aspnetcore.components.forms/8.0.8", + "hashPath": "microsoft.aspnetcore.components.forms.8.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Components.Web/8.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PX6JYvx2A5R1cQNLiTMMcm+7zvloVCGxvuRf24Ezaj1aUvZDYnSfyNkD2gyVun7AizGAn+x3QYr4mBfbZ9L5TA==", + "path": "microsoft.aspnetcore.components.web/8.0.8", + "hashPath": "microsoft.aspnetcore.components.web.8.0.8.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/8.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4WSCv7ddawjabLZ7hj0Ai7hTzFYLw5PsvHVKrJkuBgrv+blELbIDMVj7b5q7PZs7Xvz0W0ViKY/rcVkqD0D5yQ==", + "path": "microsoft.aspnetcore.metadata/8.0.8", + "hashPath": "microsoft.aspnetcore.metadata.8.0.8.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.Bcl.Memory/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bTUtGfpGyJnohQzjdXbtc7MqNzkv7CWUSRz54+ucNm0i32rZiIU0VdVPHDBShOl1qhVKRjW8mnEBz3d2vH93tQ==", + "path": "microsoft.bcl.memory/9.0.0", + "hashPath": "microsoft.bcl.memory.9.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", + "path": "microsoft.codeanalysis.analyzers/3.3.3", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==", + "path": "microsoft.codeanalysis.common/4.5.0", + "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==", + "path": "microsoft.codeanalysis.csharp/4.5.0", + "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==", + "path": "microsoft.codeanalysis.workspaces.common/4.5.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/8.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PrDkI9SeU/MEP/IHriczeYmRVbzEcfp66UlZRjL5ikHIJGIYOrby55GoehLCJzJiTwJ+rGkjSRctZnWgfC95fg==", + "path": "microsoft.data.sqlite.core/8.0.11", + "hashPath": "microsoft.data.sqlite.core.8.0.11.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/8.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-stbjWBTtpQ1HtqXMFyKnXFTr76PvaOHI2b2h85JqBi3eZr00nspvR/a90Zwh8CQ4rVawqLiTG0+0yZQWaav+sQ==", + "path": "microsoft.entityframeworkcore/8.0.11", + "hashPath": "microsoft.entityframeworkcore.8.0.11.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-++zY0Ea724ku1jptWJmF7jm3I4IXTexfT4qi1ETcSFFF7qj+qm6rRgN7mTuKkwIETuXk0ikfzudryRjUGrrNKQ==", + "path": "microsoft.entityframeworkcore.abstractions/8.0.11", + "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.11.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NI/AJQjtC7qgWM8Nr85sRkwlog2AnFer5RKP8xTUH0RuPF3nN0tGXBEeYJOLZWp+/+M/C6O7MMDRhKRE8bZwIA==", + "path": "microsoft.entityframeworkcore.analyzers/8.0.11", + "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.11.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/8.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KxOvpbaKiUmbLvenr0T/4F1Vdm0Sq+iajLbesQK7/WKB/Dx+FQHCZ0f5jCXrVWK2QKF9eHzQ5JPA1L6hcb25FQ==", + "path": "microsoft.entityframeworkcore.design/8.0.11", + "hashPath": "microsoft.entityframeworkcore.design.8.0.11.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3TuuW3i5I4Ro0yoaHmi2MqEDGObOVuhLaMEnd/heaLB1fcvm4fu4PevmC4BOWnI0vo176AIlV5o4rEQciLoohw==", + "path": "microsoft.entityframeworkcore.relational/8.0.11", + "hashPath": "microsoft.entityframeworkcore.relational.8.0.11.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HJN+xx8lomTIq7SpshnUzHt7uo1/AOvnPWjXsOzyCsoYMEpfRKjxsJobcHu8Qpvd2mwzZB/mzjPUE8XeuGiCGA==", + "path": "microsoft.entityframeworkcore.sqlite/8.0.11", + "hashPath": "microsoft.entityframeworkcore.sqlite.8.0.11.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wvC/xpis//IG9qvfMbMFMjhrM+P7choZ23CHBRfQyfmIkOVZLBtzM6nestbDdAv3eGnJym1/m0o0sc7YXlL0yg==", + "path": "microsoft.entityframeworkcore.sqlite.core/8.0.11", + "hashPath": "microsoft.entityframeworkcore.sqlite.core.8.0.11.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", + "path": "microsoft.extensions.caching.memory/8.0.1", + "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", + "path": "microsoft.extensions.dependencyinjection/8.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", + "path": "microsoft.extensions.dependencymodel/8.0.2", + "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Localization/8.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-n32ZGmc2UOv9R/xsBHQPOxBsqCSAAJSoMtFqoQ8zOegB2P+H6+773OyCWg4jRBkO/3dmCyBJXB0yLAOVW2/C/w==", + "path": "microsoft.extensions.localization/8.0.8", + "hashPath": "microsoft.extensions.localization.8.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Localization.Abstractions/8.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WYIsqP/A6dH/LWJznrvgoNPc7Q+CUJD0E78765GL3aonBtyFK1BKtPzBvvlnrr3SVqSO2r6xJCLgCEiCMG1gfA==", + "path": "microsoft.extensions.localization.abstractions/8.0.8", + "hashPath": "microsoft.extensions.localization.abstractions.8.0.8.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", + "path": "microsoft.extensions.logging/8.0.1", + "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Options/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", + "path": "microsoft.extensions.options/8.0.2", + "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "path": "microsoft.extensions.primitives/8.0.0", + "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" + }, + "Microsoft.Graph/5.80.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l1f96i3khMM6WiHq/XahhVoP0zOcl77p+okIAvKS+6KltjWnFi/Bx8NSTTK/cDxIDpUZCE0snXLb6Hn+luKM8w==", + "path": "microsoft.graph/5.80.0", + "hashPath": "microsoft.graph.5.80.0.nupkg.sha512" + }, + "Microsoft.Graph.Core/3.2.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0kBbgRiWUrrc7Um0oDcXl9t8Hxzgoz9SddErRDhqdDm4TWDlT8ItYuIfjwoFPHO1O51kwkDtTxzDRwZThbW5Uw==", + "path": "microsoft.graph.core/3.2.4", + "hashPath": "microsoft.graph.core.3.2.4.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.66.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mE+m3pZ7zSKocSubKXxwZcUrCzLflC86IdLxrVjS8tialy0b1L+aECBqRBC/ykcPlB4y7skg49TaTiA+O2UfDw==", + "path": "microsoft.identity.client/4.66.1", + "hashPath": "microsoft.identity.client.4.66.1.nupkg.sha512" + }, + "Microsoft.Identity.Client.Extensions.Msal/4.66.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-osgt1J9Rve3LO7wXqpWoFx9UFjl0oeqoUMK/xEru7dvafQ28RgV1A17CoCGCCRSUbgDQ4Arg5FgGK2lQ3lXR4A==", + "path": "microsoft.identity.client.extensions.msal/4.66.1", + "hashPath": "microsoft.identity.client.extensions.msal.4.66.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OwmvCXYTttrxV3qT7QKDkoQP4/DB4RWjTwEqV+dNfb2opHn29WGDzoF+r4BVFQVy+BDYMhRlhIp8g3jSyJd+4Q==", + "path": "microsoft.identitymodel.abstractions/8.6.1", + "hashPath": "microsoft.identitymodel.abstractions.8.6.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CAu9DWsPZVtnyE3bOJ83rlPWpahY37sP/0bIOdRlxS90W88zSI4V3FyoCDlXxV8+gloT+a247pwPXfSNjYyAxw==", + "path": "microsoft.identitymodel.jsonwebtokens/8.6.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.6.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BdWlVgJYdmcR9TMUOhaZ3vJyaRO7zr7xgK+cRT4R2q59Xl7JMmTB4ctb/VOsyDhxXb497jDNNvLwldp+2ZVBEg==", + "path": "microsoft.identitymodel.logging/8.6.1", + "hashPath": "microsoft.identitymodel.logging.8.6.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-myul8Jm/kWOtbD+yDeU0LfDPGHDDhNO2Q6U40QlmL0LAK0u1wYl76yKM3/Mzv7ceOkporWAQoAb85QIFnXraOA==", + "path": "microsoft.identitymodel.protocols/8.6.1", + "hashPath": "microsoft.identitymodel.protocols.8.6.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RTZIO/vZOPoy7dZzk3JfAD+EAWZg32xvcF7yNK8DcnIJy86OI1l2AIT7tZp0FG95cLrACV6X8xlc0StOfgB8ag==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.6.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.6.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FvED2com8LIFl9yFXneiX0uxNf9fuf8jKDFcvxC93qXOAfFa8fdLkCiur1vWF+PvgQHhsHVBe6CtDZHzsN8nCQ==", + "path": "microsoft.identitymodel.tokens/8.6.1", + "hashPath": "microsoft.identitymodel.tokens.8.6.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Validators/8.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FwST3dwbP4IgPsVVueMau8pHdFllesFSiZy+6L7/BtuflE8Tl1Z7MQW1/4ujmOOYQoBZCjdUQPzOFrC7NlqaBw==", + "path": "microsoft.identitymodel.validators/8.6.1", + "hashPath": "microsoft.identitymodel.validators.8.6.1.nupkg.sha512" + }, + "Microsoft.JSInterop/8.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vJhGdkYKvytLIMi5J2vpsyfjPKzSm7dnCfdGwjt4skvJcomlJyKDTA3wAwxIMuMbiWcOi1HuiQ6R+85C+qFJrw==", + "path": "microsoft.jsinterop/8.0.8", + "hashPath": "microsoft.jsinterop.8.0.8.nupkg.sha512" + }, + "Microsoft.Kiota.Abstractions/1.17.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nznpJUkC8F0iwZBael68nIS90g0wKgipJsLwarknd8hsGom0nJhyogZvIJUIzRWfNNSp0JhsxRYEW0WhvmppKw==", + "path": "microsoft.kiota.abstractions/1.17.1", + "hashPath": "microsoft.kiota.abstractions.1.17.1.nupkg.sha512" + }, + "Microsoft.Kiota.Authentication.Azure/1.17.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BkzhCChAH+IOfH7NnB86ynvRqPfHRDdxQw1XJ/ShwsG66A9dRLJ/T4K+d+U5l4EiaCllgXDN6+TUEc5KXMgOgw==", + "path": "microsoft.kiota.authentication.azure/1.17.1", + "hashPath": "microsoft.kiota.authentication.azure.1.17.1.nupkg.sha512" + }, + "Microsoft.Kiota.Http.HttpClientLibrary/1.17.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7cSZoEJ8G9YT3UxCILASZIB0GbmVnO3jdLDAMgMeU4O/SNemKtgA58pvKYJVrIZnJ9Up/mflQZFkGrSCOij4WQ==", + "path": "microsoft.kiota.http.httpclientlibrary/1.17.1", + "hashPath": "microsoft.kiota.http.httpclientlibrary.1.17.1.nupkg.sha512" + }, + "Microsoft.Kiota.Serialization.Form/1.17.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L35vwCSp01r7FoRunmSrKVfGnDBx1+3kcRnSMdleukRIAEeldnrNrjcitqVNSXhCqqnsVIT//B5dBvOCcZFCcA==", + "path": "microsoft.kiota.serialization.form/1.17.1", + "hashPath": "microsoft.kiota.serialization.form.1.17.1.nupkg.sha512" + }, + "Microsoft.Kiota.Serialization.Json/1.17.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EIUiZDVi1XS83k8ybtHMZr7NzHTtiIVGGIif6hiQV2CUEEhTQKxK/eggwajw8+CRfSPrs7ksvKNJleQnAIecHA==", + "path": "microsoft.kiota.serialization.json/1.17.1", + "hashPath": "microsoft.kiota.serialization.json.1.17.1.nupkg.sha512" + }, + "Microsoft.Kiota.Serialization.Multipart/1.17.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bbWg8iQrxBqPVRHfZnNuo1x9oHiRJJfRreTsAb9aO8ViO46wtB7niMgCWt69XG9iQdzAy9pKF8Quho14bNOAmg==", + "path": "microsoft.kiota.serialization.multipart/1.17.1", + "hashPath": "microsoft.kiota.serialization.multipart.1.17.1.nupkg.sha512" + }, + "Microsoft.Kiota.Serialization.Text/1.17.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dx1kIbBt21DqRt1tTPt3XkC8doEY1xFf+amPmPedCOM6X8IqdVs8xHymE/66aSWr5alufhEebu/bDxpR90M7mQ==", + "path": "microsoft.kiota.serialization.text/1.17.1", + "hashPath": "microsoft.kiota.serialization.text.1.17.1.nupkg.sha512" + }, + "Mono.TextTemplating/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", + "path": "mono.texttemplating/2.2.1", + "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512" + }, + "MudBlazor/7.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b2+hO7ZTGwsGhu9SoowuNe2ETeF1GzExpg/hIYR++rSh+vy4v/QD0iOsrATWv3LdFJXSgk3d1+XIr5srW3jBiA==", + "path": "mudblazor/7.15.0", + "hashPath": "mudblazor.7.15.0.nupkg.sha512" + }, + "RBush/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j3GeRxxLUQdc+UrZnvythdQxi3bd8ayn87VDjfGXrvfodF550n9wR6SgQvpo+YiAv3GJezsu6lK0l47rRqnbdg==", + "path": "rbush/4.0.0", + "hashPath": "rbush.4.0.0.nupkg.sha512" + }, + "SixLabors.Fonts/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LFQsCZlV0xlUyXAOMUo5kkSl+8zAQXXbbdwWchtk0B4o7zotZhQsQOcJUELGHdfPfm/xDAsz6hONAuV25bJaAg==", + "path": "sixlabors.fonts/1.0.0", + "hashPath": "sixlabors.fonts.1.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "path": "sqlitepclraw.core/2.1.6", + "hashPath": "sqlitepclraw.core.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512" + }, + "Std.UriTemplate/2.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ix5VXZwLfolwVHyGTSSJl6KIJ2le6E9YjLdZBMS1Xxzw7VJankRvQW8JoUL69tEgfcw+0qjgWrlxANrhvS0QCQ==", + "path": "std.uritemplate/2.0.1", + "hashPath": "std.uritemplate.2.0.1.nupkg.sha512" + }, + "System.ClientModel/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UocOlCkxLZrG2CKMAAImPcldJTxeesHnHGHwhJ0pNlZEvEXcWKuQvVOER2/NiOkJGRJk978SNdw3j6/7O9H1lg==", + "path": "system.clientmodel/1.1.0", + "hashPath": "system.clientmodel.1.1.0.nupkg.sha512" + }, + "System.CodeDom/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", + "path": "system.codedom/4.4.0", + "hashPath": "system.codedom.4.4.0.nupkg.sha512" + }, + "System.Collections.Immutable/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", + "path": "system.collections.immutable/6.0.0", + "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" + }, + "System.Composition/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==", + "path": "system.composition/6.0.0", + "hashPath": "system.composition.6.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==", + "path": "system.composition.attributedmodel/6.0.0", + "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512" + }, + "System.Composition.Convention/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==", + "path": "system.composition.convention/6.0.0", + "hashPath": "system.composition.convention.6.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==", + "path": "system.composition.hosting/6.0.0", + "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==", + "path": "system.composition.runtime/6.0.0", + "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==", + "path": "system.composition.typedparts/6.0.0", + "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==", + "path": "system.diagnostics.diagnosticsource/6.0.1", + "hashPath": "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EXL1Tj+pizswtHHPiQyNumrTo8XOLX7SoTm7Bz00/DyiIoG2H/kQItoajSvr1MYtvDNXveqULsoWDoJFI3aHzQ==", + "path": "system.identitymodel.tokens.jwt/8.6.1", + "hashPath": "system.identitymodel.tokens.jwt.8.6.1.nupkg.sha512" + }, + "System.IO.Packaging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KYkIOAvPexQOLDxPO2g0BVoWInnQhPpkFzRqvNrNrMhVT6kqhVr0zEb6KCHlptLFukxnZrjuMVAnxK7pOGUYrw==", + "path": "system.io.packaging/8.0.1", + "hashPath": "system.io.packaging.8.0.1.nupkg.sha512" + }, + "System.IO.Pipelines/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==", + "path": "system.io.pipelines/8.0.0", + "hashPath": "system.io.pipelines.8.0.0.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" + }, + "System.Memory.Data/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ntFHArH3I4Lpjf5m4DCXQHJuGwWPNVJPaAvM95Jy/u+2Yzt2ryiyIN04LAogkjP9DeRcEOiviAjQotfmPq/FrQ==", + "path": "system.memory.data/6.0.0", + "hashPath": "system.memory.data.6.0.0.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.Reflection.Metadata/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==", + "path": "system.reflection.metadata/6.0.1", + "hashPath": "system.reflection.metadata.6.0.1.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", + "path": "system.security.cryptography.protecteddata/4.5.0", + "hashPath": "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "path": "system.text.encoding.codepages/6.0.0", + "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.Json/6.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NSB0kDipxn2ychp88NXWfFRFlmi1bst/xynOutbnpEfRCT9JZkZ7KOmF/I/hNKo2dILiMGnqblm+j1sggdLB9g==", + "path": "system.text.json/6.0.10", + "hashPath": "system.text.json.6.0.10.nupkg.sha512" + }, + "System.Threading.Channels/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==", + "path": "system.threading.channels/6.0.0", + "hashPath": "system.threading.channels.6.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "Sap.Data.Hana.Core.v2.1/2.7.26.0": { + "type": "reference", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.dll b/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.dll new file mode 100644 index 0000000..48c2b11 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.pdb b/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.pdb new file mode 100644 index 0000000..964408c Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.pdb differ diff --git a/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json b/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json b/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json new file mode 100644 index 0000000..10cf121 --- /dev/null +++ b/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[{"Route":"_content/MudBlazor/MudBlazor.min.css","AssetFile":"_content/MudBlazor/MudBlazor.min.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"580975"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"2gItJ0j/o5RSWg7VYqCOBpSPI1dxTOG+mnEzWt7EvYw=\""},{"Name":"Last-Modified","Value":"Tue, 29 Oct 2024 20:30:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-2gItJ0j/o5RSWg7VYqCOBpSPI1dxTOG+mnEzWt7EvYw="}]},{"Route":"_content/MudBlazor/MudBlazor.min.js","AssetFile":"_content/MudBlazor/MudBlazor.min.js","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"49823"},{"Name":"Content-Type","Value":"text/javascript"},{"Name":"ETag","Value":"\"lz0Xidl9yw53lEeYs4XMU39zSRQzpCIyWOQSAG0/0GU=\""},{"Name":"Last-Modified","Value":"Tue, 29 Oct 2024 20:30:12 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-lz0Xidl9yw53lEeYs4XMU39zSRQzpCIyWOQSAG0/0GU="}]},{"Route":"css/app.css","AssetFile":"css/app.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"195"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bU+FYK0pc9dGtjX/nD1BXw4QGuuwaoW9VteAk/b6dxg=\""},{"Name":"Last-Modified","Value":"Mon, 13 Apr 2026 12:12:02 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-bU+FYK0pc9dGtjX/nD1BXw4QGuuwaoW9VteAk/b6dxg="}]},{"Route":"css/app.hvcp2ompdh.css","AssetFile":"css/app.css","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"195"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\"bU+FYK0pc9dGtjX/nD1BXw4QGuuwaoW9VteAk/b6dxg=\""},{"Name":"Last-Modified","Value":"Mon, 13 Apr 2026 12:12:02 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hvcp2ompdh"},{"Name":"integrity","Value":"sha256-bU+FYK0pc9dGtjX/nD1BXw4QGuuwaoW9VteAk/b6dxg="},{"Name":"label","Value":"css/app.css"}]},{"Route":"trafag.hgfqo1w32y.jpg","AssetFile":"trafag.jpg","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"5352"},{"Name":"Content-Type","Value":"image/jpeg"},{"Name":"ETag","Value":"\"P7OUfvce/0qhyBFF5Hv1Neq6EMn+fr2P3HGIfg3chbw=\""},{"Name":"Last-Modified","Value":"Mon, 13 Apr 2026 12:10:33 GMT"}],"EndpointProperties":[{"Name":"fingerprint","Value":"hgfqo1w32y"},{"Name":"integrity","Value":"sha256-P7OUfvce/0qhyBFF5Hv1Neq6EMn+fr2P3HGIfg3chbw="},{"Name":"label","Value":"trafag.jpg"}]},{"Route":"trafag.jpg","AssetFile":"trafag.jpg","Selectors":[],"ResponseHeaders":[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"5352"},{"Name":"Content-Type","Value":"image/jpeg"},{"Name":"ETag","Value":"\"P7OUfvce/0qhyBFF5Hv1Neq6EMn+fr2P3HGIfg3chbw=\""},{"Name":"Last-Modified","Value":"Mon, 13 Apr 2026 12:10:33 GMT"}],"EndpointProperties":[{"Name":"integrity","Value":"sha256-P7OUfvce/0qhyBFF5Hv1Neq6EMn+fr2P3HGIfg3chbw="}]}]} \ No newline at end of file diff --git a/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json b/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json new file mode 100644 index 0000000..57043fd --- /dev/null +++ b/TrafagSalesExporter/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\koi\\source\\repos\\Ai\\TrafagSalesExporter\\wwwroot\\","C:\\Users\\local-admin\\.nuget\\packages\\mudblazor\\7.15.0\\staticwebassets\\"],"Root":{"Children":{"trafag.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"trafag.jpg"},"Patterns":null},"css":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/app.css"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/TrafagSalesExporter/build_verify/central_export/appsettings.json b/TrafagSalesExporter/build_verify/central_export/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TrafagSalesExporter/build_verify/central_export/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TrafagSalesExporter/build_verify/central_export/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..b08ba21 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/central_export/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..eba2a5a Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..ff203e1 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/cs/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/central_export/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..fe89036 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..3dda417 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/central_export/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..4d3bd0a Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..c41bb1f Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/de/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/central_export/de/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..05845f2 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..1e5038d Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/central_export/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..456ac85 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..7bb3187 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/es/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/central_export/es/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..01edef3 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..de36d31 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/central_export/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..71d6443 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..23107b9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/fr/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/central_export/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..291cf9b Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..ef0d337 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/central_export/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..f266330 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..6affe5c Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/it/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/central_export/it/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..263bd04 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..a94da35 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/central_export/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..c94e8e6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..6e0e837 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/ja/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/central_export/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..212267a Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..1fae94d Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/central_export/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..b2e573c Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..fdbe6ff Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/ko/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/central_export/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..5fee24c Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..9533b36 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/central_export/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..fa25298 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..1297d58 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/pl/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/central_export/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..8af36a3 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..197797b Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/central_export/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..0fd342c Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..c09c2ab Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/pt-BR/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/central_export/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..d6eaab6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..ecfe483 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/central_export/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..e9133a5 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..baa7776 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/ru/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/central_export/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..74714d8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a b/TrafagSalesExporter/build_verify/central_export/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a new file mode 100644 index 0000000..ace30e6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/linux-arm/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..8520492 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/linux-arm64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..30b84ea Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/linux-armel/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..48de629 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/linux-mips64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..4f7d693 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/linux-musl-arm/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-musl-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..2c9dcda Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-musl-arm/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/linux-musl-arm64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-musl-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..53949cf Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-musl-arm64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/linux-musl-x64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..a043d7d Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/linux-ppc64le/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-ppc64le/native/libe_sqlite3.so new file mode 100644 index 0000000..3593c9b Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-ppc64le/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/linux-s390x/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-s390x/native/libe_sqlite3.so new file mode 100644 index 0000000..7e01b91 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-s390x/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/linux-x64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..a8f9ae0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/linux-x86/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..f9a9b69 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/central_export/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..e6612c5 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/central_export/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3ad1142 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/osx-arm64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/central_export/runtimes/osx-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..21a8f42 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/osx-arm64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/osx-x64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/central_export/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..ffaf82f Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/win-arm/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/central_export/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..454821f Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/win-arm64/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/central_export/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..70805d9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/win-x64/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/central_export/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..379665c Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/win-x86/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/central_export/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..c0e722d Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/TrafagSalesExporter/build_verify/central_export/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..73536ac Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..2fbf86e Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/central_export/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..4c57b04 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..b551e37 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/tr/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/central_export/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..8758fff Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..de4fe51 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/central_export/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..67b261c Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..c6b8d86 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/central_export/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..a14ec60 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..2d39791 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/central_export/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..86802cf Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/central_export/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..691a8fa Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/central_export/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/central_export/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..e8e4ee0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/central_export/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ