diff --git a/TrafagSalesExporter/Components/Pages/Settings.razor b/TrafagSalesExporter/Components/Pages/Settings.razor index d40e958..848d481 100644 --- a/TrafagSalesExporter/Components/Pages/Settings.razor +++ b/TrafagSalesExporter/Components/Pages/Settings.razor @@ -3,7 +3,7 @@ @using TrafagSalesExporter.Data @using TrafagSalesExporter.Services @inject IDbContextFactory DbFactory -@inject SharePointUploadService SpService +@inject ISharePointUploadService SpService @inject TimerBackgroundService TimerService @inject ISnackbar Snackbar diff --git a/TrafagSalesExporter/Components/Pages/Standorte.razor b/TrafagSalesExporter/Components/Pages/Standorte.razor index c82c636..48cbefc 100644 --- a/TrafagSalesExporter/Components/Pages/Standorte.razor +++ b/TrafagSalesExporter/Components/Pages/Standorte.razor @@ -3,7 +3,7 @@ @using TrafagSalesExporter.Data @using TrafagSalesExporter.Services @inject IDbContextFactory DbFactory -@inject HanaQueryService HanaService +@inject IHanaQueryService HanaService @inject ISnackbar Snackbar @inject IDialogService DialogService diff --git a/TrafagSalesExporter/Data/AppDbContext.cs b/TrafagSalesExporter/Data/AppDbContext.cs index f40ed85..d647eb5 100644 --- a/TrafagSalesExporter/Data/AppDbContext.cs +++ b/TrafagSalesExporter/Data/AppDbContext.cs @@ -1,4 +1,3 @@ -using System.Data; using Microsoft.EntityFrameworkCore; using TrafagSalesExporter.Models; @@ -14,102 +13,4 @@ public class AppDbContext : DbContext public DbSet ExportSettings => Set(); public DbSet ExportLogs => Set(); public DbSet FieldTransformationRules => Set(); - - /// - /// Fügt Spalten zu existierenden Tabellen hinzu, die bei neueren Versionen - /// hinzugekommen sind. EnsureCreated aktualisiert das Schema nicht automatisch. - /// - public static void EnsureSchema(AppDbContext db) - { - AddColumnIfMissing(db, "HanaServers", "DatabaseName", "TEXT NOT NULL DEFAULT ''"); - AddColumnIfMissing(db, "HanaServers", "UseSsl", "INTEGER NOT NULL DEFAULT 0"); - AddColumnIfMissing(db, "HanaServers", "ValidateCertificate", "INTEGER NOT NULL DEFAULT 0"); - AddColumnIfMissing(db, "HanaServers", "AdditionalParams", "TEXT NOT NULL DEFAULT ''"); - AddColumnIfMissing(db, "Sites", "SourceSystem", "TEXT NOT NULL DEFAULT 'SAP'"); - EnsureTransformationTable(db); - } - - private static void AddColumnIfMissing(AppDbContext db, string table, string column, string type) - { - var conn = db.Database.GetDbConnection(); - if (conn.State != ConnectionState.Open) conn.Open(); - - bool exists = false; - using (var cmd = conn.CreateCommand()) - { - cmd.CommandText = $"PRAGMA table_info({table})"; - using var reader = cmd.ExecuteReader(); - while (reader.Read()) - { - if (string.Equals(reader["name"]?.ToString(), column, StringComparison.OrdinalIgnoreCase)) - { - exists = true; - break; - } - } - } - - if (!exists) - { - using var alter = conn.CreateCommand(); - alter.CommandText = $"ALTER TABLE {table} ADD COLUMN {column} {type}"; - alter.ExecuteNonQuery(); - } - } - - private static void EnsureTransformationTable(AppDbContext db) - { - var conn = db.Database.GetDbConnection(); - if (conn.State != ConnectionState.Open) conn.Open(); - - using var cmd = conn.CreateCommand(); - cmd.CommandText = @" -CREATE TABLE IF NOT EXISTS FieldTransformationRules ( - Id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, - SourceSystem TEXT NOT NULL DEFAULT 'SAP', - SourceField TEXT NOT NULL, - TargetField TEXT NOT NULL, - TransformationType TEXT NOT NULL, - Argument TEXT NOT NULL DEFAULT '', - SortOrder INTEGER NOT NULL DEFAULT 0, - IsActive INTEGER NOT NULL DEFAULT 1 -);"; - cmd.ExecuteNonQuery(); - } - - public static void SeedIfEmpty(AppDbContext db) - { - if (db.HanaServers.Any()) return; - - var serverInternal = new HanaServer { Name = "Internal", Host = "travtrp0", Port = 30015, Username = "", Password = "" }; - var serverIndia = new HanaServer { Name = "India", Host = "20.197.20.60", Port = 30015, Username = "", Password = "" }; - db.HanaServers.AddRange(serverInternal, serverIndia); - db.SaveChanges(); - - db.Sites.AddRange( - new Site { HanaServerId = serverInternal.Id, Schema = "fr01_p", TSC = "TRFR", Land = "Frankreich", IsActive = true }, - new Site { HanaServerId = serverInternal.Id, Schema = "it01_p", TSC = "TRIT", Land = "Italien", IsActive = true }, - new Site { HanaServerId = serverInternal.Id, Schema = "us01_p", TSC = "TRUS", Land = "USA", IsActive = true }, - new Site { HanaServerId = serverIndia.Id, Schema = "TRAFAG_LIVE", TSC = "TRIN", Land = "Indien", IsActive = true } - ); - - db.SharePointConfigs.Add(new SharePointConfig - { - SiteUrl = "https://trafagag.sharepoint.com/sites/WorldwideBIPlatform", - ExportFolder = "/Shared Documents/Exports/", - TenantId = "", - ClientId = "", - ClientSecret = "" - }); - - db.ExportSettings.Add(new ExportSettings - { - DateFilter = "2025-01-01", - TimerHour = 3, - TimerMinute = 0, - TimerEnabled = true - }); - - db.SaveChanges(); - } } diff --git a/TrafagSalesExporter/Program.cs b/TrafagSalesExporter/Program.cs index 879d8e2..288d64f 100644 --- a/TrafagSalesExporter/Program.cs +++ b/TrafagSalesExporter/Program.cs @@ -13,10 +13,21 @@ builder.Services.AddMudServices(); builder.Services.AddDbContextFactory(options => options.UseSqlite("Data Source=trafag_exporter.db")); -builder.Services.AddSingleton(); -builder.Services.AddSingleton(); -builder.Services.AddSingleton(); -builder.Services.AddSingleton(); +builder.Services.AddSingleton(); +builder.Services.AddSingleton(); +builder.Services.AddSingleton(); +builder.Services.AddSingleton(); +builder.Services.AddSingleton(); +builder.Services.AddSingleton(); +builder.Services.AddSingleton(); +builder.Services.AddSingleton(); +builder.Services.AddSingleton(); +builder.Services.AddSingleton(); +builder.Services.AddSingleton(); +builder.Services.AddSingleton(); +builder.Services.AddSingleton(); +builder.Services.AddSingleton(); +builder.Services.AddSingleton(); builder.Services.AddSingleton(); builder.Services.AddSingleton(); builder.Services.AddHostedService(sp => sp.GetRequiredService()); @@ -25,11 +36,8 @@ var app = builder.Build(); using (var scope = app.Services.CreateScope()) { - var dbFactory = scope.ServiceProvider.GetRequiredService>(); - using var db = await dbFactory.CreateDbContextAsync(); - await db.Database.EnsureCreatedAsync(); - AppDbContext.EnsureSchema(db); - AppDbContext.SeedIfEmpty(db); + var databaseInitialization = scope.ServiceProvider.GetRequiredService(); + await databaseInitialization.InitializeAsync(); } if (!app.Environment.IsDevelopment()) diff --git a/TrafagSalesExporter/Services/ConsolidatedExportService.cs b/TrafagSalesExporter/Services/ConsolidatedExportService.cs new file mode 100644 index 0000000..2a800e9 --- /dev/null +++ b/TrafagSalesExporter/Services/ConsolidatedExportService.cs @@ -0,0 +1,54 @@ +using Microsoft.EntityFrameworkCore; +using TrafagSalesExporter.Data; +using TrafagSalesExporter.Models; + +namespace TrafagSalesExporter.Services; + +public class ConsolidatedExportService : IConsolidatedExportService +{ + private readonly IDbContextFactory _dbFactory; + private readonly IExcelExportService _excelService; + private readonly ISharePointUploadService _sharePointService; + + public ConsolidatedExportService( + IDbContextFactory dbFactory, + IExcelExportService excelService, + ISharePointUploadService sharePointService) + { + _dbFactory = dbFactory; + _excelService = excelService; + _sharePointService = sharePointService; + } + + public async Task ExportAsync(List records) + { + if (records.Count == 0) + return null; + + using var db = await _dbFactory.CreateDbContextAsync(); + var spConfig = await db.SharePointConfigs.FirstOrDefaultAsync(); + var outputDir = Path.Combine(AppContext.BaseDirectory, "output"); + var consolidatedPath = _excelService.CreateConsolidatedExcelFile( + outputDir, + DateTime.UtcNow.Date, + records + .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); + } + + return consolidatedPath; + } +} diff --git a/TrafagSalesExporter/Services/DatabaseInitializationService.cs b/TrafagSalesExporter/Services/DatabaseInitializationService.cs new file mode 100644 index 0000000..3c65a53 --- /dev/null +++ b/TrafagSalesExporter/Services/DatabaseInitializationService.cs @@ -0,0 +1,121 @@ +using System.Data; +using Microsoft.EntityFrameworkCore; +using TrafagSalesExporter.Data; +using TrafagSalesExporter.Models; + +namespace TrafagSalesExporter.Services; + +public class DatabaseInitializationService : IDatabaseInitializationService +{ + private readonly IDbContextFactory _dbFactory; + + public DatabaseInitializationService(IDbContextFactory dbFactory) + { + _dbFactory = dbFactory; + } + + public async Task InitializeAsync() + { + using var db = await _dbFactory.CreateDbContextAsync(); + await db.Database.EnsureCreatedAsync(); + EnsureSchema(db); + SeedIfEmpty(db); + } + + private static void EnsureSchema(AppDbContext db) + { + AddColumnIfMissing(db, "HanaServers", "DatabaseName", "TEXT NOT NULL DEFAULT ''"); + AddColumnIfMissing(db, "HanaServers", "UseSsl", "INTEGER NOT NULL DEFAULT 0"); + AddColumnIfMissing(db, "HanaServers", "ValidateCertificate", "INTEGER NOT NULL DEFAULT 0"); + AddColumnIfMissing(db, "HanaServers", "AdditionalParams", "TEXT NOT NULL DEFAULT ''"); + AddColumnIfMissing(db, "Sites", "SourceSystem", "TEXT NOT NULL DEFAULT 'SAP'"); + EnsureTransformationTable(db); + } + + private static void AddColumnIfMissing(AppDbContext db, string table, string column, string type) + { + var conn = db.Database.GetDbConnection(); + if (conn.State != ConnectionState.Open) + conn.Open(); + + var exists = false; + using (var cmd = conn.CreateCommand()) + { + cmd.CommandText = $"PRAGMA table_info({table})"; + using var reader = cmd.ExecuteReader(); + while (reader.Read()) + { + if (string.Equals(reader["name"]?.ToString(), column, StringComparison.OrdinalIgnoreCase)) + { + exists = true; + break; + } + } + } + + if (!exists) + { + using var alter = conn.CreateCommand(); + alter.CommandText = $"ALTER TABLE {table} ADD COLUMN {column} {type}"; + alter.ExecuteNonQuery(); + } + } + + private static void EnsureTransformationTable(AppDbContext db) + { + var conn = db.Database.GetDbConnection(); + if (conn.State != ConnectionState.Open) + conn.Open(); + + using var cmd = conn.CreateCommand(); + cmd.CommandText = @" +CREATE TABLE IF NOT EXISTS FieldTransformationRules ( + Id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, + SourceSystem TEXT NOT NULL DEFAULT 'SAP', + SourceField TEXT NOT NULL, + TargetField TEXT NOT NULL, + TransformationType TEXT NOT NULL, + Argument TEXT NOT NULL DEFAULT '', + SortOrder INTEGER NOT NULL DEFAULT 0, + IsActive INTEGER NOT NULL DEFAULT 1 +);"; + cmd.ExecuteNonQuery(); + } + + private static void SeedIfEmpty(AppDbContext db) + { + if (db.HanaServers.Any()) + return; + + var serverInternal = new HanaServer { Name = "Internal", Host = "travtrp0", Port = 30015, Username = "", Password = "" }; + var serverIndia = new HanaServer { Name = "India", Host = "20.197.20.60", Port = 30015, Username = "", Password = "" }; + db.HanaServers.AddRange(serverInternal, serverIndia); + db.SaveChanges(); + + db.Sites.AddRange( + new Site { HanaServerId = serverInternal.Id, Schema = "fr01_p", TSC = "TRFR", Land = "Frankreich", IsActive = true }, + new Site { HanaServerId = serverInternal.Id, Schema = "it01_p", TSC = "TRIT", Land = "Italien", IsActive = true }, + new Site { HanaServerId = serverInternal.Id, Schema = "us01_p", TSC = "TRUS", Land = "USA", IsActive = true }, + new Site { HanaServerId = serverIndia.Id, Schema = "TRAFAG_LIVE", TSC = "TRIN", Land = "Indien", IsActive = true } + ); + + db.SharePointConfigs.Add(new SharePointConfig + { + SiteUrl = "https://trafagag.sharepoint.com/sites/WorldwideBIPlatform", + ExportFolder = "/Shared Documents/Exports/", + TenantId = "", + ClientId = "", + ClientSecret = "" + }); + + db.ExportSettings.Add(new ExportSettings + { + DateFilter = "2025-01-01", + TimerHour = 3, + TimerMinute = 0, + TimerEnabled = true + }); + + db.SaveChanges(); + } +} diff --git a/TrafagSalesExporter/Services/ExcelExportService.cs b/TrafagSalesExporter/Services/ExcelExportService.cs index 3b92431..2379675 100644 --- a/TrafagSalesExporter/Services/ExcelExportService.cs +++ b/TrafagSalesExporter/Services/ExcelExportService.cs @@ -3,7 +3,7 @@ using TrafagSalesExporter.Models; namespace TrafagSalesExporter.Services; -public class ExcelExportService +public class ExcelExportService : IExcelExportService { public string CreateExcelFile(string outputDirectory, string tsc, DateTime fileDate, List records) { diff --git a/TrafagSalesExporter/Services/ExportLogService.cs b/TrafagSalesExporter/Services/ExportLogService.cs new file mode 100644 index 0000000..6e33fd3 --- /dev/null +++ b/TrafagSalesExporter/Services/ExportLogService.cs @@ -0,0 +1,22 @@ +using Microsoft.EntityFrameworkCore; +using TrafagSalesExporter.Data; +using TrafagSalesExporter.Models; + +namespace TrafagSalesExporter.Services; + +public class ExportLogService : IExportLogService +{ + private readonly IDbContextFactory _dbFactory; + + public ExportLogService(IDbContextFactory dbFactory) + { + _dbFactory = dbFactory; + } + + public async Task WriteAsync(ExportLog log) + { + using var db = await _dbFactory.CreateDbContextAsync(); + db.ExportLogs.Add(log); + await db.SaveChangesAsync(); + } +} diff --git a/TrafagSalesExporter/Services/ExportOrchestrationService.cs b/TrafagSalesExporter/Services/ExportOrchestrationService.cs index 287066a..14a3893 100644 --- a/TrafagSalesExporter/Services/ExportOrchestrationService.cs +++ b/TrafagSalesExporter/Services/ExportOrchestrationService.cs @@ -1,5 +1,4 @@ using Microsoft.EntityFrameworkCore; -using System.Diagnostics; using TrafagSalesExporter.Data; using TrafagSalesExporter.Models; @@ -8,11 +7,9 @@ namespace TrafagSalesExporter.Services; public class ExportOrchestrationService { private readonly IDbContextFactory _dbFactory; - private readonly HanaQueryService _hanaService; - private readonly ExcelExportService _excelService; - private readonly SharePointUploadService _sharePointService; - private readonly RecordTransformationService _transformationService; - private readonly ILogger _logger; + private readonly ISiteExportService _siteExportService; + private readonly IConsolidatedExportService _consolidatedExportService; + private readonly IExportLogService _exportLogService; public event Action? OnExportStatusChanged; @@ -21,18 +18,14 @@ public class ExportOrchestrationService public ExportOrchestrationService( IDbContextFactory dbFactory, - HanaQueryService hanaService, - ExcelExportService excelService, - SharePointUploadService sharePointService, - RecordTransformationService transformationService, - ILogger logger) + ISiteExportService siteExportService, + IConsolidatedExportService consolidatedExportService, + IExportLogService exportLogService) { _dbFactory = dbFactory; - _hanaService = hanaService; - _excelService = excelService; - _sharePointService = sharePointService; - _transformationService = transformationService; - _logger = logger; + _siteExportService = siteExportService; + _consolidatedExportService = consolidatedExportService; + _exportLogService = exportLogService; } public bool IsExporting(int siteId) @@ -64,31 +57,7 @@ public class ExportOrchestrationService 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); - } - } + await _consolidatedExportService.ExportAsync(consolidatedRecords); } public async Task ExportSiteByIdAsync(int siteId) @@ -102,6 +71,7 @@ public class ExportOrchestrationService private async Task ExportSiteAsync(Site site) { if (site.HanaServer is null) return null; + SiteExportResult? result = null; lock (_lock) { @@ -110,75 +80,17 @@ public class ExportOrchestrationService } NotifyChanged(); - var sw = Stopwatch.StartNew(); - var log = new ExportLog - { - Timestamp = DateTime.Now, - SiteId = site.Id, - Land = site.Land, - TSC = site.TSC - }; - try { - using var db = await _dbFactory.CreateDbContextAsync(); - var settings = await db.ExportSettings.FirstOrDefaultAsync() ?? new ExportSettings(); - var spConfig = await db.SharePointConfigs.FirstOrDefaultAsync(); - - UpdateStatus(site.Id, "HANA Abfrage..."); - var records = await Task.Run(() => _hanaService.GetSalesRecords( - site.HanaServer, site.Schema, site.TSC, site.Land, settings.DateFilter)); - - UpdateStatus(site.Id, "Transformationen anwenden..."); - var rules = await db.FieldTransformationRules - .Where(r => r.IsActive && r.SourceSystem == (string.IsNullOrWhiteSpace(site.SourceSystem) ? "SAP" : site.SourceSystem)) - .OrderBy(r => r.SortOrder) - .ToListAsync(); - _transformationService.Apply(records, rules); - - UpdateStatus(site.Id, "Excel erstellen..."); - var outputDir = Path.Combine(AppContext.BaseDirectory, "output"); - var filePath = _excelService.CreateExcelFile(outputDir, site.TSC, DateTime.UtcNow.Date, records); - var fileName = Path.GetFileName(filePath); - - if (spConfig is not null && - !string.IsNullOrWhiteSpace(spConfig.TenantId) && - !string.IsNullOrWhiteSpace(spConfig.ClientId) && - !string.IsNullOrWhiteSpace(spConfig.ClientSecret)) - { - UpdateStatus(site.Id, "SharePoint Upload..."); - await _sharePointService.UploadAsync( - spConfig.TenantId, spConfig.ClientId, spConfig.ClientSecret, - spConfig.SiteUrl, spConfig.ExportFolder, site.Land, filePath); - } - - sw.Stop(); - log.Status = "OK"; - log.RowCount = records.Count; - log.FileName = fileName; - log.DurationSeconds = sw.Elapsed.TotalSeconds; - - _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) - { - sw.Stop(); - log.Status = "Error"; - log.ErrorMessage = ex.Message; - log.FileName = string.Empty; - log.DurationSeconds = sw.Elapsed.TotalSeconds; - - _logger.LogError(ex, "Export Fehler: {Land} ({TSC})", site.Land, site.TSC); - return null; + result = await _siteExportService.ExportAsync(site, status => UpdateStatus(site.Id, status)); + return result; } finally { - using var db = await _dbFactory.CreateDbContextAsync(); - db.ExportLogs.Add(log); - await db.SaveChangesAsync(); + if (result is not null) + { + await _exportLogService.WriteAsync(result.Log); + } lock (_lock) { @@ -201,6 +113,4 @@ public class ExportOrchestrationService { OnExportStatusChanged?.Invoke(); } - - private sealed record SiteExportResult(List Records, string FilePath); } diff --git a/TrafagSalesExporter/Services/HanaQueryService.cs b/TrafagSalesExporter/Services/HanaQueryService.cs index 3038fe8..98828a5 100644 --- a/TrafagSalesExporter/Services/HanaQueryService.cs +++ b/TrafagSalesExporter/Services/HanaQueryService.cs @@ -3,7 +3,7 @@ using TrafagSalesExporter.Models; namespace TrafagSalesExporter.Services; -public class HanaQueryService +public class HanaQueryService : IHanaQueryService { public List GetSalesRecords(HanaServer server, string schema, string tsc, string land, string dateFilter) diff --git a/TrafagSalesExporter/Services/IConsolidatedExportService.cs b/TrafagSalesExporter/Services/IConsolidatedExportService.cs new file mode 100644 index 0000000..62643fc --- /dev/null +++ b/TrafagSalesExporter/Services/IConsolidatedExportService.cs @@ -0,0 +1,8 @@ +using TrafagSalesExporter.Models; + +namespace TrafagSalesExporter.Services; + +public interface IConsolidatedExportService +{ + Task ExportAsync(List records); +} diff --git a/TrafagSalesExporter/Services/IDatabaseInitializationService.cs b/TrafagSalesExporter/Services/IDatabaseInitializationService.cs new file mode 100644 index 0000000..8a96248 --- /dev/null +++ b/TrafagSalesExporter/Services/IDatabaseInitializationService.cs @@ -0,0 +1,6 @@ +namespace TrafagSalesExporter.Services; + +public interface IDatabaseInitializationService +{ + Task InitializeAsync(); +} diff --git a/TrafagSalesExporter/Services/IExcelExportService.cs b/TrafagSalesExporter/Services/IExcelExportService.cs new file mode 100644 index 0000000..b7dbcb1 --- /dev/null +++ b/TrafagSalesExporter/Services/IExcelExportService.cs @@ -0,0 +1,9 @@ +using TrafagSalesExporter.Models; + +namespace TrafagSalesExporter.Services; + +public interface IExcelExportService +{ + string CreateExcelFile(string outputDirectory, string tsc, DateTime fileDate, List records); + string CreateConsolidatedExcelFile(string outputDirectory, DateTime fileDate, List records); +} diff --git a/TrafagSalesExporter/Services/IExportLogService.cs b/TrafagSalesExporter/Services/IExportLogService.cs new file mode 100644 index 0000000..c839788 --- /dev/null +++ b/TrafagSalesExporter/Services/IExportLogService.cs @@ -0,0 +1,8 @@ +using TrafagSalesExporter.Models; + +namespace TrafagSalesExporter.Services; + +public interface IExportLogService +{ + Task WriteAsync(ExportLog log); +} diff --git a/TrafagSalesExporter/Services/IHanaQueryService.cs b/TrafagSalesExporter/Services/IHanaQueryService.cs new file mode 100644 index 0000000..34c87b2 --- /dev/null +++ b/TrafagSalesExporter/Services/IHanaQueryService.cs @@ -0,0 +1,10 @@ +using TrafagSalesExporter.Models; + +namespace TrafagSalesExporter.Services; + +public interface IHanaQueryService +{ + List GetSalesRecords(HanaServer server, string schema, string tsc, string land, string dateFilter); + ConnectionTestResult TestConnectionDetailed(HanaServer server); + void TestConnection(HanaServer server); +} diff --git a/TrafagSalesExporter/Services/IRecordTransformationService.cs b/TrafagSalesExporter/Services/IRecordTransformationService.cs new file mode 100644 index 0000000..48f413c --- /dev/null +++ b/TrafagSalesExporter/Services/IRecordTransformationService.cs @@ -0,0 +1,8 @@ +using TrafagSalesExporter.Models; + +namespace TrafagSalesExporter.Services; + +public interface IRecordTransformationService +{ + void Apply(List records, IEnumerable rules); +} diff --git a/TrafagSalesExporter/Services/ISharePointUploadService.cs b/TrafagSalesExporter/Services/ISharePointUploadService.cs new file mode 100644 index 0000000..dafa08b --- /dev/null +++ b/TrafagSalesExporter/Services/ISharePointUploadService.cs @@ -0,0 +1,7 @@ +namespace TrafagSalesExporter.Services; + +public interface ISharePointUploadService +{ + Task UploadAsync(string tenantId, string clientId, string clientSecret, string siteUrl, string exportFolder, string land, string localFilePath); + Task TestConnectionAsync(string tenantId, string clientId, string clientSecret, string siteUrl); +} diff --git a/TrafagSalesExporter/Services/ISiteExportService.cs b/TrafagSalesExporter/Services/ISiteExportService.cs new file mode 100644 index 0000000..b3f882e --- /dev/null +++ b/TrafagSalesExporter/Services/ISiteExportService.cs @@ -0,0 +1,8 @@ +using TrafagSalesExporter.Models; + +namespace TrafagSalesExporter.Services; + +public interface ISiteExportService +{ + Task ExportAsync(Site site, Action? updateStatus = null); +} diff --git a/TrafagSalesExporter/Services/ITransformationStrategy.cs b/TrafagSalesExporter/Services/ITransformationStrategy.cs new file mode 100644 index 0000000..e40c94f --- /dev/null +++ b/TrafagSalesExporter/Services/ITransformationStrategy.cs @@ -0,0 +1,7 @@ +namespace TrafagSalesExporter.Services; + +public interface ITransformationStrategy +{ + string TransformationType { get; } + object? Transform(object? sourceValue, string? argument); +} diff --git a/TrafagSalesExporter/Services/RecordTransformationService.cs b/TrafagSalesExporter/Services/RecordTransformationService.cs index 71ed4d1..4957374 100644 --- a/TrafagSalesExporter/Services/RecordTransformationService.cs +++ b/TrafagSalesExporter/Services/RecordTransformationService.cs @@ -3,12 +3,19 @@ using TrafagSalesExporter.Models; namespace TrafagSalesExporter.Services; -public class RecordTransformationService +public class RecordTransformationService : IRecordTransformationService { private static readonly Dictionary PropertyMap = typeof(SalesRecord) .GetProperties(BindingFlags.Public | BindingFlags.Instance) .ToDictionary(p => p.Name, p => p, StringComparer.OrdinalIgnoreCase); + private readonly IReadOnlyDictionary _strategies; + + public RecordTransformationService(IEnumerable strategies) + { + _strategies = strategies.ToDictionary(s => s.TransformationType, StringComparer.OrdinalIgnoreCase); + } + public void Apply(List records, IEnumerable rules) { var orderedRules = rules.Where(r => r.IsActive).OrderBy(r => r.SortOrder).ToList(); @@ -23,37 +30,19 @@ public class RecordTransformationService } } - private static void ApplyRule(SalesRecord record, FieldTransformationRule rule) + private void ApplyRule(SalesRecord record, FieldTransformationRule rule) { if (!PropertyMap.TryGetValue(rule.SourceField, out var sourceProp)) return; if (!PropertyMap.TryGetValue(rule.TargetField, out var targetProp)) return; var sourceValue = sourceProp.GetValue(record); - object? result = rule.TransformationType switch - { - "Copy" => sourceValue, - "Uppercase" => sourceValue?.ToString()?.ToUpperInvariant(), - "Lowercase" => sourceValue?.ToString()?.ToLowerInvariant(), - "Prefix" => $"{rule.Argument}{sourceValue}", - "Suffix" => $"{sourceValue}{rule.Argument}", - "Replace" => ApplyReplace(sourceValue?.ToString(), rule.Argument), - "Constant" => rule.Argument, - _ => sourceValue - }; + object? result = _strategies.TryGetValue(rule.TransformationType, out var strategy) + ? strategy.Transform(sourceValue, rule.Argument) + : sourceValue; SetPropertyValue(record, targetProp, result); } - private static string ApplyReplace(string? input, string? argument) - { - if (string.IsNullOrEmpty(input)) return string.Empty; - if (string.IsNullOrWhiteSpace(argument)) return input; - - var parts = argument.Split("=>", 2, StringSplitOptions.TrimEntries); - if (parts.Length != 2) return input; - return input.Replace(parts[0], parts[1], StringComparison.OrdinalIgnoreCase); - } - private static void SetPropertyValue(SalesRecord record, PropertyInfo property, object? value) { try diff --git a/TrafagSalesExporter/Services/SharePointUploadService.cs b/TrafagSalesExporter/Services/SharePointUploadService.cs index fdfb578..06f623c 100644 --- a/TrafagSalesExporter/Services/SharePointUploadService.cs +++ b/TrafagSalesExporter/Services/SharePointUploadService.cs @@ -3,7 +3,7 @@ using Microsoft.Graph; namespace TrafagSalesExporter.Services; -public class SharePointUploadService +public class SharePointUploadService : ISharePointUploadService { public async Task UploadAsync(string tenantId, string clientId, string clientSecret, string siteUrl, string exportFolder, string land, string localFilePath) diff --git a/TrafagSalesExporter/Services/SiteExportResult.cs b/TrafagSalesExporter/Services/SiteExportResult.cs new file mode 100644 index 0000000..110bd82 --- /dev/null +++ b/TrafagSalesExporter/Services/SiteExportResult.cs @@ -0,0 +1,10 @@ +using TrafagSalesExporter.Models; + +namespace TrafagSalesExporter.Services; + +public sealed class SiteExportResult +{ + public required List Records { get; init; } + public required ExportLog Log { get; init; } + public string? FilePath { get; init; } +} diff --git a/TrafagSalesExporter/Services/SiteExportService.cs b/TrafagSalesExporter/Services/SiteExportService.cs new file mode 100644 index 0000000..0906102 --- /dev/null +++ b/TrafagSalesExporter/Services/SiteExportService.cs @@ -0,0 +1,114 @@ +using Microsoft.EntityFrameworkCore; +using System.Diagnostics; +using TrafagSalesExporter.Data; +using TrafagSalesExporter.Models; + +namespace TrafagSalesExporter.Services; + +public class SiteExportService : ISiteExportService +{ + private readonly IDbContextFactory _dbFactory; + private readonly IHanaQueryService _hanaService; + private readonly IExcelExportService _excelService; + private readonly ISharePointUploadService _sharePointService; + private readonly IRecordTransformationService _transformationService; + private readonly ILogger _logger; + + public SiteExportService( + IDbContextFactory dbFactory, + IHanaQueryService hanaService, + IExcelExportService excelService, + ISharePointUploadService sharePointService, + IRecordTransformationService transformationService, + ILogger logger) + { + _dbFactory = dbFactory; + _hanaService = hanaService; + _excelService = excelService; + _sharePointService = sharePointService; + _transformationService = transformationService; + _logger = logger; + } + + public async Task ExportAsync(Site site, Action? updateStatus = null) + { + if (site.HanaServer is null) + throw new InvalidOperationException($"Standort '{site.Land}' hat keinen HANA-Server."); + + var sw = Stopwatch.StartNew(); + var log = new ExportLog + { + Timestamp = DateTime.Now, + SiteId = site.Id, + Land = site.Land, + TSC = site.TSC + }; + + try + { + using var db = await _dbFactory.CreateDbContextAsync(); + var settings = await db.ExportSettings.FirstOrDefaultAsync() ?? new ExportSettings(); + var spConfig = await db.SharePointConfigs.FirstOrDefaultAsync(); + + updateStatus?.Invoke("HANA Abfrage..."); + var records = await Task.Run(() => _hanaService.GetSalesRecords( + site.HanaServer, site.Schema, site.TSC, site.Land, settings.DateFilter)); + + updateStatus?.Invoke("Transformationen anwenden..."); + var rules = await db.FieldTransformationRules + .Where(r => r.IsActive && r.SourceSystem == (string.IsNullOrWhiteSpace(site.SourceSystem) ? "SAP" : site.SourceSystem)) + .OrderBy(r => r.SortOrder) + .ToListAsync(); + _transformationService.Apply(records, rules); + + updateStatus?.Invoke("Excel erstellen..."); + var outputDir = Path.Combine(AppContext.BaseDirectory, "output"); + var filePath = _excelService.CreateExcelFile(outputDir, site.TSC, DateTime.UtcNow.Date, records); + var fileName = Path.GetFileName(filePath); + + if (spConfig is not null && + !string.IsNullOrWhiteSpace(spConfig.TenantId) && + !string.IsNullOrWhiteSpace(spConfig.ClientId) && + !string.IsNullOrWhiteSpace(spConfig.ClientSecret)) + { + updateStatus?.Invoke("SharePoint Upload..."); + await _sharePointService.UploadAsync( + spConfig.TenantId, spConfig.ClientId, spConfig.ClientSecret, + spConfig.SiteUrl, spConfig.ExportFolder, site.Land, filePath); + } + + sw.Stop(); + log.Status = "OK"; + log.RowCount = records.Count; + log.FileName = fileName; + log.DurationSeconds = sw.Elapsed.TotalSeconds; + + _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 = records, + Log = log, + FilePath = filePath + }; + } + catch (Exception ex) + { + sw.Stop(); + log.Status = "Error"; + log.ErrorMessage = ex.Message; + log.FileName = string.Empty; + log.DurationSeconds = sw.Elapsed.TotalSeconds; + + _logger.LogError(ex, "Export Fehler: {Land} ({TSC})", site.Land, site.TSC); + + return new SiteExportResult + { + Records = [], + Log = log, + FilePath = null + }; + } + } +} diff --git a/TrafagSalesExporter/Services/TransformationStrategies.cs b/TrafagSalesExporter/Services/TransformationStrategies.cs new file mode 100644 index 0000000..eaa561b --- /dev/null +++ b/TrafagSalesExporter/Services/TransformationStrategies.cs @@ -0,0 +1,58 @@ +namespace TrafagSalesExporter.Services; + +public sealed class CopyTransformationStrategy : ITransformationStrategy +{ + public string TransformationType => "Copy"; + public object? Transform(object? sourceValue, string? argument) => sourceValue; +} + +public sealed class UppercaseTransformationStrategy : ITransformationStrategy +{ + public string TransformationType => "Uppercase"; + public object? Transform(object? sourceValue, string? argument) => sourceValue?.ToString()?.ToUpperInvariant(); +} + +public sealed class LowercaseTransformationStrategy : ITransformationStrategy +{ + public string TransformationType => "Lowercase"; + public object? Transform(object? sourceValue, string? argument) => sourceValue?.ToString()?.ToLowerInvariant(); +} + +public sealed class PrefixTransformationStrategy : ITransformationStrategy +{ + public string TransformationType => "Prefix"; + public object? Transform(object? sourceValue, string? argument) => $"{argument}{sourceValue}"; +} + +public sealed class SuffixTransformationStrategy : ITransformationStrategy +{ + public string TransformationType => "Suffix"; + public object? Transform(object? sourceValue, string? argument) => $"{sourceValue}{argument}"; +} + +public sealed class ReplaceTransformationStrategy : ITransformationStrategy +{ + public string TransformationType => "Replace"; + + public object? Transform(object? sourceValue, string? argument) + { + var input = sourceValue?.ToString(); + if (string.IsNullOrEmpty(input)) + return string.Empty; + + if (string.IsNullOrWhiteSpace(argument)) + return input; + + var parts = argument.Split("=>", 2, StringSplitOptions.TrimEntries); + if (parts.Length != 2) + return input; + + return input.Replace(parts[0], parts[1], StringComparison.OrdinalIgnoreCase); + } +} + +public sealed class ConstantTransformationStrategy : ITransformationStrategy +{ + public string TransformationType => "Constant"; + public object? Transform(object? sourceValue, string? argument) => argument; +} diff --git a/TrafagSalesExporter/build_verify/db_init/Azure.Core.dll b/TrafagSalesExporter/build_verify/db_init/Azure.Core.dll new file mode 100644 index 0000000..1b0de61 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Azure.Core.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Azure.Identity.dll b/TrafagSalesExporter/build_verify/db_init/Azure.Identity.dll new file mode 100644 index 0000000..c64a0db Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Azure.Identity.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/ClosedXML.Parser.dll b/TrafagSalesExporter/build_verify/db_init/ClosedXML.Parser.dll new file mode 100644 index 0000000..1613f29 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/ClosedXML.Parser.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/ClosedXML.dll b/TrafagSalesExporter/build_verify/db_init/ClosedXML.dll new file mode 100644 index 0000000..fcaf164 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/ClosedXML.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/DocumentFormat.OpenXml.Framework.dll b/TrafagSalesExporter/build_verify/db_init/DocumentFormat.OpenXml.Framework.dll new file mode 100644 index 0000000..895c615 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/DocumentFormat.OpenXml.Framework.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/DocumentFormat.OpenXml.dll b/TrafagSalesExporter/build_verify/db_init/DocumentFormat.OpenXml.dll new file mode 100644 index 0000000..dbc29d1 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/DocumentFormat.OpenXml.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/ExcelNumberFormat.dll b/TrafagSalesExporter/build_verify/db_init/ExcelNumberFormat.dll new file mode 100644 index 0000000..aaf7bf8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/ExcelNumberFormat.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Humanizer.dll b/TrafagSalesExporter/build_verify/db_init/Humanizer.dll new file mode 100644 index 0000000..c9a7ef8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Humanizer.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.AspNetCore.Authorization.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 0000000..6cc4edc Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.AspNetCore.Authorization.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.AspNetCore.Components.Forms.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.AspNetCore.Components.Forms.dll new file mode 100644 index 0000000..8846e9f Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.AspNetCore.Components.Web.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.AspNetCore.Components.Web.dll new file mode 100644 index 0000000..17618af Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.AspNetCore.Components.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.AspNetCore.Components.dll new file mode 100644 index 0000000..f83f23a Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.AspNetCore.Components.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.AspNetCore.Metadata.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 0000000..c58acf9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.AspNetCore.Metadata.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Bcl.AsyncInterfaces.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..fe6ba4c Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Bcl.Memory.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Bcl.Memory.dll new file mode 100644 index 0000000..84f76cb Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Bcl.Memory.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100644 index 0000000..dc218f9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.CodeAnalysis.CSharp.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.CodeAnalysis.CSharp.dll new file mode 100644 index 0000000..412e7ed Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.CodeAnalysis.Workspaces.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100644 index 0000000..8dec441 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.CodeAnalysis.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.CodeAnalysis.dll new file mode 100644 index 0000000..79e9046 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.CodeAnalysis.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Data.Sqlite.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..5e5f13b Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Data.Sqlite.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.EntityFrameworkCore.Abstractions.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100644 index 0000000..c972d3e Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.EntityFrameworkCore.Design.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.EntityFrameworkCore.Design.dll new file mode 100644 index 0000000..dc960cd Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.EntityFrameworkCore.Relational.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100644 index 0000000..e980332 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.EntityFrameworkCore.Sqlite.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.EntityFrameworkCore.Sqlite.dll new file mode 100644 index 0000000..58df708 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.EntityFrameworkCore.Sqlite.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.EntityFrameworkCore.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.EntityFrameworkCore.dll new file mode 100644 index 0000000..1e9773e Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.EntityFrameworkCore.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Caching.Memory.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Caching.Memory.dll new file mode 100644 index 0000000..077b1b6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..81ed3de Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.DependencyInjection.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..bd71a2b Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.DependencyModel.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..8905537 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.DependencyModel.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Localization.Abstractions.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Localization.Abstractions.dll new file mode 100644 index 0000000..8766429 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Localization.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Localization.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Localization.dll new file mode 100644 index 0000000..eb2d5db Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Localization.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Logging.Abstractions.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..f9d1dc6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Logging.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..35905b6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Logging.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Options.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..a7b3f21 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Extensions.Options.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Graph.Core.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Graph.Core.dll new file mode 100644 index 0000000..c97ca10 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Graph.Core.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Graph.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Graph.dll new file mode 100644 index 0000000..5f36dad Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Graph.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Identity.Client.Extensions.Msal.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Identity.Client.Extensions.Msal.dll new file mode 100644 index 0000000..a401863 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Identity.Client.Extensions.Msal.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Identity.Client.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Identity.Client.dll new file mode 100644 index 0000000..49b6979 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Identity.Client.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Abstractions.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Abstractions.dll new file mode 100644 index 0000000..9634859 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.JsonWebTokens.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..255c7c7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Logging.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..1df208a Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Logging.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..4d6ff2f Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Protocols.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..e4d4c63 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Protocols.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Tokens.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..51cfca8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Tokens.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Validators.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Validators.dll new file mode 100644 index 0000000..29e99ca Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.IdentityModel.Validators.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.JSInterop.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.JSInterop.dll new file mode 100644 index 0000000..8e7a162 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.JSInterop.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Abstractions.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Abstractions.dll new file mode 100644 index 0000000..d06e8a0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Authentication.Azure.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Authentication.Azure.dll new file mode 100644 index 0000000..39cfa97 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Authentication.Azure.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Http.HttpClientLibrary.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Http.HttpClientLibrary.dll new file mode 100644 index 0000000..4a6ea19 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Http.HttpClientLibrary.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Serialization.Form.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Serialization.Form.dll new file mode 100644 index 0000000..e0cca44 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Serialization.Form.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Serialization.Json.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Serialization.Json.dll new file mode 100644 index 0000000..cf2e11e Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Serialization.Json.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Serialization.Multipart.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Serialization.Multipart.dll new file mode 100644 index 0000000..aa260a7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Serialization.Multipart.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Serialization.Text.dll b/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Serialization.Text.dll new file mode 100644 index 0000000..09e8c49 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Microsoft.Kiota.Serialization.Text.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Mono.TextTemplating.dll b/TrafagSalesExporter/build_verify/db_init/Mono.TextTemplating.dll new file mode 100644 index 0000000..d5a4b3c Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Mono.TextTemplating.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/MudBlazor.dll b/TrafagSalesExporter/build_verify/db_init/MudBlazor.dll new file mode 100644 index 0000000..37dec92 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/MudBlazor.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/RBush.dll b/TrafagSalesExporter/build_verify/db_init/RBush.dll new file mode 100644 index 0000000..a4a305b Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/RBush.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/SQLitePCLRaw.batteries_v2.dll b/TrafagSalesExporter/build_verify/db_init/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..f9eb46b Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/SQLitePCLRaw.batteries_v2.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/SQLitePCLRaw.core.dll b/TrafagSalesExporter/build_verify/db_init/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..556d40f Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/SQLitePCLRaw.core.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/SQLitePCLRaw.provider.e_sqlite3.dll b/TrafagSalesExporter/build_verify/db_init/SQLitePCLRaw.provider.e_sqlite3.dll new file mode 100644 index 0000000..fc5919d Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/SQLitePCLRaw.provider.e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Sap.Data.Hana.Core.v2.1.dll b/TrafagSalesExporter/build_verify/db_init/Sap.Data.Hana.Core.v2.1.dll new file mode 100644 index 0000000..f385978 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Sap.Data.Hana.Core.v2.1.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Sap.Data.Hana.Core.v2.1.pdb b/TrafagSalesExporter/build_verify/db_init/Sap.Data.Hana.Core.v2.1.pdb new file mode 100644 index 0000000..5b49f2a Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Sap.Data.Hana.Core.v2.1.pdb differ diff --git a/TrafagSalesExporter/build_verify/db_init/SixLabors.Fonts.dll b/TrafagSalesExporter/build_verify/db_init/SixLabors.Fonts.dll new file mode 100644 index 0000000..281d8a7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/SixLabors.Fonts.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/Std.UriTemplate.dll b/TrafagSalesExporter/build_verify/db_init/Std.UriTemplate.dll new file mode 100644 index 0000000..104cbae Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/Std.UriTemplate.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/System.ClientModel.dll b/TrafagSalesExporter/build_verify/db_init/System.ClientModel.dll new file mode 100644 index 0000000..2657496 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/System.ClientModel.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/System.CodeDom.dll b/TrafagSalesExporter/build_verify/db_init/System.CodeDom.dll new file mode 100644 index 0000000..3128b6a Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/System.CodeDom.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/System.Composition.AttributedModel.dll b/TrafagSalesExporter/build_verify/db_init/System.Composition.AttributedModel.dll new file mode 100644 index 0000000..d37283b Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/System.Composition.AttributedModel.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/System.Composition.Convention.dll b/TrafagSalesExporter/build_verify/db_init/System.Composition.Convention.dll new file mode 100644 index 0000000..b6fa4ab Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/System.Composition.Convention.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/System.Composition.Hosting.dll b/TrafagSalesExporter/build_verify/db_init/System.Composition.Hosting.dll new file mode 100644 index 0000000..c67f1c0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/System.Composition.Hosting.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/System.Composition.Runtime.dll b/TrafagSalesExporter/build_verify/db_init/System.Composition.Runtime.dll new file mode 100644 index 0000000..2a4b38c Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/System.Composition.Runtime.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/System.Composition.TypedParts.dll b/TrafagSalesExporter/build_verify/db_init/System.Composition.TypedParts.dll new file mode 100644 index 0000000..7c0c780 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/System.Composition.TypedParts.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/System.IO.Packaging.dll b/TrafagSalesExporter/build_verify/db_init/System.IO.Packaging.dll new file mode 100644 index 0000000..eb95db7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/System.IO.Packaging.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/System.IdentityModel.Tokens.Jwt.dll b/TrafagSalesExporter/build_verify/db_init/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..442c7a3 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/System.Memory.Data.dll b/TrafagSalesExporter/build_verify/db_init/System.Memory.Data.dll new file mode 100644 index 0000000..a9bb64f Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/System.Memory.Data.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/System.Security.Cryptography.ProtectedData.dll b/TrafagSalesExporter/build_verify/db_init/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..3feb9f9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/System.Security.Cryptography.ProtectedData.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/TrafagSalesExporter.deps.json b/TrafagSalesExporter/build_verify/db_init/TrafagSalesExporter.deps.json new file mode 100644 index 0000000..b097214 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/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/db_init/TrafagSalesExporter.dll b/TrafagSalesExporter/build_verify/db_init/TrafagSalesExporter.dll new file mode 100644 index 0000000..186ff1a Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/TrafagSalesExporter.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/TrafagSalesExporter.pdb b/TrafagSalesExporter/build_verify/db_init/TrafagSalesExporter.pdb new file mode 100644 index 0000000..a756b9d Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/TrafagSalesExporter.pdb differ diff --git a/TrafagSalesExporter/build_verify/db_init/TrafagSalesExporter.runtimeconfig.json b/TrafagSalesExporter/build_verify/db_init/TrafagSalesExporter.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/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/db_init/TrafagSalesExporter.staticwebassets.endpoints.json b/TrafagSalesExporter/build_verify/db_init/TrafagSalesExporter.staticwebassets.endpoints.json new file mode 100644 index 0000000..10cf121 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/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/db_init/TrafagSalesExporter.staticwebassets.runtime.json b/TrafagSalesExporter/build_verify/db_init/TrafagSalesExporter.staticwebassets.runtime.json new file mode 100644 index 0000000..57043fd --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/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/db_init/appsettings.json b/TrafagSalesExporter/build_verify/db_init/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TrafagSalesExporter/build_verify/db_init/build_verify/central_export/TrafagSalesExporter.deps.json b/TrafagSalesExporter/build_verify/db_init/build_verify/central_export/TrafagSalesExporter.deps.json new file mode 100644 index 0000000..b097214 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/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/db_init/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json b/TrafagSalesExporter/build_verify/db_init/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/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/db_init/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json b/TrafagSalesExporter/build_verify/db_init/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json new file mode 100644 index 0000000..10cf121 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/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/db_init/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json b/TrafagSalesExporter/build_verify/db_init/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json new file mode 100644 index 0000000..57043fd --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/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/db_init/build_verify/central_export/appsettings.json b/TrafagSalesExporter/build_verify/db_init/build_verify/central_export/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/central_export/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/TrafagSalesExporter.deps.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/TrafagSalesExporter.deps.json new file mode 100644 index 0000000..b097214 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/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/db_init/build_verify/orchestrator_split/TrafagSalesExporter.runtimeconfig.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/TrafagSalesExporter.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/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/db_init/build_verify/orchestrator_split/TrafagSalesExporter.staticwebassets.endpoints.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/TrafagSalesExporter.staticwebassets.endpoints.json new file mode 100644 index 0000000..10cf121 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/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/db_init/build_verify/orchestrator_split/TrafagSalesExporter.staticwebassets.runtime.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/TrafagSalesExporter.staticwebassets.runtime.json new file mode 100644 index 0000000..57043fd --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/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/db_init/build_verify/orchestrator_split/appsettings.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/central_export/TrafagSalesExporter.deps.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/central_export/TrafagSalesExporter.deps.json new file mode 100644 index 0000000..b097214 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/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/db_init/build_verify/orchestrator_split/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/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/db_init/build_verify/orchestrator_split/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json new file mode 100644 index 0000000..10cf121 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/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/db_init/build_verify/orchestrator_split/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json new file mode 100644 index 0000000..57043fd --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/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/db_init/build_verify/orchestrator_split/build_verify/central_export/appsettings.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/central_export/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/central_export/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/TrafagSalesExporter.deps.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/TrafagSalesExporter.deps.json new file mode 100644 index 0000000..b097214 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/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/db_init/build_verify/orchestrator_split/build_verify/patterns/TrafagSalesExporter.runtimeconfig.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/TrafagSalesExporter.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/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/db_init/build_verify/orchestrator_split/build_verify/patterns/TrafagSalesExporter.staticwebassets.endpoints.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/TrafagSalesExporter.staticwebassets.endpoints.json new file mode 100644 index 0000000..10cf121 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/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/db_init/build_verify/orchestrator_split/build_verify/patterns/TrafagSalesExporter.staticwebassets.runtime.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/TrafagSalesExporter.staticwebassets.runtime.json new file mode 100644 index 0000000..57043fd --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/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/db_init/build_verify/orchestrator_split/build_verify/patterns/appsettings.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.deps.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.deps.json new file mode 100644 index 0000000..b097214 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/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/db_init/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/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/db_init/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json new file mode 100644 index 0000000..10cf121 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/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/db_init/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json new file mode 100644 index 0000000..57043fd --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/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/db_init/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/appsettings.json b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/TrafagSalesExporter.deps.json b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/TrafagSalesExporter.deps.json new file mode 100644 index 0000000..b097214 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/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/db_init/build_verify/patterns/TrafagSalesExporter.runtimeconfig.json b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/TrafagSalesExporter.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/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/db_init/build_verify/patterns/TrafagSalesExporter.staticwebassets.endpoints.json b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/TrafagSalesExporter.staticwebassets.endpoints.json new file mode 100644 index 0000000..10cf121 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/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/db_init/build_verify/patterns/TrafagSalesExporter.staticwebassets.runtime.json b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/TrafagSalesExporter.staticwebassets.runtime.json new file mode 100644 index 0000000..57043fd --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/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/db_init/build_verify/patterns/appsettings.json b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.deps.json b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.deps.json new file mode 100644 index 0000000..b097214 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/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/db_init/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/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/db_init/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json new file mode 100644 index 0000000..10cf121 --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/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/db_init/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json new file mode 100644 index 0000000..57043fd --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/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/db_init/build_verify/patterns/build_verify/central_export/appsettings.json b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/build_verify/central_export/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TrafagSalesExporter/build_verify/db_init/build_verify/patterns/build_verify/central_export/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TrafagSalesExporter/build_verify/db_init/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..b08ba21 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/db_init/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..eba2a5a Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..ff203e1 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/cs/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/db_init/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..fe89036 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..3dda417 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/db_init/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..4d3bd0a Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..c41bb1f Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/de/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/db_init/de/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..05845f2 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..1e5038d Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/db_init/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..456ac85 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..7bb3187 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/es/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/db_init/es/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..01edef3 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..de36d31 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/db_init/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..71d6443 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..23107b9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/fr/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/db_init/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..291cf9b Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..ef0d337 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/db_init/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..f266330 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..6affe5c Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/it/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/db_init/it/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..263bd04 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..a94da35 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/db_init/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..c94e8e6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..6e0e837 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/ja/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/db_init/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..212267a Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..1fae94d Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/db_init/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..b2e573c Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..fdbe6ff Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/ko/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/db_init/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..5fee24c Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..9533b36 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/db_init/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..fa25298 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..1297d58 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/pl/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/db_init/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..8af36a3 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..197797b Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/db_init/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..0fd342c Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..c09c2ab Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/pt-BR/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/db_init/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..d6eaab6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..ecfe483 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/db_init/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..e9133a5 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..baa7776 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/ru/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/db_init/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..74714d8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a b/TrafagSalesExporter/build_verify/db_init/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/db_init/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/linux-arm/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..8520492 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/linux-arm64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..30b84ea Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/linux-armel/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..48de629 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/linux-mips64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..4f7d693 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/linux-musl-arm/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-musl-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..2c9dcda Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-musl-arm/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/linux-musl-arm64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-musl-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..53949cf Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-musl-arm64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/linux-musl-x64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..a043d7d Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/linux-ppc64le/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-ppc64le/native/libe_sqlite3.so new file mode 100644 index 0000000..3593c9b Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-ppc64le/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/linux-s390x/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-s390x/native/libe_sqlite3.so new file mode 100644 index 0000000..7e01b91 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-s390x/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/linux-x64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..a8f9ae0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/linux-x86/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..f9a9b69 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/db_init/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..e6612c5 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/db_init/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3ad1142 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/osx-arm64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/db_init/runtimes/osx-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..21a8f42 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/osx-arm64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/osx-x64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/db_init/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..ffaf82f Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/win-arm/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/db_init/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..454821f Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/win-arm64/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/db_init/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..70805d9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/win-x64/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/db_init/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..379665c Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/win-x86/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/db_init/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..c0e722d Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/TrafagSalesExporter/build_verify/db_init/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/db_init/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..2fbf86e Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/db_init/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..4c57b04 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..b551e37 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/tr/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/db_init/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..8758fff Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..de4fe51 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/db_init/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..67b261c Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..c6b8d86 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/db_init/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..a14ec60 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..2d39791 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/db_init/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..86802cf Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/db_init/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..691a8fa Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/db_init/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/db_init/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..e8e4ee0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/db_init/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Azure.Core.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Azure.Core.dll new file mode 100644 index 0000000..1b0de61 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Azure.Core.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Azure.Identity.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Azure.Identity.dll new file mode 100644 index 0000000..c64a0db Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Azure.Identity.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/ClosedXML.Parser.dll b/TrafagSalesExporter/build_verify/orchestrator_split/ClosedXML.Parser.dll new file mode 100644 index 0000000..1613f29 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/ClosedXML.Parser.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/ClosedXML.dll b/TrafagSalesExporter/build_verify/orchestrator_split/ClosedXML.dll new file mode 100644 index 0000000..fcaf164 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/ClosedXML.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/DocumentFormat.OpenXml.Framework.dll b/TrafagSalesExporter/build_verify/orchestrator_split/DocumentFormat.OpenXml.Framework.dll new file mode 100644 index 0000000..895c615 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/DocumentFormat.OpenXml.Framework.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/DocumentFormat.OpenXml.dll b/TrafagSalesExporter/build_verify/orchestrator_split/DocumentFormat.OpenXml.dll new file mode 100644 index 0000000..dbc29d1 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/DocumentFormat.OpenXml.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/ExcelNumberFormat.dll b/TrafagSalesExporter/build_verify/orchestrator_split/ExcelNumberFormat.dll new file mode 100644 index 0000000..aaf7bf8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/ExcelNumberFormat.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Humanizer.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Humanizer.dll new file mode 100644 index 0000000..c9a7ef8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Humanizer.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.AspNetCore.Authorization.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 0000000..6cc4edc Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.AspNetCore.Authorization.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.AspNetCore.Components.Forms.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.AspNetCore.Components.Forms.dll new file mode 100644 index 0000000..8846e9f Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.AspNetCore.Components.Web.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.AspNetCore.Components.Web.dll new file mode 100644 index 0000000..17618af Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.AspNetCore.Components.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.AspNetCore.Components.dll new file mode 100644 index 0000000..f83f23a Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.AspNetCore.Components.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.AspNetCore.Metadata.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 0000000..c58acf9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.AspNetCore.Metadata.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Bcl.AsyncInterfaces.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..fe6ba4c Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Bcl.Memory.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Bcl.Memory.dll new file mode 100644 index 0000000..84f76cb Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Bcl.Memory.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100644 index 0000000..dc218f9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.CodeAnalysis.CSharp.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.CodeAnalysis.CSharp.dll new file mode 100644 index 0000000..412e7ed Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.CodeAnalysis.Workspaces.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100644 index 0000000..8dec441 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.CodeAnalysis.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.CodeAnalysis.dll new file mode 100644 index 0000000..79e9046 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.CodeAnalysis.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Data.Sqlite.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..5e5f13b Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Data.Sqlite.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.EntityFrameworkCore.Abstractions.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100644 index 0000000..c972d3e Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.EntityFrameworkCore.Design.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.EntityFrameworkCore.Design.dll new file mode 100644 index 0000000..dc960cd Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.EntityFrameworkCore.Relational.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100644 index 0000000..e980332 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.EntityFrameworkCore.Sqlite.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.EntityFrameworkCore.Sqlite.dll new file mode 100644 index 0000000..58df708 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.EntityFrameworkCore.Sqlite.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.EntityFrameworkCore.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.EntityFrameworkCore.dll new file mode 100644 index 0000000..1e9773e Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.EntityFrameworkCore.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Caching.Memory.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Caching.Memory.dll new file mode 100644 index 0000000..077b1b6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..81ed3de Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.DependencyInjection.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..bd71a2b Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.DependencyModel.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..8905537 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.DependencyModel.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Localization.Abstractions.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Localization.Abstractions.dll new file mode 100644 index 0000000..8766429 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Localization.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Localization.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Localization.dll new file mode 100644 index 0000000..eb2d5db Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Localization.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Logging.Abstractions.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..f9d1dc6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Logging.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..35905b6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Logging.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Options.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..a7b3f21 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Extensions.Options.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Graph.Core.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Graph.Core.dll new file mode 100644 index 0000000..c97ca10 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Graph.Core.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Graph.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Graph.dll new file mode 100644 index 0000000..5f36dad Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Graph.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Identity.Client.Extensions.Msal.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Identity.Client.Extensions.Msal.dll new file mode 100644 index 0000000..a401863 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Identity.Client.Extensions.Msal.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Identity.Client.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Identity.Client.dll new file mode 100644 index 0000000..49b6979 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Identity.Client.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Abstractions.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Abstractions.dll new file mode 100644 index 0000000..9634859 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.JsonWebTokens.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..255c7c7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Logging.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..1df208a Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Logging.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..4d6ff2f Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Protocols.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..e4d4c63 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Protocols.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Tokens.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..51cfca8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Tokens.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Validators.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Validators.dll new file mode 100644 index 0000000..29e99ca Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.IdentityModel.Validators.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.JSInterop.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.JSInterop.dll new file mode 100644 index 0000000..8e7a162 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.JSInterop.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Abstractions.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Abstractions.dll new file mode 100644 index 0000000..d06e8a0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Authentication.Azure.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Authentication.Azure.dll new file mode 100644 index 0000000..39cfa97 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Authentication.Azure.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Http.HttpClientLibrary.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Http.HttpClientLibrary.dll new file mode 100644 index 0000000..4a6ea19 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Http.HttpClientLibrary.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Serialization.Form.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Serialization.Form.dll new file mode 100644 index 0000000..e0cca44 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Serialization.Form.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Serialization.Json.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Serialization.Json.dll new file mode 100644 index 0000000..cf2e11e Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Serialization.Json.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Serialization.Multipart.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Serialization.Multipart.dll new file mode 100644 index 0000000..aa260a7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Serialization.Multipart.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Serialization.Text.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Serialization.Text.dll new file mode 100644 index 0000000..09e8c49 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Microsoft.Kiota.Serialization.Text.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Mono.TextTemplating.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Mono.TextTemplating.dll new file mode 100644 index 0000000..d5a4b3c Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Mono.TextTemplating.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/MudBlazor.dll b/TrafagSalesExporter/build_verify/orchestrator_split/MudBlazor.dll new file mode 100644 index 0000000..37dec92 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/MudBlazor.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/RBush.dll b/TrafagSalesExporter/build_verify/orchestrator_split/RBush.dll new file mode 100644 index 0000000..a4a305b Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/RBush.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/SQLitePCLRaw.batteries_v2.dll b/TrafagSalesExporter/build_verify/orchestrator_split/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..f9eb46b Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/SQLitePCLRaw.batteries_v2.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/SQLitePCLRaw.core.dll b/TrafagSalesExporter/build_verify/orchestrator_split/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..556d40f Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/SQLitePCLRaw.core.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/SQLitePCLRaw.provider.e_sqlite3.dll b/TrafagSalesExporter/build_verify/orchestrator_split/SQLitePCLRaw.provider.e_sqlite3.dll new file mode 100644 index 0000000..fc5919d Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/SQLitePCLRaw.provider.e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Sap.Data.Hana.Core.v2.1.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Sap.Data.Hana.Core.v2.1.dll new file mode 100644 index 0000000..f385978 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Sap.Data.Hana.Core.v2.1.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Sap.Data.Hana.Core.v2.1.pdb b/TrafagSalesExporter/build_verify/orchestrator_split/Sap.Data.Hana.Core.v2.1.pdb new file mode 100644 index 0000000..5b49f2a Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Sap.Data.Hana.Core.v2.1.pdb differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/SixLabors.Fonts.dll b/TrafagSalesExporter/build_verify/orchestrator_split/SixLabors.Fonts.dll new file mode 100644 index 0000000..281d8a7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/SixLabors.Fonts.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/Std.UriTemplate.dll b/TrafagSalesExporter/build_verify/orchestrator_split/Std.UriTemplate.dll new file mode 100644 index 0000000..104cbae Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/Std.UriTemplate.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/System.ClientModel.dll b/TrafagSalesExporter/build_verify/orchestrator_split/System.ClientModel.dll new file mode 100644 index 0000000..2657496 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/System.ClientModel.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/System.CodeDom.dll b/TrafagSalesExporter/build_verify/orchestrator_split/System.CodeDom.dll new file mode 100644 index 0000000..3128b6a Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/System.CodeDom.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/System.Composition.AttributedModel.dll b/TrafagSalesExporter/build_verify/orchestrator_split/System.Composition.AttributedModel.dll new file mode 100644 index 0000000..d37283b Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/System.Composition.AttributedModel.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/System.Composition.Convention.dll b/TrafagSalesExporter/build_verify/orchestrator_split/System.Composition.Convention.dll new file mode 100644 index 0000000..b6fa4ab Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/System.Composition.Convention.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/System.Composition.Hosting.dll b/TrafagSalesExporter/build_verify/orchestrator_split/System.Composition.Hosting.dll new file mode 100644 index 0000000..c67f1c0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/System.Composition.Hosting.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/System.Composition.Runtime.dll b/TrafagSalesExporter/build_verify/orchestrator_split/System.Composition.Runtime.dll new file mode 100644 index 0000000..2a4b38c Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/System.Composition.Runtime.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/System.Composition.TypedParts.dll b/TrafagSalesExporter/build_verify/orchestrator_split/System.Composition.TypedParts.dll new file mode 100644 index 0000000..7c0c780 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/System.Composition.TypedParts.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/System.IO.Packaging.dll b/TrafagSalesExporter/build_verify/orchestrator_split/System.IO.Packaging.dll new file mode 100644 index 0000000..eb95db7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/System.IO.Packaging.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/System.IdentityModel.Tokens.Jwt.dll b/TrafagSalesExporter/build_verify/orchestrator_split/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..442c7a3 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/System.Memory.Data.dll b/TrafagSalesExporter/build_verify/orchestrator_split/System.Memory.Data.dll new file mode 100644 index 0000000..a9bb64f Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/System.Memory.Data.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/System.Security.Cryptography.ProtectedData.dll b/TrafagSalesExporter/build_verify/orchestrator_split/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..3feb9f9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/System.Security.Cryptography.ProtectedData.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/TrafagSalesExporter.deps.json b/TrafagSalesExporter/build_verify/orchestrator_split/TrafagSalesExporter.deps.json new file mode 100644 index 0000000..b097214 --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/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/orchestrator_split/TrafagSalesExporter.dll b/TrafagSalesExporter/build_verify/orchestrator_split/TrafagSalesExporter.dll new file mode 100644 index 0000000..c6dcd11 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/TrafagSalesExporter.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/TrafagSalesExporter.pdb b/TrafagSalesExporter/build_verify/orchestrator_split/TrafagSalesExporter.pdb new file mode 100644 index 0000000..81d2103 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/TrafagSalesExporter.pdb differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/TrafagSalesExporter.runtimeconfig.json b/TrafagSalesExporter/build_verify/orchestrator_split/TrafagSalesExporter.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/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/orchestrator_split/TrafagSalesExporter.staticwebassets.endpoints.json b/TrafagSalesExporter/build_verify/orchestrator_split/TrafagSalesExporter.staticwebassets.endpoints.json new file mode 100644 index 0000000..10cf121 --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/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/orchestrator_split/TrafagSalesExporter.staticwebassets.runtime.json b/TrafagSalesExporter/build_verify/orchestrator_split/TrafagSalesExporter.staticwebassets.runtime.json new file mode 100644 index 0000000..57043fd --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/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/orchestrator_split/appsettings.json b/TrafagSalesExporter/build_verify/orchestrator_split/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/central_export/TrafagSalesExporter.deps.json b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/central_export/TrafagSalesExporter.deps.json new file mode 100644 index 0000000..b097214 --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/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/orchestrator_split/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/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/orchestrator_split/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json new file mode 100644 index 0000000..10cf121 --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/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/orchestrator_split/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json new file mode 100644 index 0000000..57043fd --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/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/orchestrator_split/build_verify/central_export/appsettings.json b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/central_export/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/central_export/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/TrafagSalesExporter.deps.json b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/TrafagSalesExporter.deps.json new file mode 100644 index 0000000..b097214 --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/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/orchestrator_split/build_verify/patterns/TrafagSalesExporter.runtimeconfig.json b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/TrafagSalesExporter.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/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/orchestrator_split/build_verify/patterns/TrafagSalesExporter.staticwebassets.endpoints.json b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/TrafagSalesExporter.staticwebassets.endpoints.json new file mode 100644 index 0000000..10cf121 --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/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/orchestrator_split/build_verify/patterns/TrafagSalesExporter.staticwebassets.runtime.json b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/TrafagSalesExporter.staticwebassets.runtime.json new file mode 100644 index 0000000..57043fd --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/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/orchestrator_split/build_verify/patterns/appsettings.json b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.deps.json b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.deps.json new file mode 100644 index 0000000..b097214 --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/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/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/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/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json new file mode 100644 index 0000000..10cf121 --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/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/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json new file mode 100644 index 0000000..57043fd --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/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/orchestrator_split/build_verify/patterns/build_verify/central_export/appsettings.json b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TrafagSalesExporter/build_verify/orchestrator_split/build_verify/patterns/build_verify/central_export/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..b08ba21 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..eba2a5a Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..ff203e1 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/cs/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..fe89036 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..3dda417 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..4d3bd0a Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..c41bb1f Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/de/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/de/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..05845f2 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..1e5038d Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..456ac85 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..7bb3187 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/es/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/es/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..01edef3 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..de36d31 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..71d6443 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..23107b9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/fr/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..291cf9b Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..ef0d337 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..f266330 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..6affe5c Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/it/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/it/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..263bd04 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..a94da35 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..c94e8e6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..6e0e837 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/ja/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..212267a Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..1fae94d Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..b2e573c Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..fdbe6ff Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/ko/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..5fee24c Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..9533b36 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..fa25298 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..1297d58 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/pl/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..8af36a3 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..197797b Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..0fd342c Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..c09c2ab Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/pt-BR/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..d6eaab6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..ecfe483 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..e9133a5 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..baa7776 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/ru/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..74714d8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a b/TrafagSalesExporter/build_verify/orchestrator_split/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/orchestrator_split/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-arm/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..8520492 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-arm64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..30b84ea Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-armel/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..48de629 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-mips64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..4f7d693 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-musl-arm/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-musl-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..2c9dcda Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-musl-arm/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-musl-arm64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-musl-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..53949cf Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-musl-arm64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-musl-x64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..a043d7d Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-ppc64le/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-ppc64le/native/libe_sqlite3.so new file mode 100644 index 0000000..3593c9b Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-ppc64le/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-s390x/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-s390x/native/libe_sqlite3.so new file mode 100644 index 0000000..7e01b91 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-s390x/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-x64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..a8f9ae0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-x86/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..f9a9b69 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..e6612c5 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3ad1142 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/osx-arm64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/osx-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..21a8f42 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/osx-arm64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/osx-x64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..ffaf82f Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/win-arm/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..454821f Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/win-arm64/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..70805d9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/win-x64/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..379665c Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/win-x86/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..c0e722d Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/TrafagSalesExporter/build_verify/orchestrator_split/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/orchestrator_split/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..2fbf86e Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..4c57b04 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..b551e37 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/tr/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..8758fff Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..de4fe51 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..67b261c Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..c6b8d86 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..a14ec60 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..2d39791 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..86802cf Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..691a8fa Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..e8e4ee0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/orchestrator_split/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Azure.Core.dll b/TrafagSalesExporter/build_verify/patterns/Azure.Core.dll new file mode 100644 index 0000000..1b0de61 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Azure.Core.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Azure.Identity.dll b/TrafagSalesExporter/build_verify/patterns/Azure.Identity.dll new file mode 100644 index 0000000..c64a0db Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Azure.Identity.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/ClosedXML.Parser.dll b/TrafagSalesExporter/build_verify/patterns/ClosedXML.Parser.dll new file mode 100644 index 0000000..1613f29 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/ClosedXML.Parser.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/ClosedXML.dll b/TrafagSalesExporter/build_verify/patterns/ClosedXML.dll new file mode 100644 index 0000000..fcaf164 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/ClosedXML.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/DocumentFormat.OpenXml.Framework.dll b/TrafagSalesExporter/build_verify/patterns/DocumentFormat.OpenXml.Framework.dll new file mode 100644 index 0000000..895c615 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/DocumentFormat.OpenXml.Framework.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/DocumentFormat.OpenXml.dll b/TrafagSalesExporter/build_verify/patterns/DocumentFormat.OpenXml.dll new file mode 100644 index 0000000..dbc29d1 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/DocumentFormat.OpenXml.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/ExcelNumberFormat.dll b/TrafagSalesExporter/build_verify/patterns/ExcelNumberFormat.dll new file mode 100644 index 0000000..aaf7bf8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/ExcelNumberFormat.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Humanizer.dll b/TrafagSalesExporter/build_verify/patterns/Humanizer.dll new file mode 100644 index 0000000..c9a7ef8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Humanizer.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.AspNetCore.Authorization.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 0000000..6cc4edc Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.AspNetCore.Authorization.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.AspNetCore.Components.Forms.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.AspNetCore.Components.Forms.dll new file mode 100644 index 0000000..8846e9f Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.AspNetCore.Components.Web.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.AspNetCore.Components.Web.dll new file mode 100644 index 0000000..17618af Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.AspNetCore.Components.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.AspNetCore.Components.dll new file mode 100644 index 0000000..f83f23a Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.AspNetCore.Components.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.AspNetCore.Metadata.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 0000000..c58acf9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.AspNetCore.Metadata.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Bcl.AsyncInterfaces.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..fe6ba4c Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Bcl.Memory.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Bcl.Memory.dll new file mode 100644 index 0000000..84f76cb Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Bcl.Memory.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100644 index 0000000..dc218f9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.CodeAnalysis.CSharp.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.CodeAnalysis.CSharp.dll new file mode 100644 index 0000000..412e7ed Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.CodeAnalysis.Workspaces.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100644 index 0000000..8dec441 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.CodeAnalysis.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.CodeAnalysis.dll new file mode 100644 index 0000000..79e9046 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.CodeAnalysis.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Data.Sqlite.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..5e5f13b Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Data.Sqlite.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.EntityFrameworkCore.Abstractions.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100644 index 0000000..c972d3e Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.EntityFrameworkCore.Design.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.EntityFrameworkCore.Design.dll new file mode 100644 index 0000000..dc960cd Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.EntityFrameworkCore.Relational.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100644 index 0000000..e980332 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.EntityFrameworkCore.Sqlite.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.EntityFrameworkCore.Sqlite.dll new file mode 100644 index 0000000..58df708 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.EntityFrameworkCore.Sqlite.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.EntityFrameworkCore.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.EntityFrameworkCore.dll new file mode 100644 index 0000000..1e9773e Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.EntityFrameworkCore.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Caching.Memory.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Caching.Memory.dll new file mode 100644 index 0000000..077b1b6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..81ed3de Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.DependencyInjection.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..bd71a2b Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.DependencyModel.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..8905537 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.DependencyModel.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Localization.Abstractions.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Localization.Abstractions.dll new file mode 100644 index 0000000..8766429 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Localization.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Localization.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Localization.dll new file mode 100644 index 0000000..eb2d5db Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Localization.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Logging.Abstractions.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..f9d1dc6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Logging.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..35905b6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Logging.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Options.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..a7b3f21 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Extensions.Options.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Graph.Core.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Graph.Core.dll new file mode 100644 index 0000000..c97ca10 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Graph.Core.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Graph.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Graph.dll new file mode 100644 index 0000000..5f36dad Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Graph.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Identity.Client.Extensions.Msal.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Identity.Client.Extensions.Msal.dll new file mode 100644 index 0000000..a401863 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Identity.Client.Extensions.Msal.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Identity.Client.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Identity.Client.dll new file mode 100644 index 0000000..49b6979 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Identity.Client.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Abstractions.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Abstractions.dll new file mode 100644 index 0000000..9634859 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.JsonWebTokens.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..255c7c7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Logging.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..1df208a Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Logging.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..4d6ff2f Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Protocols.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..e4d4c63 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Protocols.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Tokens.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..51cfca8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Tokens.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Validators.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Validators.dll new file mode 100644 index 0000000..29e99ca Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.IdentityModel.Validators.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.JSInterop.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.JSInterop.dll new file mode 100644 index 0000000..8e7a162 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.JSInterop.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Abstractions.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Abstractions.dll new file mode 100644 index 0000000..d06e8a0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Abstractions.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Authentication.Azure.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Authentication.Azure.dll new file mode 100644 index 0000000..39cfa97 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Authentication.Azure.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Http.HttpClientLibrary.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Http.HttpClientLibrary.dll new file mode 100644 index 0000000..4a6ea19 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Http.HttpClientLibrary.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Serialization.Form.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Serialization.Form.dll new file mode 100644 index 0000000..e0cca44 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Serialization.Form.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Serialization.Json.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Serialization.Json.dll new file mode 100644 index 0000000..cf2e11e Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Serialization.Json.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Serialization.Multipart.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Serialization.Multipart.dll new file mode 100644 index 0000000..aa260a7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Serialization.Multipart.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Serialization.Text.dll b/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Serialization.Text.dll new file mode 100644 index 0000000..09e8c49 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Microsoft.Kiota.Serialization.Text.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Mono.TextTemplating.dll b/TrafagSalesExporter/build_verify/patterns/Mono.TextTemplating.dll new file mode 100644 index 0000000..d5a4b3c Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Mono.TextTemplating.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/MudBlazor.dll b/TrafagSalesExporter/build_verify/patterns/MudBlazor.dll new file mode 100644 index 0000000..37dec92 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/MudBlazor.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/RBush.dll b/TrafagSalesExporter/build_verify/patterns/RBush.dll new file mode 100644 index 0000000..a4a305b Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/RBush.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/SQLitePCLRaw.batteries_v2.dll b/TrafagSalesExporter/build_verify/patterns/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..f9eb46b Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/SQLitePCLRaw.batteries_v2.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/SQLitePCLRaw.core.dll b/TrafagSalesExporter/build_verify/patterns/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..556d40f Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/SQLitePCLRaw.core.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/SQLitePCLRaw.provider.e_sqlite3.dll b/TrafagSalesExporter/build_verify/patterns/SQLitePCLRaw.provider.e_sqlite3.dll new file mode 100644 index 0000000..fc5919d Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/SQLitePCLRaw.provider.e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Sap.Data.Hana.Core.v2.1.dll b/TrafagSalesExporter/build_verify/patterns/Sap.Data.Hana.Core.v2.1.dll new file mode 100644 index 0000000..f385978 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Sap.Data.Hana.Core.v2.1.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Sap.Data.Hana.Core.v2.1.pdb b/TrafagSalesExporter/build_verify/patterns/Sap.Data.Hana.Core.v2.1.pdb new file mode 100644 index 0000000..5b49f2a Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Sap.Data.Hana.Core.v2.1.pdb differ diff --git a/TrafagSalesExporter/build_verify/patterns/SixLabors.Fonts.dll b/TrafagSalesExporter/build_verify/patterns/SixLabors.Fonts.dll new file mode 100644 index 0000000..281d8a7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/SixLabors.Fonts.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/Std.UriTemplate.dll b/TrafagSalesExporter/build_verify/patterns/Std.UriTemplate.dll new file mode 100644 index 0000000..104cbae Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/Std.UriTemplate.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/System.ClientModel.dll b/TrafagSalesExporter/build_verify/patterns/System.ClientModel.dll new file mode 100644 index 0000000..2657496 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/System.ClientModel.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/System.CodeDom.dll b/TrafagSalesExporter/build_verify/patterns/System.CodeDom.dll new file mode 100644 index 0000000..3128b6a Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/System.CodeDom.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/System.Composition.AttributedModel.dll b/TrafagSalesExporter/build_verify/patterns/System.Composition.AttributedModel.dll new file mode 100644 index 0000000..d37283b Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/System.Composition.AttributedModel.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/System.Composition.Convention.dll b/TrafagSalesExporter/build_verify/patterns/System.Composition.Convention.dll new file mode 100644 index 0000000..b6fa4ab Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/System.Composition.Convention.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/System.Composition.Hosting.dll b/TrafagSalesExporter/build_verify/patterns/System.Composition.Hosting.dll new file mode 100644 index 0000000..c67f1c0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/System.Composition.Hosting.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/System.Composition.Runtime.dll b/TrafagSalesExporter/build_verify/patterns/System.Composition.Runtime.dll new file mode 100644 index 0000000..2a4b38c Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/System.Composition.Runtime.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/System.Composition.TypedParts.dll b/TrafagSalesExporter/build_verify/patterns/System.Composition.TypedParts.dll new file mode 100644 index 0000000..7c0c780 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/System.Composition.TypedParts.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/System.IO.Packaging.dll b/TrafagSalesExporter/build_verify/patterns/System.IO.Packaging.dll new file mode 100644 index 0000000..eb95db7 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/System.IO.Packaging.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/System.IdentityModel.Tokens.Jwt.dll b/TrafagSalesExporter/build_verify/patterns/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..442c7a3 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/System.Memory.Data.dll b/TrafagSalesExporter/build_verify/patterns/System.Memory.Data.dll new file mode 100644 index 0000000..a9bb64f Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/System.Memory.Data.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/System.Security.Cryptography.ProtectedData.dll b/TrafagSalesExporter/build_verify/patterns/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..3feb9f9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/System.Security.Cryptography.ProtectedData.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/TrafagSalesExporter.deps.json b/TrafagSalesExporter/build_verify/patterns/TrafagSalesExporter.deps.json new file mode 100644 index 0000000..b097214 --- /dev/null +++ b/TrafagSalesExporter/build_verify/patterns/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/patterns/TrafagSalesExporter.dll b/TrafagSalesExporter/build_verify/patterns/TrafagSalesExporter.dll new file mode 100644 index 0000000..67ca3e0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/TrafagSalesExporter.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/TrafagSalesExporter.pdb b/TrafagSalesExporter/build_verify/patterns/TrafagSalesExporter.pdb new file mode 100644 index 0000000..3728447 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/TrafagSalesExporter.pdb differ diff --git a/TrafagSalesExporter/build_verify/patterns/TrafagSalesExporter.runtimeconfig.json b/TrafagSalesExporter/build_verify/patterns/TrafagSalesExporter.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/TrafagSalesExporter/build_verify/patterns/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/patterns/TrafagSalesExporter.staticwebassets.endpoints.json b/TrafagSalesExporter/build_verify/patterns/TrafagSalesExporter.staticwebassets.endpoints.json new file mode 100644 index 0000000..10cf121 --- /dev/null +++ b/TrafagSalesExporter/build_verify/patterns/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/patterns/TrafagSalesExporter.staticwebassets.runtime.json b/TrafagSalesExporter/build_verify/patterns/TrafagSalesExporter.staticwebassets.runtime.json new file mode 100644 index 0000000..57043fd --- /dev/null +++ b/TrafagSalesExporter/build_verify/patterns/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/patterns/appsettings.json b/TrafagSalesExporter/build_verify/patterns/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TrafagSalesExporter/build_verify/patterns/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TrafagSalesExporter/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.deps.json b/TrafagSalesExporter/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.deps.json new file mode 100644 index 0000000..b097214 --- /dev/null +++ b/TrafagSalesExporter/build_verify/patterns/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/patterns/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json b/TrafagSalesExporter/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/TrafagSalesExporter/build_verify/patterns/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/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json b/TrafagSalesExporter/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.endpoints.json new file mode 100644 index 0000000..10cf121 --- /dev/null +++ b/TrafagSalesExporter/build_verify/patterns/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/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json b/TrafagSalesExporter/build_verify/patterns/build_verify/central_export/TrafagSalesExporter.staticwebassets.runtime.json new file mode 100644 index 0000000..57043fd --- /dev/null +++ b/TrafagSalesExporter/build_verify/patterns/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/patterns/build_verify/central_export/appsettings.json b/TrafagSalesExporter/build_verify/patterns/build_verify/central_export/appsettings.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TrafagSalesExporter/build_verify/patterns/build_verify/central_export/appsettings.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TrafagSalesExporter/build_verify/patterns/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..b08ba21 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/patterns/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..eba2a5a Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..ff203e1 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/cs/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/patterns/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..fe89036 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..3dda417 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/patterns/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..4d3bd0a Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..c41bb1f Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/de/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/patterns/de/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..05845f2 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..1e5038d Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/patterns/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..456ac85 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..7bb3187 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/es/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/patterns/es/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..01edef3 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..de36d31 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/patterns/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..71d6443 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..23107b9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/fr/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/patterns/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..291cf9b Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..ef0d337 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/patterns/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..f266330 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..6affe5c Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/it/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/patterns/it/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..263bd04 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..a94da35 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/patterns/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..c94e8e6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..6e0e837 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/ja/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/patterns/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..212267a Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..1fae94d Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/patterns/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..b2e573c Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..fdbe6ff Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/ko/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/patterns/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..5fee24c Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..9533b36 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/patterns/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..fa25298 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..1297d58 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/pl/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/patterns/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..8af36a3 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..197797b Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/patterns/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..0fd342c Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..c09c2ab Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/pt-BR/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/patterns/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..d6eaab6 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..ecfe483 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/patterns/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..e9133a5 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..baa7776 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/ru/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/patterns/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..74714d8 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a b/TrafagSalesExporter/build_verify/patterns/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/patterns/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/linux-arm/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..8520492 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/linux-arm64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..30b84ea Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/linux-armel/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..48de629 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/linux-mips64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..4f7d693 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/linux-musl-arm/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-musl-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..2c9dcda Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-musl-arm/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/linux-musl-arm64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-musl-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..53949cf Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-musl-arm64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/linux-musl-x64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..a043d7d Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/linux-ppc64le/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-ppc64le/native/libe_sqlite3.so new file mode 100644 index 0000000..3593c9b Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-ppc64le/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/linux-s390x/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-s390x/native/libe_sqlite3.so new file mode 100644 index 0000000..7e01b91 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-s390x/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/linux-x64/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..a8f9ae0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/linux-x86/native/libe_sqlite3.so b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..f9a9b69 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/patterns/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..e6612c5 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/patterns/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3ad1142 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/osx-arm64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/patterns/runtimes/osx-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..21a8f42 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/osx-arm64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/osx-x64/native/libe_sqlite3.dylib b/TrafagSalesExporter/build_verify/patterns/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..ffaf82f Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/win-arm/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/patterns/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..454821f Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/win-arm64/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/patterns/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..70805d9 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/win-x64/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/patterns/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..379665c Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/win-x86/native/e_sqlite3.dll b/TrafagSalesExporter/build_verify/patterns/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..c0e722d Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/TrafagSalesExporter/build_verify/patterns/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/patterns/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..2fbf86e Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/patterns/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..4c57b04 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..b551e37 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/tr/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/patterns/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..8758fff Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..de4fe51 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/patterns/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..67b261c Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..c6b8d86 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/patterns/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..a14ec60 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..2d39791 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/TrafagSalesExporter/build_verify/patterns/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..86802cf Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TrafagSalesExporter/build_verify/patterns/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..691a8fa Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TrafagSalesExporter/build_verify/patterns/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/TrafagSalesExporter/build_verify/patterns/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..e8e4ee0 Binary files /dev/null and b/TrafagSalesExporter/build_verify/patterns/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ