diff --git a/.vs/AVS/DesignTimeBuild/.dtbcache.v2 b/.vs/AVS/DesignTimeBuild/.dtbcache.v2 index 8546481..02ad485 100644 Binary files a/.vs/AVS/DesignTimeBuild/.dtbcache.v2 and b/.vs/AVS/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/AVS/FileContentIndex/38107928-7234-4368-8521-35383a0cc4ac.vsidx b/.vs/AVS/FileContentIndex/38107928-7234-4368-8521-35383a0cc4ac.vsidx deleted file mode 100644 index a7d76f1..0000000 Binary files a/.vs/AVS/FileContentIndex/38107928-7234-4368-8521-35383a0cc4ac.vsidx and /dev/null differ diff --git a/.vs/AVS/v16/.suo b/.vs/AVS/v16/.suo index a844675..178b55b 100644 Binary files a/.vs/AVS/v16/.suo and b/.vs/AVS/v16/.suo differ diff --git a/.vs/AVS/v17/.suo b/.vs/AVS/v17/.suo index a500a5d..109bd33 100644 Binary files a/.vs/AVS/v17/.suo and b/.vs/AVS/v17/.suo differ diff --git a/.vs/ProjectEvaluation/avs.metadata.v7.bin b/.vs/ProjectEvaluation/avs.metadata.v7.bin index 39e9292..7d46396 100644 Binary files a/.vs/ProjectEvaluation/avs.metadata.v7.bin and b/.vs/ProjectEvaluation/avs.metadata.v7.bin differ diff --git a/.vs/ProjectEvaluation/avs.projects.v7.bin b/.vs/ProjectEvaluation/avs.projects.v7.bin index 184563b..45435bf 100644 Binary files a/.vs/ProjectEvaluation/avs.projects.v7.bin and b/.vs/ProjectEvaluation/avs.projects.v7.bin differ diff --git a/AVS.csproj b/AVS.csproj index 1713437..e925ae7 100644 --- a/AVS.csproj +++ b/AVS.csproj @@ -5,7 +5,7 @@ netcoreapp3.1 true 1.0.0.0 - 1.0.0.1 + 1.0.0.2 @@ -41,7 +41,7 @@ - + diff --git a/CartonForm.cs b/CartonForm.cs index 7a10c9b..c15aab5 100644 --- a/CartonForm.cs +++ b/CartonForm.cs @@ -15,13 +15,18 @@ namespace AVS { public SoundPlayer soundPlayer = new SoundPlayer(); public int ID; - - public CartonForm(string modelNO, int id) + MODELLog log = new MODELLog(); + SKULog skulog; + DailyLog dailylog; + LiteDbClass liteDbClass = new LiteDbClass(null); + public CartonForm(string modelNO, int id, DailyLog dailylog, SKULog skulog) { InitializeComponent(); this.ControlBox = false; txt_model_no.Text = modelNO; ID = id; + this.skulog = skulog; + this.dailylog = dailylog; } private void txt_barcode_KeyPress(object sender, KeyPressEventArgs e) @@ -36,26 +41,38 @@ namespace AVS //Remove unique date from shipping mark if (txt_barcode.Text.Contains(";")) { - txt_barcode.Text = txt_barcode.Text.Split(';')[0].Trim(); - + var parts = txt_barcode.Text.Split(';'); + txt_barcode.Text = parts[0].Trim(); + log.QR = parts.Length > 1 ? parts[1].Trim() : string.Empty; + } + else + { + log.QR = txt_barcode.Text.ToUpper().TrimEnd(); } if (txt_model_no.Text.ToUpper().TrimEnd() == txt_barcode.Text.ToUpper().TrimEnd()) { + lbl_status.ForeColor = Color.Green; lbl_status.Text = "CARTON MATCHED"; panel1.Visible = false; // Optionally hide the form without closing HideFormOrReset(); - // Set up a timer to close the form after 5 seconds - ////Timer timer = new Timer(); - ////timer.Interval = 1000; // 5 seconds - ////timer.Tick += (s, args) => - ////{ - //// timer.Stop(); // Stop the timer - //// this.Close(); // Close the form - ////}; - ////timer.Start(); + + + // Create carton entry + string formattedDate = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); + + log.MODEL_NO = txt_model_no.Text.ToUpper().TrimEnd(); + log.SYS_IP = dailylog.SYS_IP; + log.RECORD_DATE = DateTime.Parse(formattedDate); + log.USER_ID = skulog.USER_ID; + log.LIVE_WEIGHT = Convert.ToDecimal(skulog.ItemsPerBox) * Convert.ToDecimal(skulog.NetWeightKg); + log.PC_NAME = dailylog.PC_NAME; + log.MARKET_PLACE = skulog.MARKET_PLACE; + log.USER_ID = dailylog.USER_ID; + + liteDbClass.InsertRecord("MODELLogs", log, "CONTAINER_NO", "MODEL_NO"); } else { @@ -67,12 +84,13 @@ namespace AVS lbl_status.ForeColor = Color.Red; lbl_status.Text = "WRONG CARTON"; showControls(); - //PlayAlertSound(); + PlayAlertSound(); this.Hide(); // Hide the MainForm - LoginForm loginForm = new LoginForm(this, false,null); - loginForm.Show(); + LoginForm loginForm = new LoginForm(this, false, "SHIPPING"); + loginForm.StartPosition = FormStartPosition.CenterParent; // optional: center over parent + loginForm.ShowDialog(this); // ✅ Blocks current form and stays on top } @@ -117,7 +135,7 @@ namespace AVS { if (soundPlayer != null) { - soundPlayer.Stop(); + //soundPlayer.Stop(); } } } diff --git a/LiteDbClass.cs b/LiteDbClass.cs index 6bc64df..1fa25aa 100644 --- a/LiteDbClass.cs +++ b/LiteDbClass.cs @@ -67,7 +67,39 @@ namespace AVS Console.WriteLine($"Error closing SQLite connection: {ex.Message}"); } } + public bool InsertOrUpdateWeightTolerance(string FNSKU, string market_place, double weight_tolerance, string avs_name) + { + try + { + OpenConnection(); + string query = @"INSERT OR REPLACE INTO weight_tolerance + (FNSKU, MARKET_PLACE, WEIGHT_TOLERANCE, WEIGHT_TOLERANCE_DATETIME) + VALUES (@fnsku, @market_place, @weight_tolerance, @datetime)"; + + using (SQLiteCommand cmd = new SQLiteCommand(query, connection)) + { + cmd.Parameters.AddWithValue("@fnsku", FNSKU); + cmd.Parameters.AddWithValue("@market_place", market_place); + cmd.Parameters.AddWithValue("@weight_tolerance", weight_tolerance); + cmd.Parameters.AddWithValue("@datetime", DateTime.Now); + + + cmd.ExecuteNonQuery(); + } + + return true; + } + catch (Exception ex) + { + Console.WriteLine($"InsertOrUpdate Error: {ex.Message}"); + return false; + } + finally + { + CloseConnection(); + } + } public void UpdateSKURecord(string tableName, string oldSKU, string newSKU) { try @@ -104,7 +136,43 @@ namespace AVS CloseConnection(); } } + public double GetWeightTolerance(string fnsku, string marketPlace) + { + double weightTolerance = 0; + try + { + OpenConnection(); + + string query = @" + SELECT weight_tolerance + FROM weight_tolerance + WHERE FNSKU = @fnsku AND MARKET_PLACE = @market_place"; + + using (SQLiteCommand cmd = new SQLiteCommand(query, connection)) + { + cmd.Parameters.AddWithValue("@fnsku", fnsku); + cmd.Parameters.AddWithValue("@market_place", marketPlace); + + var result = cmd.ExecuteScalar(); + + if (result != null && result != DBNull.Value) + { + weightTolerance = Convert.ToDouble(result); + } + } + } + catch (Exception ex) + { + Console.WriteLine($"Error fetching weight tolerance: {ex.Message}"); + } + finally + { + CloseConnection(); + } + + return weightTolerance; + } public void InsertRecord(string tableName, T record, string property, string property2) { try @@ -424,7 +492,7 @@ namespace AVS return LogList; } - + public void DeleteRow(string FNSKU, string market_place) { @@ -857,6 +925,93 @@ namespace AVS } } + public void CreateToleranceTable(string tableName, List columns) + { + if (columns == null || columns.Count == 0) + { + Console.WriteLine("No columns provided to create the table."); + return; + } + + try + { + OpenConnection(); + + // Check if table exists + string tableExistsQuery = $"SELECT name FROM sqlite_master WHERE type='table' AND name=@tableName"; + bool tableExists = false; + + using (SQLiteCommand checkTableCmd = new SQLiteCommand(tableExistsQuery, connection)) + { + checkTableCmd.Parameters.AddWithValue("@tableName", tableName); + + using (SQLiteDataReader reader = checkTableCmd.ExecuteReader()) + { + tableExists = reader.HasRows; + } + } + + if (!tableExists) + { + // Build columns definition + string columnsDefinition = AVS.WeightTolerance.GetColumnsDefinition(columns); + + // 🆕 ADD UNIQUE CONSTRAINT to table definition + columnsDefinition += ", UNIQUE(FNSKU, MARKET_PLACE)"; + + string createTableCommand = $"CREATE TABLE \"{tableName}\" ({columnsDefinition})"; + + using (SQLiteCommand cmd = new SQLiteCommand(createTableCommand, connection)) + { + cmd.ExecuteNonQuery(); + } + + Console.WriteLine($"Table '{tableName}' created with UNIQUE constraint on (FNSKU, MARKET_PLACE)."); + } + else + { + // Get existing columns once + List existingColumns = new List(); + + string columnListQuery = $"PRAGMA table_info(\"{tableName}\")"; + using (SQLiteCommand getColumnsCmd = new SQLiteCommand(columnListQuery, connection)) + { + using (SQLiteDataReader reader = getColumnsCmd.ExecuteReader()) + { + while (reader.Read()) + { + existingColumns.Add(reader["name"].ToString()); + } + } + } + + // Now check and add missing columns + foreach (var column in columns) + { + if (!existingColumns.Contains(column.Name)) + { + string addColumnCommand = $"ALTER TABLE \"{tableName}\" ADD COLUMN {column.Name} {column.DataType}"; + + using (SQLiteCommand addColumnCmd = new SQLiteCommand(addColumnCommand, connection)) + { + addColumnCmd.ExecuteNonQuery(); + } + + Console.WriteLine($"Column '{column.Name}' added to table '{tableName}'."); + } + } + } + } + catch (Exception ex) + { + Console.WriteLine($"Error creating or modifying table: {ex.Message}"); + } + finally + { + CloseConnection(); + } + } + public async Task> GetAllLogsFromDatabaseAsyncCarton() { @@ -1122,19 +1277,19 @@ namespace AVS DeleteAllLogsFromDatabaseCarton(); - MessageBox.Show("DATA POSTED SUCCESSFULLY ! "); + // MessageBox.Show("DATA POSTED SUCCESSFULLY ! "); _mainForm.btn_post_data.Enabled = true; } else { - MessageBox.Show("ERROR POSTING DATA ! " + response.StatusCode); + // MessageBox.Show("ERROR POSTING DATA ! " + response.StatusCode); _mainForm.btn_post_data.Enabled = true; } } else { - MessageBox.Show("NO DATA FOUND ! "); + //MessageBox.Show("NO DATA FOUND ! "); _mainForm.btn_post_data.Enabled = true; } } diff --git a/LoginForm.cs b/LoginForm.cs index 86f2d98..f7c975d 100644 --- a/LoginForm.cs +++ b/LoginForm.cs @@ -13,6 +13,7 @@ namespace AVS public partial class LoginForm : MaterialForm { private MainForm mainForm = null; + private CartonForm cartonForm = null; static ConnectionClass ConnectionClass = new ConnectionClass(); SoundPlayer soundplayerNew = null; private static string SERVER_URL; @@ -22,40 +23,72 @@ namespace AVS public static string password; public bool bool_cb_cont = false; + public LoginForm(Form callingForm, bool val, string value) { InitializeComponent(); - if (callingForm != null) + + if (val == true) { - if (val == true) + bool_cb_cont = true; + } + + if (callingForm is MainForm mf) + { + mainForm = mf; + if (mainForm.soundPlayer != null) + soundplayerNew = mainForm.soundPlayer; + } + else if (callingForm is CartonForm cf) + { + cartonForm = cf; + if (cartonForm.soundPlayer != null) + soundplayerNew = cartonForm.soundPlayer; + + } + else + { + // fallback player + // soundplayerNew = new SoundPlayer(); + } + + if (!string.IsNullOrEmpty(value)) + { + if (value == "LOGIN") { - bool_cb_cont = true; + lbl_wrong.Visible = false; + lbl_login.Visible = true; } - mainForm = callingForm as MainForm; - soundplayerNew = mainForm.soundPlayer; - if (value != null) + else if (value == "LOGOUT") { - lbl_wrong.Visible = true; - lbl_login.Visible = false; - lbl_wrong.Text = "Wrong Weight"; + } else { lbl_wrong.Visible = true; lbl_login.Visible = false; - } - } + lbl_wrong.Text = "Wrong Shipping Mark"; + } + + } + else + { + lbl_wrong.Visible = true; + lbl_login.Visible = false; + // lbl_wrong.Text = "Wrong Shipping Mark"; + } MaterialSkinClass.ApplySkin(this); ControlBox = false; - SERVER_URL = ConnectionClass.SERVER_URL.ToString(); + } private void LoginForm_Load(object sender, EventArgs e) { - + //this.Activate(); + //this.Focus(); // If credentials exist, load them if (File.Exists(filePath)) @@ -100,21 +133,33 @@ namespace AVS if (responseString != "Username or password incorrect") { - if (soundplayerNew == null) - { - if (cb_remember.Checked) - { - saveCredentials(); - } - //if (cb_container.Checked) - if (cb_carton.Checked) - { - bool_cb_cont = true; - } - this.Hide(); - MainForm mainForm = new MainForm(txt_userName.Text, bool_cb_cont); - mainForm.Show(); + if (cb_remember.Checked) + { + saveCredentials(); + } + + if (cb_carton.Checked) + { + bool_cb_cont = true; + } + + this.Hide(); + + if (mainForm != null) + { + mainForm.Show(); // restore original MainForm + } + else if (cartonForm != null) + { + cartonForm.soundPlayer.Stop(); // stop alarm + cartonForm.Show(); // return to CartonForm + } + else + { + // fallback if both are null + MainForm fallback = new MainForm(txt_userName.Text, bool_cb_cont); + fallback.Show(); } } else @@ -156,11 +201,16 @@ namespace AVS private void CloseAlertWindow() { - DateTime dt = DateTime.MinValue; - this.mainForm.ScanTimeText = dt; + DateTime dt = DateTime.Now; + var openMainForm = Application.OpenForms.OfType().FirstOrDefault(); + + if (openMainForm != null) + { + openMainForm.ScanTimeText = dt; + openMainForm.Show(); + } + this.Close(); - MainForm mainForm = Application.OpenForms.OfType().FirstOrDefault(); - mainForm?.Show(); } private static bool tryReadCredentials(out string username, out string password) diff --git a/MainForm.Designer.cs b/MainForm.Designer.cs index 1e28010..e26336d 100644 --- a/MainForm.Designer.cs +++ b/MainForm.Designer.cs @@ -76,6 +76,7 @@ namespace AVS this.label1 = new System.Windows.Forms.Label(); this.lbl_counter = new System.Windows.Forms.Label(); this.panel3 = new System.Windows.Forms.Panel(); + this.lbl_total = new System.Windows.Forms.Label(); this.btn_save_tol = new System.Windows.Forms.Button(); this.lbl_weightTolerance = new System.Windows.Forms.Label(); this.txt_weight_tol = new System.Windows.Forms.TextBox(); @@ -755,6 +756,7 @@ namespace AVS | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.panel3.BackColor = System.Drawing.Color.Silver; + this.panel3.Controls.Add(this.lbl_total); this.panel3.Controls.Add(this.btn_delete); this.panel3.Controls.Add(this.btn_save_tol); this.panel3.Controls.Add(this.btn_reset_port); @@ -771,6 +773,20 @@ namespace AVS this.panel3.TabIndex = 52; this.panel3.Paint += new System.Windows.Forms.PaintEventHandler(this.panel3_Paint); // + // lbl_total + // + this.lbl_total.AutoSize = true; + this.lbl_total.BackColor = System.Drawing.Color.Transparent; + this.lbl_total.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.lbl_total.Font = new System.Drawing.Font("Arial", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point); + this.lbl_total.ForeColor = System.Drawing.Color.Black; + this.lbl_total.Location = new System.Drawing.Point(35, 88); + this.lbl_total.Name = "lbl_total"; + this.lbl_total.Size = new System.Drawing.Size(141, 39); + this.lbl_total.TabIndex = 58; + this.lbl_total.Text = "Total : 0"; + this.lbl_total.Visible = false; + // // btn_save_tol // this.btn_save_tol.Location = new System.Drawing.Point(251, 128); @@ -912,6 +928,7 @@ namespace AVS private System.Windows.Forms.Button btn_save_tol; private System.Windows.Forms.Label lbl_weightTolerance; private System.Windows.Forms.TextBox txt_weight_tol; + private System.Windows.Forms.Label lbl_total; } } diff --git a/MainForm.cs b/MainForm.cs index 8da4e11..ee57483 100644 --- a/MainForm.cs +++ b/MainForm.cs @@ -36,6 +36,7 @@ namespace AVS { public partial class MainForm : MaterialForm { + // Define the necessary P/Invoke signatures const uint DIGCF_PRESENT = 0x00000002; const uint DIGCF_ALLCLASSES = 0x00000004; @@ -118,10 +119,15 @@ namespace AVS private System.Threading.Timer _timer; + + WeightTolerance WeightTolerance = new WeightTolerance(); //[STAThread] public SoundPlayer soundPlayer = new SoundPlayer(); + + private System.Timers.Timer backgroundTimer; + private MySqlConnectivity dbHelper; public MainForm(string userId, bool cb_carton) { this.AutoScaleMode = AutoScaleMode.Dpi; @@ -147,13 +153,19 @@ namespace AVS liteDbClass.CheckAndCreateDb(); + + List column = MODELLogTable.GetColumns(); + liteDbClass.CreateMODELlogTable("MODELLogs", column); if (cb_carton == true) { global_cb_carton = true; - List columns = MODELLogTable.GetColumns(); - liteDbClass.CreateMODELlogTable("MODELLogs", columns); + dataGridView.DataSource = liteDbClass.showModelData(); + + int total = dataGridView.Rows.Count; + lbl_total.Text = "Total : "+total.ToString(); + } else { @@ -164,6 +176,10 @@ namespace AVS dataGridView.DataSource = liteDbClass.showData(); + List WeightToleranceColumns = AVS.WeightTolerance.WeightToleranceTable.GetColumns(); + liteDbClass.CreateToleranceTable("Weight_Tolerance", WeightToleranceColumns); + + } fillMarketPlaces(); @@ -173,7 +189,8 @@ namespace AVS showToolTips(); - + dbHelper = new MySqlConnectivity(); + StartBackgroundTask(); } public void showToolTips() { @@ -243,7 +260,7 @@ namespace AVS MessageBox.Show("Please select SKU !"); return; } - + } //FOR ONLY CARTON ---------------------------------------------- @@ -268,6 +285,8 @@ namespace AVS // You can use these parts as needed. For example: _ = VerifyBarcodeCarton(part1, "CONT", "", cb_marketplace.Text); + + } else { @@ -367,7 +386,7 @@ namespace AVS public void VerifyBarcodeOffline(string barcode) { lbl_error.Visible = false; - if (Convert.ToDouble(lbl_hold_weight.Text) > 0.121) + if (Convert.ToDouble(lbl_hold_weight.Text) > 0.121) { count++; @@ -392,8 +411,8 @@ namespace AVS IS_FNSKU_WRONG = false, IS_WEIGHT_WRONG = false, USER_ID = userID, - MODEL_NO = log.MODEL_NO, - NET_WEIGHT = Convert.ToDecimal(log.NET_WEIGHT), + MODEL_NO = SKULog.ModelNo, + NET_WEIGHT = Convert.ToDecimal(SKULog.NetWeightKg), MARKET_PLACE = SKULog.MARKET_PLACE, PC_NAME = userTextBox.Text.ToString().ToUpper() @@ -413,12 +432,12 @@ namespace AVS if (int_item_count > 0) { - if (Convert.ToDouble(lbl_hold_weight.Text) > 0.121) + if (Convert.ToDouble(lbl_hold_weight.Text) > 0.121) { boxcount++; lbl_boxCount.Text = "Box count : " + boxcount.ToString(); int id = liteDbClass.GetLastRecord(); - OpenCartonForm(id); + OpenCartonForm(id, Dailylog); } } @@ -476,9 +495,10 @@ namespace AVS IS_FNSKU_WRONG = isFnskuWrong, IS_WEIGHT_WRONG = isWeightWrong, USER_ID = userID, - MODEL_NO = "", - NET_WEIGHT = 0, - PC_NAME = userTextBox.Text.ToString().ToUpper() + MODEL_NO = SKULog.ModelNo, + NET_WEIGHT = Convert.ToDecimal(SKULog.NetWeightKg), + PC_NAME = userTextBox.Text.ToString().ToUpper(), + MARKET_PLACE = SKULog.MARKET_PLACE }; liteDbClass.InsertRecord("DailyLogs", dailyLog, "SKU", null); @@ -940,9 +960,9 @@ namespace AVS LoginForm = new LoginForm(this, val, value); LoginForm.Show(); } - private void OpenCartonForm(int id) + private void OpenCartonForm(int id , DailyLog dailyLog) { - CartonForm cartonForm = new CartonForm(SKULog.ModelNo.Trim(), id); + CartonForm cartonForm = new CartonForm(SKULog.ModelNo.Trim(), id, dailyLog, SKULog); // Disable the maximize and minimize buttons cartonForm.MaximizeBox = false; @@ -996,6 +1016,7 @@ namespace AVS lblBarcode.Text = "Model #"; txt_barcode.MaxLength = 50; panel3.Visible = true; + lbl_total.Visible = true; } @@ -1099,6 +1120,7 @@ namespace AVS lbl_counter.Visible = true; lbl_item_box.Visible = true; lbl_boxCount.Visible = true; + lbl_total.Visible = false; } //timer_weighing.Interval = 1000; @@ -1208,7 +1230,7 @@ namespace AVS SKULog.MARKET_PLACE = selectedRow.Cells["MARKET_PLACE"].Value.ToString(); lbl_market_place.Text = SKULog.MARKET_PLACE; lbl_counter.Text = "Item count : " + liteDbClass.FillCounts(lbl_fnsku.Text, lbl_market_place.Text).ToString(); - txt_weight_tol.Text = WeightTolerance.GetWeightTolerance(fnsku, SKULog.MARKET_PLACE).ToString(); + txt_weight_tol.Text = liteDbClass.GetWeightTolerance(fnsku, SKULog.MARKET_PLACE).ToString(); if (Int16.TryParse(Regex.Match(lbl_counter.Text, @"\d+").Value, out Int16 countt) && Int16.TryParse(Regex.Match(lbl_item_box.Text, @"\d+").Value, out Int16 itemPerBox)) { @@ -1248,10 +1270,7 @@ namespace AVS - private void btn_postData_Click(object sender, EventArgs e) - { - - } + private void btn_update_Click(object sender, EventArgs e) { @@ -1281,7 +1300,7 @@ namespace AVS File.Delete(filePath); this.Close(); - LoginForm form = new LoginForm(null, false,null); + LoginForm form = new LoginForm(null, false,"LOGOUT"); form.Show(); } @@ -1527,7 +1546,7 @@ namespace AVS } // Run the update process in another thread - _ = Task.Delay(500).ContinueWith(async _ => await RunUpdateProcessAsync()); + // _ = Task.Delay(500).ContinueWith(async _ => await RunUpdateProcessAsync()); } @@ -1748,8 +1767,6 @@ namespace AVS public void btn_post_data_Click(object sender, EventArgs e) { - - // Disable the button to prevent multiple clicks btn_post_data.Enabled = false; try @@ -1764,6 +1781,7 @@ namespace AVS { liteDbClass.postDataAsync(); + liteDbClass.postDataAsyncCarton(); count = 0; lbl_counter.Text = "Item count : " + count; boxcount = 0; @@ -2037,7 +2055,7 @@ namespace AVS SKULog.MARKET_PLACE = selectedRow.Cells["MARKET_PLACE"].Value?.ToString(); double weightTolerance = Convert.ToDouble(txt_weight_tol.Text); - bool result = WeightTolerance.InsertOrUpdateWeightTolerance(fnsku, SKULog.MARKET_PLACE, weightTolerance, userTextBox.Text); + bool result = liteDbClass.InsertOrUpdateWeightTolerance(fnsku, SKULog.MARKET_PLACE, weightTolerance, userTextBox.Text); if (result == true) { @@ -2072,6 +2090,14 @@ namespace AVS e.Handled = true; } } + private void StartBackgroundTask() + { + backgroundTimer = new System.Timers.Timer(); + backgroundTimer.Interval = TimeSpan.FromMinutes(30).TotalMilliseconds; // every 30 mins + backgroundTimer.Elapsed += (sender, args) => dbHelper.UpdateClientActivity((userTextBox.Text)); + backgroundTimer.AutoReset = true; + backgroundTimer.Start(); + } } } diff --git a/MySqlConnectivity.cs b/MySqlConnectivity.cs new file mode 100644 index 0000000..606fbef --- /dev/null +++ b/MySqlConnectivity.cs @@ -0,0 +1,73 @@ +using MySql.Data.MySqlClient; +using System; +using System.Net.NetworkInformation; + +namespace AVS +{ + class MySqlConnectivity + { + private readonly string connectionString = "server=utopia-2.c5qech8o9lgg.us-east-1.rds.amazonaws.com;user=itemVerification;password=itemVerification01;database=item_verification_system"; + + public void UpdateClientActivity(string pcName) + { + if (!IsInternetAvailable()) + return; + + using (var conn = new MySqlConnection(connectionString)) + { + conn.Open(); + + long count = 0; + + // First check if line_name exists + string checkQuery = "SELECT COUNT(*) FROM avs_line WHERE line_name = @pcName"; + using (var cmd = new MySqlCommand(checkQuery, conn)) + { + cmd.Parameters.AddWithValue("@pcName", pcName); + count = Convert.ToInt64(cmd.ExecuteScalar()); + } + + string dateTimeNow = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); + + if (count > 0) + { + string updateQuery = "UPDATE avs_line SET last_client_activity = @date WHERE line_name = @pcName"; + using (var updateCmd = new MySqlCommand(updateQuery, conn)) + { + updateCmd.Parameters.AddWithValue("@pcName", pcName); + updateCmd.Parameters.AddWithValue("@date", dateTimeNow); // ✅ correct assignment + updateCmd.ExecuteNonQuery(); + } + } + else + { + string insertQuery = @" + INSERT INTO avs_line + (line_name, site, department, floor, device_type, status, last_client_activity, created_at, department_id) + VALUES (@pcName, '', '', '', 'PC', 1, @date, @date, 0)"; + using (var insertCmd = new MySqlCommand(insertQuery, conn)) + { + insertCmd.Parameters.AddWithValue("@pcName", pcName); + insertCmd.Parameters.AddWithValue("@date", dateTimeNow); // ✅ correct assignment + insertCmd.ExecuteNonQuery(); + } + } + } + } + private bool IsInternetAvailable() + { + try + { + using (var ping = new Ping()) + { + var reply = ping.Send("8.8.8.8", 3000); + return reply.Status == IPStatus.Success; + } + } + catch + { + return false; + } + } + } +} diff --git a/Program.cs b/Program.cs index 9dd6374..adad98f 100644 --- a/Program.cs +++ b/Program.cs @@ -28,33 +28,33 @@ namespace AVS // Path to save the extracted updater file string updaterPath = Path.Combine(Path.GetTempPath(), "AVSUpdater.exe"); - // Check if the updater file already exists - if (!File.Exists(updaterPath)) - { - // Access the embedded resource stream - using (var resourceStream = Assembly.GetExecutingAssembly().GetManifestResourceStream("AVS.AVSUpdater.exe")) - { - if (resourceStream != null) - { - // Create a new file in the temporary folder - using (var fileStream = new FileStream(updaterPath, FileMode.Create, FileAccess.Write)) - { - // Copy the content of the resource stream to the file - resourceStream.CopyTo(fileStream); - } + //// Check if the updater file already exists + //if (!File.Exists(updaterPath)) + //{ + // // Access the embedded resource stream + // using (var resourceStream = Assembly.GetExecutingAssembly().GetManifestResourceStream("AVS.AVSUpdater.exe")) + // { + // if (resourceStream != null) + // { + // // Create a new file in the temporary folder + // using (var fileStream = new FileStream(updaterPath, FileMode.Create, FileAccess.Write)) + // { + // // Copy the content of the resource stream to the file + // resourceStream.CopyTo(fileStream); + // } - Console.WriteLine($"Updater extracted to {updaterPath}"); - } - else - { - Console.WriteLine("Embedded resource not found."); - } - } - } - else - { - Console.WriteLine("Updater already exists."); - } + // Console.WriteLine($"Updater extracted to {updaterPath}"); + // } + // else + // { + // Console.WriteLine("Embedded resource not found."); + // } + // } + //} + //else + //{ + // Console.WriteLine("Updater already exists."); + //} //if (System.Diagnostics.Process.GetProcessesByName(System.IO.Path.GetFileNameWithoutExtension(System.Reflection.Assembly.GetEntryAssembly().Location)).Count() > 1) @@ -71,7 +71,7 @@ namespace AVS else { - Application.Run(new LoginForm(null,false,null)); + Application.Run(new LoginForm(null,false,"LOGIN")); } diff --git a/Properties/PublishProfiles/ClickOnceProfile.pubxml.user b/Properties/PublishProfiles/ClickOnceProfile.pubxml.user index 8b091d9..ad4b3d6 100644 --- a/Properties/PublishProfiles/ClickOnceProfile.pubxml.user +++ b/Properties/PublishProfiles/ClickOnceProfile.pubxml.user @@ -4,6 +4,6 @@ https://go.microsoft.com/fwlink/?LinkID=208121. --> - True|2025-04-25T07:28:18.3725903Z;True|2025-04-25T12:27:54.3223053+05:00; + True|2025-07-14T09:43:47.5107620Z;True|2025-07-08T16:37:37.0141086+05:00;True|2025-07-08T13:42:10.6403891+05:00;True|2025-07-08T13:35:02.4733585+05:00;True|2025-04-28T13:14:25.0043986+05:00;True|2025-04-25T12:28:18.3725903+05:00;True|2025-04-25T12:27:54.3223053+05:00; \ No newline at end of file diff --git a/WeightTolerance.cs b/WeightTolerance.cs index b477a07..9147b5d 100644 --- a/WeightTolerance.cs +++ b/WeightTolerance.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; using System.Data.SQLite; using System.Drawing; +using System.Linq; using System.Text; using System.Windows.Forms; @@ -10,51 +11,22 @@ namespace AVS { internal class WeightTolerance { + public string FNSKU { get; set; } + + public double WEIGHT_TOLERANCE { get; set; } + public DateTime WEIGHT_TOLERANCE_DATETIME { get; set; } + public string MARKET_PLACE { get; set; } private MySqlConnection connection; private string connectionString = "server=utopia-2.c5qech8o9lgg.us-east-1.rds.amazonaws.com;user=itemVerification;password=itemVerification01;database=item_verification_system;"; - public bool InsertOrUpdateWeightTolerance(string FNSKU, string market_place, double weight_tolerance , string avs_name) - { - try - { - OpenConnection(); - - string query = @"INSERT INTO weight_tolerance (FNSKU, MARKET_PLACE, WEIGHT ,WEIGHT_DATETIME,WEIGHT_ADD_BY) - VALUES (@fnsku, @market_place, @weight_tolerance , @datetime , @avs_name ) - ON DUPLICATE KEY UPDATE WEIGHT = VALUES(WEIGHT)"; - - using (MySqlCommand cmd = new MySqlCommand(query, connection)) - { - cmd.Parameters.AddWithValue("@fnsku", FNSKU); - cmd.Parameters.AddWithValue("@market_place", market_place); - cmd.Parameters.AddWithValue("@weight_tolerance", weight_tolerance); - cmd.Parameters.AddWithValue("@datetime", DateTime.Now); - cmd.Parameters.AddWithValue("@avs_name", avs_name); - - cmd.ExecuteNonQuery(); - } - - return true; - } - catch (Exception ex) - { - Console.WriteLine($"InsertOrUpdate Error: {ex.Message}"); - return false; - } - finally - { - CloseConnection(); - } - } + public MySqlConnection OpenConnection() { try { - - // Open the Mysql connection connection = new MySqlConnection(connectionString); connection.Open(); @@ -64,9 +36,9 @@ namespace AVS } catch (Exception ex) { - + Console.WriteLine($"Error opening SQLite connection: {ex.Message}"); - + return null; } } @@ -86,44 +58,35 @@ namespace AVS } } - public double GetWeightTolerance(string fnsku, string marketPlace) + + + public class TableColumn { - double weightTolerance = 0; - - try - { - OpenConnection(); - - string query = @" - SELECT WEIGHT - FROM weight_tolerance - WHERE FNSKU = @fnsku AND MARKET_PLACE = @market_place"; - - using (MySqlCommand cmd = new MySqlCommand(query, connection)) - { - cmd.Parameters.AddWithValue("@fnsku", fnsku); - cmd.Parameters.AddWithValue("@market_place", marketPlace); - - var result = cmd.ExecuteScalar(); - - if (result != null && result != DBNull.Value) - { - weightTolerance = Convert.ToDouble(result); - } - } - } - catch (Exception ex) - { - Console.WriteLine($"Error fetching weight tolerance: {ex.Message}"); - } - finally - { - CloseConnection(); - } - - return weightTolerance; + public string Name { get; set; } + public string DataType { get; set; } } + public class WeightToleranceTable + { + public static List GetColumns() + { + return new List + { + new TableColumn { Name = "Id", DataType = "INTEGER PRIMARY KEY AUTOINCREMENT" }, + new TableColumn { Name = "FNSKU", DataType = "TEXT" }, + + new TableColumn { Name = "WEIGHT_TOLERANCE_DATETIME", DataType = "DATETIME" }, + new TableColumn { Name = "WEIGHT_TOLERANCE", DataType = "REAL" }, + + new TableColumn { Name = "MARKET_PLACE", DataType = "TEXT" }, + }; + } + } + public static string GetColumnsDefinition(List columns) + { + // Convert the list of columns into a string for the CREATE TABLE command + return string.Join(", ", columns.Select(c => $"{c.Name} {c.DataType}")); + } } } diff --git a/bin/Debug/netcoreapp3.1/AVS.deps.json b/bin/Debug/netcoreapp3.1/AVS.deps.json index 150d8da..bfad118 100644 --- a/bin/Debug/netcoreapp3.1/AVS.deps.json +++ b/bin/Debug/netcoreapp3.1/AVS.deps.json @@ -10,7 +10,7 @@ "dependencies": { "MaterialSkin": "0.2.1", "Microsoft.Management.Infrastructure": "3.0.0", - "MySql.Data": "8.1.0", + "MySql.Data": "9.3.0", "Newtonsoft.Json": "13.0.3", "SerialPortStream": "2.4.1", "SharpCompress": "0.38.0", @@ -22,12 +22,20 @@ "AVS.dll": {} } }, + "BouncyCastle.Cryptography/2.5.1": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Cryptography.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.5.1.28965" + } + } + }, "EntityFramework/6.4.4": { "dependencies": { "Microsoft.CSharp": "4.7.0", "System.CodeDom": "9.0.0", "System.ComponentModel.Annotations": "4.7.0", - "System.Configuration.ConfigurationManager": "4.7.0", + "System.Configuration.ConfigurationManager": "8.0.0", "System.Data.SqlClient": "4.8.1" }, "runtime": { @@ -41,39 +49,39 @@ } } }, - "Google.Protobuf/3.21.9": { + "Google.Protobuf/3.30.0": { "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/netstandard2.0/Google.Protobuf.dll": { - "assemblyVersion": "3.21.9.0", - "fileVersion": "3.21.9.0" + "assemblyVersion": "3.30.0.0", + "fileVersion": "3.30.0.0" } } }, - "K4os.Compression.LZ4/1.3.5": { + "K4os.Compression.LZ4/1.3.8": { "dependencies": { "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/netstandard2.1/K4os.Compression.LZ4.dll": { - "assemblyVersion": "1.3.5.0", - "fileVersion": "1.3.5.0" + "assemblyVersion": "1.3.8.0", + "fileVersion": "1.3.8.0" } } }, - "K4os.Compression.LZ4.Streams/1.3.5": { + "K4os.Compression.LZ4.Streams/1.3.8": { "dependencies": { - "K4os.Compression.LZ4": "1.3.5", + "K4os.Compression.LZ4": "1.3.8", "K4os.Hash.xxHash": "1.0.8", - "System.IO.Pipelines": "6.0.3" + "System.IO.Pipelines": "9.0.0" }, "runtime": { "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { - "assemblyVersion": "1.3.5.0", - "fileVersion": "1.3.5.0" + "assemblyVersion": "1.3.8.0", + "fileVersion": "1.3.8.0" } } }, @@ -96,11 +104,11 @@ } } }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { "runtime": { "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, @@ -187,79 +195,74 @@ } } }, - "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Platforms/1.1.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, "Microsoft.Win32.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "Microsoft.Win32.Registry/4.7.0": { "dependencies": { - "System.Security.AccessControl": "4.7.0", - "System.Security.Principal.Windows": "4.7.0" + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "5.0.0" } }, - "Microsoft.Win32.SystemEvents/4.7.0": { + "MySql.Data/9.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0" - } - }, - "MySql.Data/8.1.0": { - "dependencies": { - "Google.Protobuf": "3.21.9", - "K4os.Compression.LZ4.Streams": "1.3.5", - "Portable.BouncyCastle": "1.9.0", + "BouncyCastle.Cryptography": "2.5.1", + "Google.Protobuf": "3.30.0", + "K4os.Compression.LZ4.Streams": "1.3.8", "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "4.7.0", - "System.Diagnostics.DiagnosticSource": "7.0.2", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.1", "System.Runtime.CompilerServices.Unsafe": "6.0.0", "System.Runtime.Loader": "4.3.0", - "System.Security.Permissions": "4.7.0", + "System.Security.Permissions": "8.0.0", "System.Text.Encoding.CodePages": "8.0.0", - "System.Text.Json": "7.0.1", + "System.Text.Json": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4", - "ZstdSharp.Port": "0.8.1" + "ZstdSharp.Port": "0.8.5" }, "runtime": { "lib/netstandard2.1/MySql.Data.dll": { - "assemblyVersion": "8.1.0.0", - "fileVersion": "8.1.0.0" + "assemblyVersion": "9.3.0.0", + "fileVersion": "9.3.0.0" } }, "runtimeTargets": { "runtimes/win-x64/native/comerr64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/gssapi64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/k5sprt64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/krb5_64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/krbcc64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" } } }, "NETStandard.Library/1.6.1": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.Win32.Primitives": "4.3.0", "System.AppContext": "4.3.0", "System.Collections": "4.3.0", @@ -313,14 +316,6 @@ } } }, - "Portable.BouncyCastle/1.9.0": { - "runtime": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": { - "assemblyVersion": "1.9.0.0", - "fileVersion": "1.9.0.1" - } - } - }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, @@ -353,7 +348,7 @@ }, "runtime.native.System/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -366,7 +361,7 @@ }, "runtime.native.System.IO.Compression/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -381,7 +376,7 @@ }, "runtime.native.System.Net.Http/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -478,9 +473,9 @@ }, "SharpCompress/0.38.0": { "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", "System.Text.Encoding.CodePages": "8.0.0", - "ZstdSharp.Port": "0.8.1" + "ZstdSharp.Port": "0.8.5" }, "runtime": { "lib/netstandard2.1/SharpCompress.dll": { @@ -535,7 +530,7 @@ }, "System.Collections/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -588,15 +583,20 @@ } }, "System.ComponentModel.Annotations/4.7.0": {}, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/8.0.0": { "dependencies": { - "System.Security.Cryptography.ProtectedData": "4.7.0", - "System.Security.Permissions": "4.7.0" + "System.Security.Cryptography.ProtectedData": "8.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } } }, "System.Console/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Runtime": "4.3.0", @@ -606,7 +606,7 @@ "System.Data.SqlClient/4.8.1": { "dependencies": { "Microsoft.Win32.Registry": "4.7.0", - "System.Security.Principal.Windows": "4.7.0", + "System.Security.Principal.Windows": "5.0.0", "runtime.native.System.Data.SqlClient.sni": "4.7.0" }, "runtime": { @@ -654,26 +654,26 @@ }, "System.Diagnostics.Debug/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource/7.0.2": { + "System.Diagnostics.DiagnosticSource/8.0.1": { "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.423.11508" + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.424.16909" } } }, "System.Diagnostics.FileVersionInfo/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Globalization": "4.3.0", "System.IO": "4.3.0", "System.IO.FileSystem": "4.3.0", @@ -686,14 +686,14 @@ }, "System.Diagnostics.Tools/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Diagnostics.TraceSource/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.Globalization": "4.3.0", @@ -706,27 +706,21 @@ }, "System.Diagnostics.Tracing/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Drawing.Common/4.7.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "Microsoft.Win32.SystemEvents": "4.7.0" - } - }, "System.Globalization/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Globalization.Calendars/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Globalization": "4.3.0", "System.Runtime": "4.3.0" @@ -734,7 +728,7 @@ }, "System.Globalization.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Globalization": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", @@ -744,7 +738,7 @@ }, "System.IO/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Text.Encoding": "4.3.0", @@ -753,7 +747,7 @@ }, "System.IO.Compression/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Buffers": "4.5.1", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", @@ -785,7 +779,7 @@ }, "System.IO.FileSystem/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.IO.FileSystem.Primitives": "4.3.0", @@ -800,11 +794,16 @@ "System.Runtime": "4.3.0" } }, - "System.IO.Pipelines/6.0.3": { + "System.IO.Pipelines/9.0.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.Memory": "4.5.5", + "System.Threading.Tasks.Extensions": "4.5.4" + }, "runtime": { - "lib/netcoreapp3.1/System.IO.Pipelines.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.522.21309" + "lib/netstandard2.0/System.IO.Pipelines.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, @@ -863,10 +862,10 @@ "System.Memory/4.5.5": {}, "System.Net.Http/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "7.0.2", + "System.Diagnostics.DiagnosticSource": "8.0.1", "System.Diagnostics.Tracing": "4.3.0", "System.Globalization": "4.3.0", "System.Globalization.Extensions": "4.3.0", @@ -893,7 +892,7 @@ }, "System.Net.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Runtime.Handles": "4.3.0" @@ -901,7 +900,7 @@ }, "System.Net.Sockets/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Net.Primitives": "4.3.0", @@ -909,7 +908,6 @@ "System.Threading.Tasks": "4.3.0" } }, - "System.Numerics.Vectors/4.5.0": {}, "System.ObjectModel/4.3.0": { "dependencies": { "System.Collections": "4.3.0", @@ -921,7 +919,7 @@ }, "System.Reflection/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Reflection.Primitives": "4.3.0", @@ -954,7 +952,7 @@ }, "System.Reflection.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Reflection": "4.3.0", "System.Runtime": "4.3.0" @@ -982,7 +980,7 @@ }, "System.Reflection.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -995,7 +993,7 @@ }, "System.Resources.ResourceManager/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Globalization": "4.3.0", "System.Reflection": "4.3.0", @@ -1004,7 +1002,7 @@ }, "System.Runtime/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -1018,21 +1016,21 @@ }, "System.Runtime.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Runtime.Handles/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Runtime.InteropServices/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Reflection": "4.3.0", "System.Reflection.Primitives": "4.3.0", @@ -1066,15 +1064,28 @@ "System.Runtime.Extensions": "4.3.0" } }, - "System.Security.AccessControl/4.7.0": { + "System.Security.AccessControl/6.0.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "System.Security.Principal.Windows": "4.7.0" + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } } }, "System.Security.Cryptography.Algorithms/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.IO": "4.3.0", "System.Resources.ResourceManager": "4.3.0", @@ -1092,7 +1103,7 @@ }, "System.Security.Cryptography.Cng/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.IO": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", @@ -1107,7 +1118,7 @@ }, "System.Security.Cryptography.Csp/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.IO": "4.3.0", "System.Reflection": "4.3.0", "System.Resources.ResourceManager": "4.3.0", @@ -1124,7 +1135,7 @@ }, "System.Security.Cryptography.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Collections.Concurrent": "4.3.0", "System.Linq": "4.3.0", @@ -1166,10 +1177,20 @@ "System.Threading.Tasks": "4.3.0" } }, - "System.Security.Cryptography.ProtectedData/4.7.0": {}, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "dependencies": { + "System.Memory": "4.5.5" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, "System.Security.Cryptography.X509Certificates/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.Globalization": "4.3.0", @@ -1196,16 +1217,42 @@ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" } }, - "System.Security.Permissions/4.7.0": { + "System.Security.Permissions/8.0.0": { "dependencies": { - "System.Security.AccessControl": "4.7.0", - "System.Windows.Extensions": "4.7.0" + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Security.Principal.Windows/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } } }, - "System.Security.Principal.Windows/4.7.0": {}, "System.Text.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -1224,13 +1271,13 @@ }, "System.Text.Encoding.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Text.Encoding": "4.3.0" } }, - "System.Text.Encodings.Web/7.0.0": { + "System.Text.Encodings.Web/9.0.0": { "dependencies": { "System.Buffers": "4.5.1", "System.Memory": "4.5.5", @@ -1238,25 +1285,25 @@ }, "runtime": { "lib/netstandard2.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, - "System.Text.Json/7.0.1": { + "System.Text.Json/9.0.0": { "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", "System.Buffers": "4.5.1", + "System.IO.Pipelines": "9.0.0", "System.Memory": "4.5.5", - "System.Numerics.Vectors": "4.5.0", "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "7.0.0", + "System.Text.Encodings.Web": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4" }, "runtime": { "lib/netstandard2.0/System.Text.Json.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.122.56804" + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, @@ -1273,7 +1320,7 @@ }, "System.Threading.Overlapped/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", "System.Runtime.Handles": "4.3.0" @@ -1281,7 +1328,7 @@ }, "System.Threading.Tasks/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -1300,16 +1347,11 @@ }, "System.Threading.Timer/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Windows.Extensions/4.7.0": { - "dependencies": { - "System.Drawing.Common": "4.7.0" - } - }, "System.Xml.ReaderWriter/4.3.0": { "dependencies": { "System.Collections": "4.3.0", @@ -1345,11 +1387,14 @@ "System.Xml.ReaderWriter": "4.3.0" } }, - "ZstdSharp.Port/0.8.1": { + "ZstdSharp.Port/0.8.5": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, "runtime": { "lib/netcoreapp3.1/ZstdSharp.dll": { - "assemblyVersion": "0.8.1.0", - "fileVersion": "0.8.1.0" + "assemblyVersion": "0.8.5.0", + "fileVersion": "0.8.5.0" } } } @@ -1361,6 +1406,13 @@ "serviceable": false, "sha512": "" }, + "BouncyCastle.Cryptography/2.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zy8TMeTP+1FH2NrLaNZtdRbBdq7u5MI+NFZQOBSM69u5RFkciinwzV2eveY6Kjf5MzgsYvvl6kTStsj3JrXqkg==", + "path": "bouncycastle.cryptography/2.5.1", + "hashPath": "bouncycastle.cryptography.2.5.1.nupkg.sha512" + }, "EntityFramework/6.4.4": { "type": "package", "serviceable": true, @@ -1368,26 +1420,26 @@ "path": "entityframework/6.4.4", "hashPath": "entityframework.6.4.4.nupkg.sha512" }, - "Google.Protobuf/3.21.9": { + "Google.Protobuf/3.30.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OTpFujTgkmqMLbg3KT7F/iuKi1rg6s5FCS2M9XcVLDn40zL8wgXm37CY/F6MeOEXKjdcnXGCN/h7oyMkVydVsg==", - "path": "google.protobuf/3.21.9", - "hashPath": "google.protobuf.3.21.9.nupkg.sha512" + "sha512": "sha512-ZnEI4oZWnHvd+Yz5Gcnx5Q5RQIuzptIzd0fmxAN8f81FYHI0USZqMOrPTkrsd/QEzo9vl2b217v9FqFgHfufQw==", + "path": "google.protobuf/3.30.0", + "hashPath": "google.protobuf.3.30.0.nupkg.sha512" }, - "K4os.Compression.LZ4/1.3.5": { + "K4os.Compression.LZ4/1.3.8": { "type": "package", "serviceable": true, - "sha512": "sha512-TS4mqlT0X1OlnvOGNfl02QdVUhuqgWuCnn7UxupIa7C9Pb6qlQ5yZA2sPhRh0OSmVULaQU64KV4wJuu//UyVQQ==", - "path": "k4os.compression.lz4/1.3.5", - "hashPath": "k4os.compression.lz4.1.3.5.nupkg.sha512" + "sha512": "sha512-LhwlPa7c1zs1OV2XadMtAWdImjLIsqFJPoRcIWAadSRn0Ri1DepK65UbWLPmt4riLqx2d40xjXRk0ogpqNtK7g==", + "path": "k4os.compression.lz4/1.3.8", + "hashPath": "k4os.compression.lz4.1.3.8.nupkg.sha512" }, - "K4os.Compression.LZ4.Streams/1.3.5": { + "K4os.Compression.LZ4.Streams/1.3.8": { "type": "package", "serviceable": true, - "sha512": "sha512-M0NufZI8ym3mm6F6HMSPz1jw7TJGdY74fjAtbIXATmnAva/8xLz50eQZJI9tf9mMeHUaFDg76N1BmEh8GR5zeA==", - "path": "k4os.compression.lz4.streams/1.3.5", - "hashPath": "k4os.compression.lz4.streams.1.3.5.nupkg.sha512" + "sha512": "sha512-P15qr8dZAeo9GvYbUIPEYFQ0MEJ0i5iqr37wsYeRC3la2uCldOoeCa6to0CZ1taiwxIV+Mk8NGuZi+4iWivK9w==", + "path": "k4os.compression.lz4.streams/1.3.8", + "hashPath": "k4os.compression.lz4.streams.1.3.8.nupkg.sha512" }, "K4os.Hash.xxHash/1.0.8": { "type": "package", @@ -1403,12 +1455,12 @@ "path": "materialskin/0.2.1", "hashPath": "materialskin.0.2.1.nupkg.sha512" }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==", - "path": "microsoft.bcl.asyncinterfaces/8.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512" + "sha512": "sha512-owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==", + "path": "microsoft.bcl.asyncinterfaces/9.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512" }, "Microsoft.CSharp/4.7.0": { "type": "package", @@ -1445,12 +1497,12 @@ "path": "microsoft.management.infrastructure.runtime.win/3.0.0", "hashPath": "microsoft.management.infrastructure.runtime.win.3.0.0.nupkg.sha512" }, - "Microsoft.NETCore.Platforms/3.1.0": { + "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "serviceable": true, - "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", - "path": "microsoft.netcore.platforms/3.1.0", - "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" }, "Microsoft.NETCore.Targets/1.1.0": { "type": "package", @@ -1473,19 +1525,12 @@ "path": "microsoft.win32.registry/4.7.0", "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" }, - "Microsoft.Win32.SystemEvents/4.7.0": { + "MySql.Data/9.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", - "path": "microsoft.win32.systemevents/4.7.0", - "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" - }, - "MySql.Data/8.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7kEJLyty7HcqJD0lnfs+2fdMrvCl0RY5oykvZThbmg6QVLT55dwygI69Eqxl0M6IThP9woyjpsezT6m7gKRrLA==", - "path": "mysql.data/8.1.0", - "hashPath": "mysql.data.8.1.0.nupkg.sha512" + "sha512": "sha512-f4iZBKubzwNnc84ecEwguv5TSwHpoArFGa+XpZY+8S9SoAnQaHfymLdZUKK4LbUbH9ACZ6X71LUvq58Mfdyipw==", + "path": "mysql.data/9.3.0", + "hashPath": "mysql.data.9.3.0.nupkg.sha512" }, "NETStandard.Library/1.6.1": { "type": "package", @@ -1501,13 +1546,6 @@ "path": "newtonsoft.json/13.0.3", "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" }, - "Portable.BouncyCastle/1.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==", - "path": "portable.bouncycastle/1.9.0", - "hashPath": "portable.bouncycastle.1.9.0.nupkg.sha512" - }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "serviceable": true, @@ -1774,12 +1812,12 @@ "path": "system.componentmodel.annotations/4.7.0", "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512" }, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", - "path": "system.configuration.configurationmanager/4.7.0", - "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", + "path": "system.configuration.configurationmanager/8.0.0", + "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512" }, "System.Console/4.3.0": { "type": "package", @@ -1823,12 +1861,12 @@ "path": "system.diagnostics.debug/4.3.0", "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" }, - "System.Diagnostics.DiagnosticSource/7.0.2": { + "System.Diagnostics.DiagnosticSource/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==", - "path": "system.diagnostics.diagnosticsource/7.0.2", - "hashPath": "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512" + "sha512": "sha512-vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", + "path": "system.diagnostics.diagnosticsource/8.0.1", + "hashPath": "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512" }, "System.Diagnostics.FileVersionInfo/4.3.0": { "type": "package", @@ -1858,13 +1896,6 @@ "path": "system.diagnostics.tracing/4.3.0", "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" }, - "System.Drawing.Common/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", - "path": "system.drawing.common/4.7.0", - "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" - }, "System.Globalization/4.3.0": { "type": "package", "serviceable": true, @@ -1921,12 +1952,12 @@ "path": "system.io.filesystem.primitives/4.3.0", "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" }, - "System.IO.Pipelines/6.0.3": { + "System.IO.Pipelines/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", - "path": "system.io.pipelines/6.0.3", - "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + "sha512": "sha512-eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", + "path": "system.io.pipelines/9.0.0", + "hashPath": "system.io.pipelines.9.0.0.nupkg.sha512" }, "System.IO.Ports/7.0.0": { "type": "package", @@ -1984,13 +2015,6 @@ "path": "system.net.sockets/4.3.0", "hashPath": "system.net.sockets.4.3.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.ObjectModel/4.3.0": { "type": "package", "serviceable": true, @@ -2117,12 +2141,12 @@ "path": "system.runtime.numerics/4.3.0", "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" }, - "System.Security.AccessControl/4.7.0": { + "System.Security.AccessControl/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", - "path": "system.security.accesscontrol/4.7.0", - "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" }, "System.Security.Cryptography.Algorithms/4.3.0": { "type": "package", @@ -2166,12 +2190,12 @@ "path": "system.security.cryptography.primitives/4.3.0", "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" }, - "System.Security.Cryptography.ProtectedData/4.7.0": { + "System.Security.Cryptography.ProtectedData/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", - "path": "system.security.cryptography.protecteddata/4.7.0", - "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "path": "system.security.cryptography.protecteddata/8.0.0", + "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512" }, "System.Security.Cryptography.X509Certificates/4.3.0": { "type": "package", @@ -2180,19 +2204,19 @@ "path": "system.security.cryptography.x509certificates/4.3.0", "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" }, - "System.Security.Permissions/4.7.0": { + "System.Security.Permissions/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", - "path": "system.security.permissions/4.7.0", - "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + "sha512": "sha512-v/BBylw7XevuAsHXoX9dDUUfmBIcUf7Lkz8K3ZXIKz3YRKpw8YftpSir4n4e/jDTKFoaK37AsC3xnk+GNFI1Ow==", + "path": "system.security.permissions/8.0.0", + "hashPath": "system.security.permissions.8.0.0.nupkg.sha512" }, - "System.Security.Principal.Windows/4.7.0": { + "System.Security.Principal.Windows/5.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", - "path": "system.security.principal.windows/4.7.0", - "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" }, "System.Text.Encoding/4.3.0": { "type": "package", @@ -2215,19 +2239,19 @@ "path": "system.text.encoding.extensions/4.3.0", "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" }, - "System.Text.Encodings.Web/7.0.0": { + "System.Text.Encodings.Web/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", - "path": "system.text.encodings.web/7.0.0", - "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" + "sha512": "sha512-e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", + "path": "system.text.encodings.web/9.0.0", + "hashPath": "system.text.encodings.web.9.0.0.nupkg.sha512" }, - "System.Text.Json/7.0.1": { + "System.Text.Json/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OtDEmCCiNl8JAduFKZ/r0Sw6XZNHwIicUYy/mXgMDGeOsZLshH37qi3oPRzFYiryVktiMoQLByMGPtRCEMYbeQ==", - "path": "system.text.json/7.0.1", - "hashPath": "system.text.json.7.0.1.nupkg.sha512" + "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "path": "system.text.json/9.0.0", + "hashPath": "system.text.json.9.0.0.nupkg.sha512" }, "System.Text.RegularExpressions/4.3.0": { "type": "package", @@ -2285,13 +2309,6 @@ "path": "system.threading.timer/4.3.0", "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" }, - "System.Windows.Extensions/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", - "path": "system.windows.extensions/4.7.0", - "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" - }, "System.Xml.ReaderWriter/4.3.0": { "type": "package", "serviceable": true, @@ -2306,12 +2323,12 @@ "path": "system.xml.xdocument/4.3.0", "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" }, - "ZstdSharp.Port/0.8.1": { + "ZstdSharp.Port/0.8.5": { "type": "package", "serviceable": true, - "sha512": "sha512-19tNz33kn2EkyViFXuxfVn338UJaRmkwBphVqP2dVJIYQUQgFrgG5h061mxkRRg1Ax6r+6WOj1FxaFZ5qaWqqg==", - "path": "zstdsharp.port/0.8.1", - "hashPath": "zstdsharp.port.0.8.1.nupkg.sha512" + "sha512": "sha512-TR4j17WeVSEb3ncgL2NqlXEqcy04I+Kk9CaebNDplUeL8XOgjkZ7fP4Wg4grBdPLIqsV86p2QaXTkZoRMVOsew==", + "path": "zstdsharp.port/0.8.5", + "hashPath": "zstdsharp.port.0.8.5.nupkg.sha512" } } } \ No newline at end of file diff --git a/bin/Debug/netcoreapp3.1/AVS.dll b/bin/Debug/netcoreapp3.1/AVS.dll index 7757f9f..2e6073f 100644 Binary files a/bin/Debug/netcoreapp3.1/AVS.dll and b/bin/Debug/netcoreapp3.1/AVS.dll differ diff --git a/bin/Debug/netcoreapp3.1/AVS.exe b/bin/Debug/netcoreapp3.1/AVS.exe index 407cfb0..ede22cd 100644 Binary files a/bin/Debug/netcoreapp3.1/AVS.exe and b/bin/Debug/netcoreapp3.1/AVS.exe differ diff --git a/bin/Debug/netcoreapp3.1/AVS.pdb b/bin/Debug/netcoreapp3.1/AVS.pdb index 59b2385..1d1e1d6 100644 Binary files a/bin/Debug/netcoreapp3.1/AVS.pdb and b/bin/Debug/netcoreapp3.1/AVS.pdb differ diff --git a/bin/Debug/netcoreapp3.1/BouncyCastle.Crypto.dll b/bin/Debug/netcoreapp3.1/BouncyCastle.Crypto.dll deleted file mode 100644 index b811138..0000000 Binary files a/bin/Debug/netcoreapp3.1/BouncyCastle.Crypto.dll and /dev/null differ diff --git a/bin/Debug/netcoreapp3.1/Google.Protobuf.dll b/bin/Debug/netcoreapp3.1/Google.Protobuf.dll index 0e52e71..2a2252e 100644 Binary files a/bin/Debug/netcoreapp3.1/Google.Protobuf.dll and b/bin/Debug/netcoreapp3.1/Google.Protobuf.dll differ diff --git a/bin/Debug/netcoreapp3.1/K4os.Compression.LZ4.Streams.dll b/bin/Debug/netcoreapp3.1/K4os.Compression.LZ4.Streams.dll index 0298ee0..dfb6370 100644 Binary files a/bin/Debug/netcoreapp3.1/K4os.Compression.LZ4.Streams.dll and b/bin/Debug/netcoreapp3.1/K4os.Compression.LZ4.Streams.dll differ diff --git a/bin/Debug/netcoreapp3.1/K4os.Compression.LZ4.dll b/bin/Debug/netcoreapp3.1/K4os.Compression.LZ4.dll index 345b16f..7c267f5 100644 Binary files a/bin/Debug/netcoreapp3.1/K4os.Compression.LZ4.dll and b/bin/Debug/netcoreapp3.1/K4os.Compression.LZ4.dll differ diff --git a/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll b/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll index 421e812..e982c02 100644 Binary files a/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll and b/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/bin/Debug/netcoreapp3.1/MySql.Data.dll b/bin/Debug/netcoreapp3.1/MySql.Data.dll index 6bf00d5..239e3d6 100644 Binary files a/bin/Debug/netcoreapp3.1/MySql.Data.dll and b/bin/Debug/netcoreapp3.1/MySql.Data.dll differ diff --git a/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll b/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll index 733fc36..f6d75a9 100644 Binary files a/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll and b/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll differ diff --git a/bin/Debug/netcoreapp3.1/System.IO.Pipelines.dll b/bin/Debug/netcoreapp3.1/System.IO.Pipelines.dll index 69471fa..0c4e2ae 100644 Binary files a/bin/Debug/netcoreapp3.1/System.IO.Pipelines.dll and b/bin/Debug/netcoreapp3.1/System.IO.Pipelines.dll differ diff --git a/bin/Debug/netcoreapp3.1/System.Text.Encodings.Web.dll b/bin/Debug/netcoreapp3.1/System.Text.Encodings.Web.dll index 56bc79d..c8ea250 100644 Binary files a/bin/Debug/netcoreapp3.1/System.Text.Encodings.Web.dll and b/bin/Debug/netcoreapp3.1/System.Text.Encodings.Web.dll differ diff --git a/bin/Debug/netcoreapp3.1/System.Text.Json.dll b/bin/Debug/netcoreapp3.1/System.Text.Json.dll index 892fd35..802d8bd 100644 Binary files a/bin/Debug/netcoreapp3.1/System.Text.Json.dll and b/bin/Debug/netcoreapp3.1/System.Text.Json.dll differ diff --git a/bin/Debug/netcoreapp3.1/ZstdSharp.dll b/bin/Debug/netcoreapp3.1/ZstdSharp.dll index 3d8763d..79517e7 100644 Binary files a/bin/Debug/netcoreapp3.1/ZstdSharp.dll and b/bin/Debug/netcoreapp3.1/ZstdSharp.dll differ diff --git a/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/comerr64.dll b/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/comerr64.dll index 0a48cb5..b53e2bb 100644 Binary files a/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/comerr64.dll and b/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/comerr64.dll differ diff --git a/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/gssapi64.dll b/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/gssapi64.dll index 1628e38..99e756b 100644 Binary files a/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/gssapi64.dll and b/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/gssapi64.dll differ diff --git a/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/k5sprt64.dll b/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/k5sprt64.dll index 9237ce9..f13c774 100644 Binary files a/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/k5sprt64.dll and b/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/k5sprt64.dll differ diff --git a/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/krb5_64.dll b/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/krb5_64.dll index 582f680..2a2d511 100644 Binary files a/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/krb5_64.dll and b/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/krb5_64.dll differ diff --git a/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/krbcc64.dll b/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/krbcc64.dll index ba5a519..0eb3492 100644 Binary files a/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/krbcc64.dll and b/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/krbcc64.dll differ diff --git a/bin/Release/netcoreapp3.1/AVS.deps.json b/bin/Release/netcoreapp3.1/AVS.deps.json index 150d8da..bfad118 100644 --- a/bin/Release/netcoreapp3.1/AVS.deps.json +++ b/bin/Release/netcoreapp3.1/AVS.deps.json @@ -10,7 +10,7 @@ "dependencies": { "MaterialSkin": "0.2.1", "Microsoft.Management.Infrastructure": "3.0.0", - "MySql.Data": "8.1.0", + "MySql.Data": "9.3.0", "Newtonsoft.Json": "13.0.3", "SerialPortStream": "2.4.1", "SharpCompress": "0.38.0", @@ -22,12 +22,20 @@ "AVS.dll": {} } }, + "BouncyCastle.Cryptography/2.5.1": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Cryptography.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.5.1.28965" + } + } + }, "EntityFramework/6.4.4": { "dependencies": { "Microsoft.CSharp": "4.7.0", "System.CodeDom": "9.0.0", "System.ComponentModel.Annotations": "4.7.0", - "System.Configuration.ConfigurationManager": "4.7.0", + "System.Configuration.ConfigurationManager": "8.0.0", "System.Data.SqlClient": "4.8.1" }, "runtime": { @@ -41,39 +49,39 @@ } } }, - "Google.Protobuf/3.21.9": { + "Google.Protobuf/3.30.0": { "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/netstandard2.0/Google.Protobuf.dll": { - "assemblyVersion": "3.21.9.0", - "fileVersion": "3.21.9.0" + "assemblyVersion": "3.30.0.0", + "fileVersion": "3.30.0.0" } } }, - "K4os.Compression.LZ4/1.3.5": { + "K4os.Compression.LZ4/1.3.8": { "dependencies": { "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/netstandard2.1/K4os.Compression.LZ4.dll": { - "assemblyVersion": "1.3.5.0", - "fileVersion": "1.3.5.0" + "assemblyVersion": "1.3.8.0", + "fileVersion": "1.3.8.0" } } }, - "K4os.Compression.LZ4.Streams/1.3.5": { + "K4os.Compression.LZ4.Streams/1.3.8": { "dependencies": { - "K4os.Compression.LZ4": "1.3.5", + "K4os.Compression.LZ4": "1.3.8", "K4os.Hash.xxHash": "1.0.8", - "System.IO.Pipelines": "6.0.3" + "System.IO.Pipelines": "9.0.0" }, "runtime": { "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { - "assemblyVersion": "1.3.5.0", - "fileVersion": "1.3.5.0" + "assemblyVersion": "1.3.8.0", + "fileVersion": "1.3.8.0" } } }, @@ -96,11 +104,11 @@ } } }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { "runtime": { "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, @@ -187,79 +195,74 @@ } } }, - "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Platforms/1.1.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, "Microsoft.Win32.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "Microsoft.Win32.Registry/4.7.0": { "dependencies": { - "System.Security.AccessControl": "4.7.0", - "System.Security.Principal.Windows": "4.7.0" + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "5.0.0" } }, - "Microsoft.Win32.SystemEvents/4.7.0": { + "MySql.Data/9.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0" - } - }, - "MySql.Data/8.1.0": { - "dependencies": { - "Google.Protobuf": "3.21.9", - "K4os.Compression.LZ4.Streams": "1.3.5", - "Portable.BouncyCastle": "1.9.0", + "BouncyCastle.Cryptography": "2.5.1", + "Google.Protobuf": "3.30.0", + "K4os.Compression.LZ4.Streams": "1.3.8", "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "4.7.0", - "System.Diagnostics.DiagnosticSource": "7.0.2", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.1", "System.Runtime.CompilerServices.Unsafe": "6.0.0", "System.Runtime.Loader": "4.3.0", - "System.Security.Permissions": "4.7.0", + "System.Security.Permissions": "8.0.0", "System.Text.Encoding.CodePages": "8.0.0", - "System.Text.Json": "7.0.1", + "System.Text.Json": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4", - "ZstdSharp.Port": "0.8.1" + "ZstdSharp.Port": "0.8.5" }, "runtime": { "lib/netstandard2.1/MySql.Data.dll": { - "assemblyVersion": "8.1.0.0", - "fileVersion": "8.1.0.0" + "assemblyVersion": "9.3.0.0", + "fileVersion": "9.3.0.0" } }, "runtimeTargets": { "runtimes/win-x64/native/comerr64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/gssapi64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/k5sprt64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/krb5_64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/krbcc64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" } } }, "NETStandard.Library/1.6.1": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.Win32.Primitives": "4.3.0", "System.AppContext": "4.3.0", "System.Collections": "4.3.0", @@ -313,14 +316,6 @@ } } }, - "Portable.BouncyCastle/1.9.0": { - "runtime": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": { - "assemblyVersion": "1.9.0.0", - "fileVersion": "1.9.0.1" - } - } - }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, @@ -353,7 +348,7 @@ }, "runtime.native.System/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -366,7 +361,7 @@ }, "runtime.native.System.IO.Compression/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -381,7 +376,7 @@ }, "runtime.native.System.Net.Http/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -478,9 +473,9 @@ }, "SharpCompress/0.38.0": { "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", "System.Text.Encoding.CodePages": "8.0.0", - "ZstdSharp.Port": "0.8.1" + "ZstdSharp.Port": "0.8.5" }, "runtime": { "lib/netstandard2.1/SharpCompress.dll": { @@ -535,7 +530,7 @@ }, "System.Collections/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -588,15 +583,20 @@ } }, "System.ComponentModel.Annotations/4.7.0": {}, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/8.0.0": { "dependencies": { - "System.Security.Cryptography.ProtectedData": "4.7.0", - "System.Security.Permissions": "4.7.0" + "System.Security.Cryptography.ProtectedData": "8.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } } }, "System.Console/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Runtime": "4.3.0", @@ -606,7 +606,7 @@ "System.Data.SqlClient/4.8.1": { "dependencies": { "Microsoft.Win32.Registry": "4.7.0", - "System.Security.Principal.Windows": "4.7.0", + "System.Security.Principal.Windows": "5.0.0", "runtime.native.System.Data.SqlClient.sni": "4.7.0" }, "runtime": { @@ -654,26 +654,26 @@ }, "System.Diagnostics.Debug/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource/7.0.2": { + "System.Diagnostics.DiagnosticSource/8.0.1": { "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.423.11508" + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.424.16909" } } }, "System.Diagnostics.FileVersionInfo/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Globalization": "4.3.0", "System.IO": "4.3.0", "System.IO.FileSystem": "4.3.0", @@ -686,14 +686,14 @@ }, "System.Diagnostics.Tools/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Diagnostics.TraceSource/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.Globalization": "4.3.0", @@ -706,27 +706,21 @@ }, "System.Diagnostics.Tracing/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Drawing.Common/4.7.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "Microsoft.Win32.SystemEvents": "4.7.0" - } - }, "System.Globalization/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Globalization.Calendars/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Globalization": "4.3.0", "System.Runtime": "4.3.0" @@ -734,7 +728,7 @@ }, "System.Globalization.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Globalization": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", @@ -744,7 +738,7 @@ }, "System.IO/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Text.Encoding": "4.3.0", @@ -753,7 +747,7 @@ }, "System.IO.Compression/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Buffers": "4.5.1", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", @@ -785,7 +779,7 @@ }, "System.IO.FileSystem/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.IO.FileSystem.Primitives": "4.3.0", @@ -800,11 +794,16 @@ "System.Runtime": "4.3.0" } }, - "System.IO.Pipelines/6.0.3": { + "System.IO.Pipelines/9.0.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.Memory": "4.5.5", + "System.Threading.Tasks.Extensions": "4.5.4" + }, "runtime": { - "lib/netcoreapp3.1/System.IO.Pipelines.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.522.21309" + "lib/netstandard2.0/System.IO.Pipelines.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, @@ -863,10 +862,10 @@ "System.Memory/4.5.5": {}, "System.Net.Http/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "7.0.2", + "System.Diagnostics.DiagnosticSource": "8.0.1", "System.Diagnostics.Tracing": "4.3.0", "System.Globalization": "4.3.0", "System.Globalization.Extensions": "4.3.0", @@ -893,7 +892,7 @@ }, "System.Net.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Runtime.Handles": "4.3.0" @@ -901,7 +900,7 @@ }, "System.Net.Sockets/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Net.Primitives": "4.3.0", @@ -909,7 +908,6 @@ "System.Threading.Tasks": "4.3.0" } }, - "System.Numerics.Vectors/4.5.0": {}, "System.ObjectModel/4.3.0": { "dependencies": { "System.Collections": "4.3.0", @@ -921,7 +919,7 @@ }, "System.Reflection/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Reflection.Primitives": "4.3.0", @@ -954,7 +952,7 @@ }, "System.Reflection.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Reflection": "4.3.0", "System.Runtime": "4.3.0" @@ -982,7 +980,7 @@ }, "System.Reflection.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -995,7 +993,7 @@ }, "System.Resources.ResourceManager/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Globalization": "4.3.0", "System.Reflection": "4.3.0", @@ -1004,7 +1002,7 @@ }, "System.Runtime/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -1018,21 +1016,21 @@ }, "System.Runtime.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Runtime.Handles/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Runtime.InteropServices/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Reflection": "4.3.0", "System.Reflection.Primitives": "4.3.0", @@ -1066,15 +1064,28 @@ "System.Runtime.Extensions": "4.3.0" } }, - "System.Security.AccessControl/4.7.0": { + "System.Security.AccessControl/6.0.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "System.Security.Principal.Windows": "4.7.0" + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } } }, "System.Security.Cryptography.Algorithms/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.IO": "4.3.0", "System.Resources.ResourceManager": "4.3.0", @@ -1092,7 +1103,7 @@ }, "System.Security.Cryptography.Cng/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.IO": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", @@ -1107,7 +1118,7 @@ }, "System.Security.Cryptography.Csp/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.IO": "4.3.0", "System.Reflection": "4.3.0", "System.Resources.ResourceManager": "4.3.0", @@ -1124,7 +1135,7 @@ }, "System.Security.Cryptography.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Collections.Concurrent": "4.3.0", "System.Linq": "4.3.0", @@ -1166,10 +1177,20 @@ "System.Threading.Tasks": "4.3.0" } }, - "System.Security.Cryptography.ProtectedData/4.7.0": {}, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "dependencies": { + "System.Memory": "4.5.5" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, "System.Security.Cryptography.X509Certificates/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.Globalization": "4.3.0", @@ -1196,16 +1217,42 @@ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" } }, - "System.Security.Permissions/4.7.0": { + "System.Security.Permissions/8.0.0": { "dependencies": { - "System.Security.AccessControl": "4.7.0", - "System.Windows.Extensions": "4.7.0" + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Security.Principal.Windows/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } } }, - "System.Security.Principal.Windows/4.7.0": {}, "System.Text.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -1224,13 +1271,13 @@ }, "System.Text.Encoding.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Text.Encoding": "4.3.0" } }, - "System.Text.Encodings.Web/7.0.0": { + "System.Text.Encodings.Web/9.0.0": { "dependencies": { "System.Buffers": "4.5.1", "System.Memory": "4.5.5", @@ -1238,25 +1285,25 @@ }, "runtime": { "lib/netstandard2.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, - "System.Text.Json/7.0.1": { + "System.Text.Json/9.0.0": { "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", "System.Buffers": "4.5.1", + "System.IO.Pipelines": "9.0.0", "System.Memory": "4.5.5", - "System.Numerics.Vectors": "4.5.0", "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "7.0.0", + "System.Text.Encodings.Web": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4" }, "runtime": { "lib/netstandard2.0/System.Text.Json.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.122.56804" + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, @@ -1273,7 +1320,7 @@ }, "System.Threading.Overlapped/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", "System.Runtime.Handles": "4.3.0" @@ -1281,7 +1328,7 @@ }, "System.Threading.Tasks/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -1300,16 +1347,11 @@ }, "System.Threading.Timer/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Windows.Extensions/4.7.0": { - "dependencies": { - "System.Drawing.Common": "4.7.0" - } - }, "System.Xml.ReaderWriter/4.3.0": { "dependencies": { "System.Collections": "4.3.0", @@ -1345,11 +1387,14 @@ "System.Xml.ReaderWriter": "4.3.0" } }, - "ZstdSharp.Port/0.8.1": { + "ZstdSharp.Port/0.8.5": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, "runtime": { "lib/netcoreapp3.1/ZstdSharp.dll": { - "assemblyVersion": "0.8.1.0", - "fileVersion": "0.8.1.0" + "assemblyVersion": "0.8.5.0", + "fileVersion": "0.8.5.0" } } } @@ -1361,6 +1406,13 @@ "serviceable": false, "sha512": "" }, + "BouncyCastle.Cryptography/2.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zy8TMeTP+1FH2NrLaNZtdRbBdq7u5MI+NFZQOBSM69u5RFkciinwzV2eveY6Kjf5MzgsYvvl6kTStsj3JrXqkg==", + "path": "bouncycastle.cryptography/2.5.1", + "hashPath": "bouncycastle.cryptography.2.5.1.nupkg.sha512" + }, "EntityFramework/6.4.4": { "type": "package", "serviceable": true, @@ -1368,26 +1420,26 @@ "path": "entityframework/6.4.4", "hashPath": "entityframework.6.4.4.nupkg.sha512" }, - "Google.Protobuf/3.21.9": { + "Google.Protobuf/3.30.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OTpFujTgkmqMLbg3KT7F/iuKi1rg6s5FCS2M9XcVLDn40zL8wgXm37CY/F6MeOEXKjdcnXGCN/h7oyMkVydVsg==", - "path": "google.protobuf/3.21.9", - "hashPath": "google.protobuf.3.21.9.nupkg.sha512" + "sha512": "sha512-ZnEI4oZWnHvd+Yz5Gcnx5Q5RQIuzptIzd0fmxAN8f81FYHI0USZqMOrPTkrsd/QEzo9vl2b217v9FqFgHfufQw==", + "path": "google.protobuf/3.30.0", + "hashPath": "google.protobuf.3.30.0.nupkg.sha512" }, - "K4os.Compression.LZ4/1.3.5": { + "K4os.Compression.LZ4/1.3.8": { "type": "package", "serviceable": true, - "sha512": "sha512-TS4mqlT0X1OlnvOGNfl02QdVUhuqgWuCnn7UxupIa7C9Pb6qlQ5yZA2sPhRh0OSmVULaQU64KV4wJuu//UyVQQ==", - "path": "k4os.compression.lz4/1.3.5", - "hashPath": "k4os.compression.lz4.1.3.5.nupkg.sha512" + "sha512": "sha512-LhwlPa7c1zs1OV2XadMtAWdImjLIsqFJPoRcIWAadSRn0Ri1DepK65UbWLPmt4riLqx2d40xjXRk0ogpqNtK7g==", + "path": "k4os.compression.lz4/1.3.8", + "hashPath": "k4os.compression.lz4.1.3.8.nupkg.sha512" }, - "K4os.Compression.LZ4.Streams/1.3.5": { + "K4os.Compression.LZ4.Streams/1.3.8": { "type": "package", "serviceable": true, - "sha512": "sha512-M0NufZI8ym3mm6F6HMSPz1jw7TJGdY74fjAtbIXATmnAva/8xLz50eQZJI9tf9mMeHUaFDg76N1BmEh8GR5zeA==", - "path": "k4os.compression.lz4.streams/1.3.5", - "hashPath": "k4os.compression.lz4.streams.1.3.5.nupkg.sha512" + "sha512": "sha512-P15qr8dZAeo9GvYbUIPEYFQ0MEJ0i5iqr37wsYeRC3la2uCldOoeCa6to0CZ1taiwxIV+Mk8NGuZi+4iWivK9w==", + "path": "k4os.compression.lz4.streams/1.3.8", + "hashPath": "k4os.compression.lz4.streams.1.3.8.nupkg.sha512" }, "K4os.Hash.xxHash/1.0.8": { "type": "package", @@ -1403,12 +1455,12 @@ "path": "materialskin/0.2.1", "hashPath": "materialskin.0.2.1.nupkg.sha512" }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==", - "path": "microsoft.bcl.asyncinterfaces/8.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512" + "sha512": "sha512-owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==", + "path": "microsoft.bcl.asyncinterfaces/9.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512" }, "Microsoft.CSharp/4.7.0": { "type": "package", @@ -1445,12 +1497,12 @@ "path": "microsoft.management.infrastructure.runtime.win/3.0.0", "hashPath": "microsoft.management.infrastructure.runtime.win.3.0.0.nupkg.sha512" }, - "Microsoft.NETCore.Platforms/3.1.0": { + "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "serviceable": true, - "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", - "path": "microsoft.netcore.platforms/3.1.0", - "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" }, "Microsoft.NETCore.Targets/1.1.0": { "type": "package", @@ -1473,19 +1525,12 @@ "path": "microsoft.win32.registry/4.7.0", "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" }, - "Microsoft.Win32.SystemEvents/4.7.0": { + "MySql.Data/9.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", - "path": "microsoft.win32.systemevents/4.7.0", - "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" - }, - "MySql.Data/8.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7kEJLyty7HcqJD0lnfs+2fdMrvCl0RY5oykvZThbmg6QVLT55dwygI69Eqxl0M6IThP9woyjpsezT6m7gKRrLA==", - "path": "mysql.data/8.1.0", - "hashPath": "mysql.data.8.1.0.nupkg.sha512" + "sha512": "sha512-f4iZBKubzwNnc84ecEwguv5TSwHpoArFGa+XpZY+8S9SoAnQaHfymLdZUKK4LbUbH9ACZ6X71LUvq58Mfdyipw==", + "path": "mysql.data/9.3.0", + "hashPath": "mysql.data.9.3.0.nupkg.sha512" }, "NETStandard.Library/1.6.1": { "type": "package", @@ -1501,13 +1546,6 @@ "path": "newtonsoft.json/13.0.3", "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" }, - "Portable.BouncyCastle/1.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==", - "path": "portable.bouncycastle/1.9.0", - "hashPath": "portable.bouncycastle.1.9.0.nupkg.sha512" - }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "serviceable": true, @@ -1774,12 +1812,12 @@ "path": "system.componentmodel.annotations/4.7.0", "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512" }, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", - "path": "system.configuration.configurationmanager/4.7.0", - "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", + "path": "system.configuration.configurationmanager/8.0.0", + "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512" }, "System.Console/4.3.0": { "type": "package", @@ -1823,12 +1861,12 @@ "path": "system.diagnostics.debug/4.3.0", "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" }, - "System.Diagnostics.DiagnosticSource/7.0.2": { + "System.Diagnostics.DiagnosticSource/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==", - "path": "system.diagnostics.diagnosticsource/7.0.2", - "hashPath": "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512" + "sha512": "sha512-vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", + "path": "system.diagnostics.diagnosticsource/8.0.1", + "hashPath": "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512" }, "System.Diagnostics.FileVersionInfo/4.3.0": { "type": "package", @@ -1858,13 +1896,6 @@ "path": "system.diagnostics.tracing/4.3.0", "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" }, - "System.Drawing.Common/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", - "path": "system.drawing.common/4.7.0", - "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" - }, "System.Globalization/4.3.0": { "type": "package", "serviceable": true, @@ -1921,12 +1952,12 @@ "path": "system.io.filesystem.primitives/4.3.0", "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" }, - "System.IO.Pipelines/6.0.3": { + "System.IO.Pipelines/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", - "path": "system.io.pipelines/6.0.3", - "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + "sha512": "sha512-eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", + "path": "system.io.pipelines/9.0.0", + "hashPath": "system.io.pipelines.9.0.0.nupkg.sha512" }, "System.IO.Ports/7.0.0": { "type": "package", @@ -1984,13 +2015,6 @@ "path": "system.net.sockets/4.3.0", "hashPath": "system.net.sockets.4.3.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.ObjectModel/4.3.0": { "type": "package", "serviceable": true, @@ -2117,12 +2141,12 @@ "path": "system.runtime.numerics/4.3.0", "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" }, - "System.Security.AccessControl/4.7.0": { + "System.Security.AccessControl/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", - "path": "system.security.accesscontrol/4.7.0", - "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" }, "System.Security.Cryptography.Algorithms/4.3.0": { "type": "package", @@ -2166,12 +2190,12 @@ "path": "system.security.cryptography.primitives/4.3.0", "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" }, - "System.Security.Cryptography.ProtectedData/4.7.0": { + "System.Security.Cryptography.ProtectedData/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", - "path": "system.security.cryptography.protecteddata/4.7.0", - "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "path": "system.security.cryptography.protecteddata/8.0.0", + "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512" }, "System.Security.Cryptography.X509Certificates/4.3.0": { "type": "package", @@ -2180,19 +2204,19 @@ "path": "system.security.cryptography.x509certificates/4.3.0", "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" }, - "System.Security.Permissions/4.7.0": { + "System.Security.Permissions/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", - "path": "system.security.permissions/4.7.0", - "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + "sha512": "sha512-v/BBylw7XevuAsHXoX9dDUUfmBIcUf7Lkz8K3ZXIKz3YRKpw8YftpSir4n4e/jDTKFoaK37AsC3xnk+GNFI1Ow==", + "path": "system.security.permissions/8.0.0", + "hashPath": "system.security.permissions.8.0.0.nupkg.sha512" }, - "System.Security.Principal.Windows/4.7.0": { + "System.Security.Principal.Windows/5.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", - "path": "system.security.principal.windows/4.7.0", - "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" }, "System.Text.Encoding/4.3.0": { "type": "package", @@ -2215,19 +2239,19 @@ "path": "system.text.encoding.extensions/4.3.0", "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" }, - "System.Text.Encodings.Web/7.0.0": { + "System.Text.Encodings.Web/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", - "path": "system.text.encodings.web/7.0.0", - "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" + "sha512": "sha512-e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", + "path": "system.text.encodings.web/9.0.0", + "hashPath": "system.text.encodings.web.9.0.0.nupkg.sha512" }, - "System.Text.Json/7.0.1": { + "System.Text.Json/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OtDEmCCiNl8JAduFKZ/r0Sw6XZNHwIicUYy/mXgMDGeOsZLshH37qi3oPRzFYiryVktiMoQLByMGPtRCEMYbeQ==", - "path": "system.text.json/7.0.1", - "hashPath": "system.text.json.7.0.1.nupkg.sha512" + "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "path": "system.text.json/9.0.0", + "hashPath": "system.text.json.9.0.0.nupkg.sha512" }, "System.Text.RegularExpressions/4.3.0": { "type": "package", @@ -2285,13 +2309,6 @@ "path": "system.threading.timer/4.3.0", "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" }, - "System.Windows.Extensions/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", - "path": "system.windows.extensions/4.7.0", - "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" - }, "System.Xml.ReaderWriter/4.3.0": { "type": "package", "serviceable": true, @@ -2306,12 +2323,12 @@ "path": "system.xml.xdocument/4.3.0", "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" }, - "ZstdSharp.Port/0.8.1": { + "ZstdSharp.Port/0.8.5": { "type": "package", "serviceable": true, - "sha512": "sha512-19tNz33kn2EkyViFXuxfVn338UJaRmkwBphVqP2dVJIYQUQgFrgG5h061mxkRRg1Ax6r+6WOj1FxaFZ5qaWqqg==", - "path": "zstdsharp.port/0.8.1", - "hashPath": "zstdsharp.port.0.8.1.nupkg.sha512" + "sha512": "sha512-TR4j17WeVSEb3ncgL2NqlXEqcy04I+Kk9CaebNDplUeL8XOgjkZ7fP4Wg4grBdPLIqsV86p2QaXTkZoRMVOsew==", + "path": "zstdsharp.port/0.8.5", + "hashPath": "zstdsharp.port.0.8.5.nupkg.sha512" } } } \ No newline at end of file diff --git a/bin/Release/netcoreapp3.1/AVS.dll b/bin/Release/netcoreapp3.1/AVS.dll index dae002a..9743d9e 100644 Binary files a/bin/Release/netcoreapp3.1/AVS.dll and b/bin/Release/netcoreapp3.1/AVS.dll differ diff --git a/bin/Release/netcoreapp3.1/AVS.exe b/bin/Release/netcoreapp3.1/AVS.exe index 407cfb0..ede22cd 100644 Binary files a/bin/Release/netcoreapp3.1/AVS.exe and b/bin/Release/netcoreapp3.1/AVS.exe differ diff --git a/bin/Release/netcoreapp3.1/AVS.pdb b/bin/Release/netcoreapp3.1/AVS.pdb index 177bf1e..4b258ef 100644 Binary files a/bin/Release/netcoreapp3.1/AVS.pdb and b/bin/Release/netcoreapp3.1/AVS.pdb differ diff --git a/bin/Release/netcoreapp3.1/BouncyCastle.Crypto.dll b/bin/Release/netcoreapp3.1/BouncyCastle.Crypto.dll deleted file mode 100644 index b811138..0000000 Binary files a/bin/Release/netcoreapp3.1/BouncyCastle.Crypto.dll and /dev/null differ diff --git a/bin/Release/netcoreapp3.1/Google.Protobuf.dll b/bin/Release/netcoreapp3.1/Google.Protobuf.dll index 0e52e71..2a2252e 100644 Binary files a/bin/Release/netcoreapp3.1/Google.Protobuf.dll and b/bin/Release/netcoreapp3.1/Google.Protobuf.dll differ diff --git a/bin/Release/netcoreapp3.1/K4os.Compression.LZ4.Streams.dll b/bin/Release/netcoreapp3.1/K4os.Compression.LZ4.Streams.dll index 0298ee0..dfb6370 100644 Binary files a/bin/Release/netcoreapp3.1/K4os.Compression.LZ4.Streams.dll and b/bin/Release/netcoreapp3.1/K4os.Compression.LZ4.Streams.dll differ diff --git a/bin/Release/netcoreapp3.1/K4os.Compression.LZ4.dll b/bin/Release/netcoreapp3.1/K4os.Compression.LZ4.dll index 345b16f..7c267f5 100644 Binary files a/bin/Release/netcoreapp3.1/K4os.Compression.LZ4.dll and b/bin/Release/netcoreapp3.1/K4os.Compression.LZ4.dll differ diff --git a/bin/Release/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll b/bin/Release/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll index 421e812..e982c02 100644 Binary files a/bin/Release/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll and b/bin/Release/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/bin/Release/netcoreapp3.1/MySql.Data.dll b/bin/Release/netcoreapp3.1/MySql.Data.dll index 6bf00d5..239e3d6 100644 Binary files a/bin/Release/netcoreapp3.1/MySql.Data.dll and b/bin/Release/netcoreapp3.1/MySql.Data.dll differ diff --git a/bin/Release/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll b/bin/Release/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll index 733fc36..f6d75a9 100644 Binary files a/bin/Release/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll and b/bin/Release/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll differ diff --git a/bin/Release/netcoreapp3.1/System.IO.Pipelines.dll b/bin/Release/netcoreapp3.1/System.IO.Pipelines.dll index 69471fa..0c4e2ae 100644 Binary files a/bin/Release/netcoreapp3.1/System.IO.Pipelines.dll and b/bin/Release/netcoreapp3.1/System.IO.Pipelines.dll differ diff --git a/bin/Release/netcoreapp3.1/System.Text.Encodings.Web.dll b/bin/Release/netcoreapp3.1/System.Text.Encodings.Web.dll index 56bc79d..c8ea250 100644 Binary files a/bin/Release/netcoreapp3.1/System.Text.Encodings.Web.dll and b/bin/Release/netcoreapp3.1/System.Text.Encodings.Web.dll differ diff --git a/bin/Release/netcoreapp3.1/System.Text.Json.dll b/bin/Release/netcoreapp3.1/System.Text.Json.dll index 892fd35..802d8bd 100644 Binary files a/bin/Release/netcoreapp3.1/System.Text.Json.dll and b/bin/Release/netcoreapp3.1/System.Text.Json.dll differ diff --git a/bin/Release/netcoreapp3.1/ZstdSharp.dll b/bin/Release/netcoreapp3.1/ZstdSharp.dll index 3d8763d..79517e7 100644 Binary files a/bin/Release/netcoreapp3.1/ZstdSharp.dll and b/bin/Release/netcoreapp3.1/ZstdSharp.dll differ diff --git a/bin/Release/netcoreapp3.1/runtimes/win-x64/native/comerr64.dll b/bin/Release/netcoreapp3.1/runtimes/win-x64/native/comerr64.dll index 0a48cb5..b53e2bb 100644 Binary files a/bin/Release/netcoreapp3.1/runtimes/win-x64/native/comerr64.dll and b/bin/Release/netcoreapp3.1/runtimes/win-x64/native/comerr64.dll differ diff --git a/bin/Release/netcoreapp3.1/runtimes/win-x64/native/gssapi64.dll b/bin/Release/netcoreapp3.1/runtimes/win-x64/native/gssapi64.dll index 1628e38..99e756b 100644 Binary files a/bin/Release/netcoreapp3.1/runtimes/win-x64/native/gssapi64.dll and b/bin/Release/netcoreapp3.1/runtimes/win-x64/native/gssapi64.dll differ diff --git a/bin/Release/netcoreapp3.1/runtimes/win-x64/native/k5sprt64.dll b/bin/Release/netcoreapp3.1/runtimes/win-x64/native/k5sprt64.dll index 9237ce9..f13c774 100644 Binary files a/bin/Release/netcoreapp3.1/runtimes/win-x64/native/k5sprt64.dll and b/bin/Release/netcoreapp3.1/runtimes/win-x64/native/k5sprt64.dll differ diff --git a/bin/Release/netcoreapp3.1/runtimes/win-x64/native/krb5_64.dll b/bin/Release/netcoreapp3.1/runtimes/win-x64/native/krb5_64.dll index 582f680..2a2d511 100644 Binary files a/bin/Release/netcoreapp3.1/runtimes/win-x64/native/krb5_64.dll and b/bin/Release/netcoreapp3.1/runtimes/win-x64/native/krb5_64.dll differ diff --git a/bin/Release/netcoreapp3.1/runtimes/win-x64/native/krbcc64.dll b/bin/Release/netcoreapp3.1/runtimes/win-x64/native/krbcc64.dll index ba5a519..0eb3492 100644 Binary files a/bin/Release/netcoreapp3.1/runtimes/win-x64/native/krbcc64.dll and b/bin/Release/netcoreapp3.1/runtimes/win-x64/native/krbcc64.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/AVS.application b/bin/Release/netcoreapp3.1/win-x64/AVS.application index 1c906d2..fc12d94 100644 --- a/bin/Release/netcoreapp3.1/win-x64/AVS.application +++ b/bin/Release/netcoreapp3.1/win-x64/AVS.application @@ -14,7 +14,7 @@ - U646R5VvTUg8+SGcUCwQINDLr6DcH11tKWUJKn6ZQwI= + 9QJYqEhNKmvgEnV3kA7+pYwaTqtyzCv4q+2qds7NPBI= diff --git a/bin/Release/netcoreapp3.1/win-x64/AVS.deps.json b/bin/Release/netcoreapp3.1/win-x64/AVS.deps.json index 7618489..9651c11 100644 --- a/bin/Release/netcoreapp3.1/win-x64/AVS.deps.json +++ b/bin/Release/netcoreapp3.1/win-x64/AVS.deps.json @@ -11,7 +11,7 @@ "dependencies": { "MaterialSkin": "0.2.1", "Microsoft.Management.Infrastructure": "3.0.0", - "MySql.Data": "8.1.0", + "MySql.Data": "9.3.0", "Newtonsoft.Json": "13.0.3", "SerialPortStream": "2.4.1", "SharpCompress": "0.38.0", @@ -23,12 +23,20 @@ "AVS.dll": {} } }, + "BouncyCastle.Cryptography/2.5.1": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Cryptography.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.5.1.28965" + } + } + }, "EntityFramework/6.4.4": { "dependencies": { "Microsoft.CSharp": "4.7.0", "System.CodeDom": "9.0.0", "System.ComponentModel.Annotations": "4.7.0", - "System.Configuration.ConfigurationManager": "4.7.0", + "System.Configuration.ConfigurationManager": "8.0.0", "System.Data.SqlClient": "4.8.1" }, "runtime": { @@ -42,39 +50,39 @@ } } }, - "Google.Protobuf/3.21.9": { + "Google.Protobuf/3.30.0": { "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/netstandard2.0/Google.Protobuf.dll": { - "assemblyVersion": "3.21.9.0", - "fileVersion": "3.21.9.0" + "assemblyVersion": "3.30.0.0", + "fileVersion": "3.30.0.0" } } }, - "K4os.Compression.LZ4/1.3.5": { + "K4os.Compression.LZ4/1.3.8": { "dependencies": { "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/netstandard2.1/K4os.Compression.LZ4.dll": { - "assemblyVersion": "1.3.5.0", - "fileVersion": "1.3.5.0" + "assemblyVersion": "1.3.8.0", + "fileVersion": "1.3.8.0" } } }, - "K4os.Compression.LZ4.Streams/1.3.5": { + "K4os.Compression.LZ4.Streams/1.3.8": { "dependencies": { - "K4os.Compression.LZ4": "1.3.5", + "K4os.Compression.LZ4": "1.3.8", "K4os.Hash.xxHash": "1.0.8", - "System.IO.Pipelines": "6.0.3" + "System.IO.Pipelines": "9.0.0" }, "runtime": { "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { - "assemblyVersion": "1.3.5.0", - "fileVersion": "1.3.5.0" + "assemblyVersion": "1.3.8.0", + "fileVersion": "1.3.8.0" } } }, @@ -97,11 +105,11 @@ } } }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { "runtime": { "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, @@ -141,11 +149,11 @@ } } }, - "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Platforms/1.1.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, "Microsoft.Win32.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "runtime.win.Microsoft.Win32.Primitives": "4.3.0" @@ -153,58 +161,53 @@ }, "Microsoft.Win32.Registry/4.7.0": { "dependencies": { - "System.Security.AccessControl": "4.7.0", - "System.Security.Principal.Windows": "4.7.0" + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "5.0.0" } }, - "Microsoft.Win32.SystemEvents/4.7.0": { + "MySql.Data/9.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0" - } - }, - "MySql.Data/8.1.0": { - "dependencies": { - "Google.Protobuf": "3.21.9", - "K4os.Compression.LZ4.Streams": "1.3.5", - "Portable.BouncyCastle": "1.9.0", + "BouncyCastle.Cryptography": "2.5.1", + "Google.Protobuf": "3.30.0", + "K4os.Compression.LZ4.Streams": "1.3.8", "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "4.7.0", - "System.Diagnostics.DiagnosticSource": "7.0.2", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.1", "System.Runtime.CompilerServices.Unsafe": "6.0.0", "System.Runtime.Loader": "4.3.0", - "System.Security.Permissions": "4.7.0", + "System.Security.Permissions": "8.0.0", "System.Text.Encoding.CodePages": "8.0.0", - "System.Text.Json": "7.0.1", + "System.Text.Json": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4", - "ZstdSharp.Port": "0.8.1" + "ZstdSharp.Port": "0.8.5" }, "runtime": { "lib/netstandard2.1/MySql.Data.dll": { - "assemblyVersion": "8.1.0.0", - "fileVersion": "8.1.0.0" + "assemblyVersion": "9.3.0.0", + "fileVersion": "9.3.0.0" } }, "native": { "runtimes/win-x64/native/comerr64.dll": { - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/gssapi64.dll": { - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/k5sprt64.dll": { - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/krb5_64.dll": { - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/krbcc64.dll": { - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" } } }, "NETStandard.Library/1.6.1": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.Win32.Primitives": "4.3.0", "System.AppContext": "4.3.0", "System.Collections": "4.3.0", @@ -258,14 +261,6 @@ } } }, - "Portable.BouncyCastle/1.9.0": { - "runtime": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": { - "assemblyVersion": "1.9.0.0", - "fileVersion": "1.9.0.1" - } - } - }, "runtime.any.System.Collections/4.3.0": { "dependencies": { "System.Runtime": "4.3.0" @@ -299,7 +294,7 @@ "runtime.linux-x64.runtime.native.System.IO.Ports/7.0.0": {}, "runtime.native.System/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -312,7 +307,7 @@ }, "runtime.native.System.IO.Compression/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -327,7 +322,7 @@ }, "runtime.native.System.Net.Http/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -438,7 +433,7 @@ "System.Runtime.Extensions": "4.3.0", "System.Runtime.Handles": "4.3.0", "System.Runtime.InteropServices": "4.3.0", - "System.Security.Principal.Windows": "4.7.0", + "System.Security.Principal.Windows": "5.0.0", "System.Threading": "4.3.0", "System.Threading.Overlapped": "4.3.0", "System.Threading.Tasks": "4.3.0" @@ -470,9 +465,9 @@ }, "SharpCompress/0.38.0": { "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", "System.Text.Encoding.CodePages": "8.0.0", - "ZstdSharp.Port": "0.8.1" + "ZstdSharp.Port": "0.8.5" }, "runtime": { "lib/netstandard2.1/SharpCompress.dll": { @@ -510,7 +505,7 @@ }, "System.Collections/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "runtime.any.System.Collections": "4.3.0" @@ -564,15 +559,20 @@ } }, "System.ComponentModel.Annotations/4.7.0": {}, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/8.0.0": { "dependencies": { - "System.Security.Cryptography.ProtectedData": "4.7.0", - "System.Security.Permissions": "4.7.0" + "System.Security.Cryptography.ProtectedData": "8.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } } }, "System.Console/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Runtime": "4.3.0", @@ -583,7 +583,7 @@ "System.Data.SqlClient/4.8.1": { "dependencies": { "Microsoft.Win32.Registry": "4.7.0", - "System.Security.Principal.Windows": "4.7.0", + "System.Security.Principal.Windows": "5.0.0", "runtime.native.System.Data.SqlClient.sni": "4.7.0" }, "runtime": { @@ -617,27 +617,27 @@ }, "System.Diagnostics.Debug/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "runtime.win.System.Diagnostics.Debug": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource/7.0.2": { + "System.Diagnostics.DiagnosticSource/8.0.1": { "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.423.11508" + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.424.16909" } } }, "System.Diagnostics.FileVersionInfo/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Globalization": "4.3.0", "System.IO": "4.3.0", "System.IO.FileSystem": "4.3.0", @@ -650,7 +650,7 @@ }, "System.Diagnostics.Tools/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "runtime.any.System.Diagnostics.Tools": "4.3.0" @@ -658,7 +658,7 @@ }, "System.Diagnostics.TraceSource/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.Globalization": "4.3.0", @@ -671,21 +671,15 @@ }, "System.Diagnostics.Tracing/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "runtime.any.System.Diagnostics.Tracing": "4.3.0" } }, - "System.Drawing.Common/4.7.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "Microsoft.Win32.SystemEvents": "4.7.0" - } - }, "System.Globalization/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "runtime.any.System.Globalization": "4.3.0" @@ -693,7 +687,7 @@ }, "System.Globalization.Calendars/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Globalization": "4.3.0", "System.Runtime": "4.3.0", @@ -702,7 +696,7 @@ }, "System.Globalization.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Globalization": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", @@ -712,7 +706,7 @@ }, "System.IO/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Text.Encoding": "4.3.0", @@ -722,7 +716,7 @@ }, "System.IO.Compression/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Buffers": "4.5.1", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", @@ -754,7 +748,7 @@ }, "System.IO.FileSystem/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.IO.FileSystem.Primitives": "4.3.0", @@ -770,11 +764,16 @@ "System.Runtime": "4.3.0" } }, - "System.IO.Pipelines/6.0.3": { + "System.IO.Pipelines/9.0.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.Memory": "4.5.5", + "System.Threading.Tasks.Extensions": "4.5.4" + }, "runtime": { - "lib/netcoreapp3.1/System.IO.Pipelines.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.522.21309" + "lib/netstandard2.0/System.IO.Pipelines.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, @@ -833,10 +832,10 @@ "System.Memory/4.5.5": {}, "System.Net.Http/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "7.0.2", + "System.Diagnostics.DiagnosticSource": "8.0.1", "System.Diagnostics.Tracing": "4.3.0", "System.Globalization": "4.3.0", "System.Globalization.Extensions": "4.3.0", @@ -863,7 +862,7 @@ }, "System.Net.NameResolution/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Tracing": "4.3.0", "System.Globalization": "4.3.0", @@ -873,7 +872,7 @@ "System.Runtime.Extensions": "4.3.0", "System.Runtime.Handles": "4.3.0", "System.Runtime.InteropServices": "4.3.0", - "System.Security.Principal.Windows": "4.7.0", + "System.Security.Principal.Windows": "5.0.0", "System.Threading": "4.3.0", "System.Threading.Tasks": "4.3.0", "runtime.native.System": "4.3.0" @@ -881,7 +880,7 @@ }, "System.Net.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Runtime.Handles": "4.3.0", @@ -890,7 +889,7 @@ }, "System.Net.Sockets/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Net.Primitives": "4.3.0", @@ -899,7 +898,6 @@ "runtime.win.System.Net.Sockets": "4.3.0" } }, - "System.Numerics.Vectors/4.5.0": {}, "System.ObjectModel/4.3.0": { "dependencies": { "System.Collections": "4.3.0", @@ -911,13 +909,13 @@ }, "System.Private.Uri/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, "System.Reflection/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Reflection.Primitives": "4.3.0", @@ -951,7 +949,7 @@ }, "System.Reflection.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Reflection": "4.3.0", "System.Runtime": "4.3.0", @@ -980,7 +978,7 @@ }, "System.Reflection.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "runtime.any.System.Reflection.Primitives": "4.3.0" @@ -994,7 +992,7 @@ }, "System.Resources.ResourceManager/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Globalization": "4.3.0", "System.Reflection": "4.3.0", @@ -1004,7 +1002,7 @@ }, "System.Runtime/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "runtime.any.System.Runtime": "4.3.0" } @@ -1019,7 +1017,7 @@ }, "System.Runtime.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "runtime.win.System.Runtime.Extensions": "4.3.0" @@ -1027,7 +1025,7 @@ }, "System.Runtime.Handles/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "runtime.any.System.Runtime.Handles": "4.3.0" @@ -1035,7 +1033,7 @@ }, "System.Runtime.InteropServices/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Reflection": "4.3.0", "System.Reflection.Primitives": "4.3.0", @@ -1070,15 +1068,20 @@ "System.Runtime.Extensions": "4.3.0" } }, - "System.Security.AccessControl/4.7.0": { + "System.Security.AccessControl/6.0.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "System.Security.Principal.Windows": "4.7.0" + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } } }, "System.Security.Cryptography.Algorithms/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.IO": "4.3.0", "System.Resources.ResourceManager": "4.3.0", @@ -1096,7 +1099,7 @@ }, "System.Security.Cryptography.Cng/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.IO": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", @@ -1111,7 +1114,7 @@ }, "System.Security.Cryptography.Csp/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.IO": "4.3.0", "System.Reflection": "4.3.0", "System.Resources.ResourceManager": "4.3.0", @@ -1128,7 +1131,7 @@ }, "System.Security.Cryptography.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Collections.Concurrent": "4.3.0", "System.Linq": "4.3.0", @@ -1170,10 +1173,20 @@ "System.Threading.Tasks": "4.3.0" } }, - "System.Security.Cryptography.ProtectedData/4.7.0": {}, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "dependencies": { + "System.Memory": "4.5.5" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, "System.Security.Cryptography.X509Certificates/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.Globalization": "4.3.0", @@ -1200,16 +1213,28 @@ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" } }, - "System.Security.Permissions/4.7.0": { + "System.Security.Permissions/8.0.0": { "dependencies": { - "System.Security.AccessControl": "4.7.0", - "System.Windows.Extensions": "4.7.0" + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Security.Principal.Windows/5.0.0": { + "runtime": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } } }, - "System.Security.Principal.Windows/4.7.0": {}, "System.Text.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "runtime.any.System.Text.Encoding": "4.3.0" @@ -1229,14 +1254,14 @@ }, "System.Text.Encoding.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Text.Encoding": "4.3.0", "runtime.any.System.Text.Encoding.Extensions": "4.3.0" } }, - "System.Text.Encodings.Web/7.0.0": { + "System.Text.Encodings.Web/9.0.0": { "dependencies": { "System.Buffers": "4.5.1", "System.Memory": "4.5.5", @@ -1244,25 +1269,25 @@ }, "runtime": { "lib/netstandard2.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, - "System.Text.Json/7.0.1": { + "System.Text.Json/9.0.0": { "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", "System.Buffers": "4.5.1", + "System.IO.Pipelines": "9.0.0", "System.Memory": "4.5.5", - "System.Numerics.Vectors": "4.5.0", "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "7.0.0", + "System.Text.Encodings.Web": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4" }, "runtime": { "lib/netstandard2.0/System.Text.Json.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.122.56804" + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, @@ -1279,7 +1304,7 @@ }, "System.Threading.Overlapped/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", "System.Runtime.Handles": "4.3.0" @@ -1287,7 +1312,7 @@ }, "System.Threading.Tasks/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "runtime.any.System.Threading.Tasks": "4.3.0" @@ -1307,17 +1332,12 @@ }, "System.Threading.Timer/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "runtime.any.System.Threading.Timer": "4.3.0" } }, - "System.Windows.Extensions/4.7.0": { - "dependencies": { - "System.Drawing.Common": "4.7.0" - } - }, "System.Xml.ReaderWriter/4.3.0": { "dependencies": { "System.Collections": "4.3.0", @@ -1353,11 +1373,14 @@ "System.Xml.ReaderWriter": "4.3.0" } }, - "ZstdSharp.Port/0.8.1": { + "ZstdSharp.Port/0.8.5": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, "runtime": { "lib/netcoreapp3.1/ZstdSharp.dll": { - "assemblyVersion": "0.8.1.0", - "fileVersion": "0.8.1.0" + "assemblyVersion": "0.8.5.0", + "fileVersion": "0.8.5.0" } } } @@ -1369,6 +1392,13 @@ "serviceable": false, "sha512": "" }, + "BouncyCastle.Cryptography/2.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zy8TMeTP+1FH2NrLaNZtdRbBdq7u5MI+NFZQOBSM69u5RFkciinwzV2eveY6Kjf5MzgsYvvl6kTStsj3JrXqkg==", + "path": "bouncycastle.cryptography/2.5.1", + "hashPath": "bouncycastle.cryptography.2.5.1.nupkg.sha512" + }, "EntityFramework/6.4.4": { "type": "package", "serviceable": true, @@ -1376,26 +1406,26 @@ "path": "entityframework/6.4.4", "hashPath": "entityframework.6.4.4.nupkg.sha512" }, - "Google.Protobuf/3.21.9": { + "Google.Protobuf/3.30.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OTpFujTgkmqMLbg3KT7F/iuKi1rg6s5FCS2M9XcVLDn40zL8wgXm37CY/F6MeOEXKjdcnXGCN/h7oyMkVydVsg==", - "path": "google.protobuf/3.21.9", - "hashPath": "google.protobuf.3.21.9.nupkg.sha512" + "sha512": "sha512-ZnEI4oZWnHvd+Yz5Gcnx5Q5RQIuzptIzd0fmxAN8f81FYHI0USZqMOrPTkrsd/QEzo9vl2b217v9FqFgHfufQw==", + "path": "google.protobuf/3.30.0", + "hashPath": "google.protobuf.3.30.0.nupkg.sha512" }, - "K4os.Compression.LZ4/1.3.5": { + "K4os.Compression.LZ4/1.3.8": { "type": "package", "serviceable": true, - "sha512": "sha512-TS4mqlT0X1OlnvOGNfl02QdVUhuqgWuCnn7UxupIa7C9Pb6qlQ5yZA2sPhRh0OSmVULaQU64KV4wJuu//UyVQQ==", - "path": "k4os.compression.lz4/1.3.5", - "hashPath": "k4os.compression.lz4.1.3.5.nupkg.sha512" + "sha512": "sha512-LhwlPa7c1zs1OV2XadMtAWdImjLIsqFJPoRcIWAadSRn0Ri1DepK65UbWLPmt4riLqx2d40xjXRk0ogpqNtK7g==", + "path": "k4os.compression.lz4/1.3.8", + "hashPath": "k4os.compression.lz4.1.3.8.nupkg.sha512" }, - "K4os.Compression.LZ4.Streams/1.3.5": { + "K4os.Compression.LZ4.Streams/1.3.8": { "type": "package", "serviceable": true, - "sha512": "sha512-M0NufZI8ym3mm6F6HMSPz1jw7TJGdY74fjAtbIXATmnAva/8xLz50eQZJI9tf9mMeHUaFDg76N1BmEh8GR5zeA==", - "path": "k4os.compression.lz4.streams/1.3.5", - "hashPath": "k4os.compression.lz4.streams.1.3.5.nupkg.sha512" + "sha512": "sha512-P15qr8dZAeo9GvYbUIPEYFQ0MEJ0i5iqr37wsYeRC3la2uCldOoeCa6to0CZ1taiwxIV+Mk8NGuZi+4iWivK9w==", + "path": "k4os.compression.lz4.streams/1.3.8", + "hashPath": "k4os.compression.lz4.streams.1.3.8.nupkg.sha512" }, "K4os.Hash.xxHash/1.0.8": { "type": "package", @@ -1411,12 +1441,12 @@ "path": "materialskin/0.2.1", "hashPath": "materialskin.0.2.1.nupkg.sha512" }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==", - "path": "microsoft.bcl.asyncinterfaces/8.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512" + "sha512": "sha512-owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==", + "path": "microsoft.bcl.asyncinterfaces/9.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512" }, "Microsoft.CSharp/4.7.0": { "type": "package", @@ -1453,12 +1483,12 @@ "path": "microsoft.management.infrastructure.runtime.win/3.0.0", "hashPath": "microsoft.management.infrastructure.runtime.win.3.0.0.nupkg.sha512" }, - "Microsoft.NETCore.Platforms/3.1.0": { + "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "serviceable": true, - "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", - "path": "microsoft.netcore.platforms/3.1.0", - "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" }, "Microsoft.NETCore.Targets/1.1.0": { "type": "package", @@ -1481,19 +1511,12 @@ "path": "microsoft.win32.registry/4.7.0", "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" }, - "Microsoft.Win32.SystemEvents/4.7.0": { + "MySql.Data/9.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", - "path": "microsoft.win32.systemevents/4.7.0", - "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" - }, - "MySql.Data/8.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7kEJLyty7HcqJD0lnfs+2fdMrvCl0RY5oykvZThbmg6QVLT55dwygI69Eqxl0M6IThP9woyjpsezT6m7gKRrLA==", - "path": "mysql.data/8.1.0", - "hashPath": "mysql.data.8.1.0.nupkg.sha512" + "sha512": "sha512-f4iZBKubzwNnc84ecEwguv5TSwHpoArFGa+XpZY+8S9SoAnQaHfymLdZUKK4LbUbH9ACZ6X71LUvq58Mfdyipw==", + "path": "mysql.data/9.3.0", + "hashPath": "mysql.data.9.3.0.nupkg.sha512" }, "NETStandard.Library/1.6.1": { "type": "package", @@ -1509,13 +1532,6 @@ "path": "newtonsoft.json/13.0.3", "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" }, - "Portable.BouncyCastle/1.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==", - "path": "portable.bouncycastle/1.9.0", - "hashPath": "portable.bouncycastle.1.9.0.nupkg.sha512" - }, "runtime.any.System.Collections/4.3.0": { "type": "package", "serviceable": true, @@ -1950,12 +1966,12 @@ "path": "system.componentmodel.annotations/4.7.0", "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512" }, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", - "path": "system.configuration.configurationmanager/4.7.0", - "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", + "path": "system.configuration.configurationmanager/8.0.0", + "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512" }, "System.Console/4.3.0": { "type": "package", @@ -1999,12 +2015,12 @@ "path": "system.diagnostics.debug/4.3.0", "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" }, - "System.Diagnostics.DiagnosticSource/7.0.2": { + "System.Diagnostics.DiagnosticSource/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==", - "path": "system.diagnostics.diagnosticsource/7.0.2", - "hashPath": "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512" + "sha512": "sha512-vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", + "path": "system.diagnostics.diagnosticsource/8.0.1", + "hashPath": "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512" }, "System.Diagnostics.FileVersionInfo/4.3.0": { "type": "package", @@ -2034,13 +2050,6 @@ "path": "system.diagnostics.tracing/4.3.0", "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" }, - "System.Drawing.Common/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", - "path": "system.drawing.common/4.7.0", - "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" - }, "System.Globalization/4.3.0": { "type": "package", "serviceable": true, @@ -2097,12 +2106,12 @@ "path": "system.io.filesystem.primitives/4.3.0", "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" }, - "System.IO.Pipelines/6.0.3": { + "System.IO.Pipelines/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", - "path": "system.io.pipelines/6.0.3", - "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + "sha512": "sha512-eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", + "path": "system.io.pipelines/9.0.0", + "hashPath": "system.io.pipelines.9.0.0.nupkg.sha512" }, "System.IO.Ports/7.0.0": { "type": "package", @@ -2167,13 +2176,6 @@ "path": "system.net.sockets/4.3.0", "hashPath": "system.net.sockets.4.3.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.ObjectModel/4.3.0": { "type": "package", "serviceable": true, @@ -2307,12 +2309,12 @@ "path": "system.runtime.numerics/4.3.0", "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" }, - "System.Security.AccessControl/4.7.0": { + "System.Security.AccessControl/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", - "path": "system.security.accesscontrol/4.7.0", - "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" }, "System.Security.Cryptography.Algorithms/4.3.0": { "type": "package", @@ -2356,12 +2358,12 @@ "path": "system.security.cryptography.primitives/4.3.0", "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" }, - "System.Security.Cryptography.ProtectedData/4.7.0": { + "System.Security.Cryptography.ProtectedData/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", - "path": "system.security.cryptography.protecteddata/4.7.0", - "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "path": "system.security.cryptography.protecteddata/8.0.0", + "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512" }, "System.Security.Cryptography.X509Certificates/4.3.0": { "type": "package", @@ -2370,19 +2372,19 @@ "path": "system.security.cryptography.x509certificates/4.3.0", "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" }, - "System.Security.Permissions/4.7.0": { + "System.Security.Permissions/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", - "path": "system.security.permissions/4.7.0", - "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + "sha512": "sha512-v/BBylw7XevuAsHXoX9dDUUfmBIcUf7Lkz8K3ZXIKz3YRKpw8YftpSir4n4e/jDTKFoaK37AsC3xnk+GNFI1Ow==", + "path": "system.security.permissions/8.0.0", + "hashPath": "system.security.permissions.8.0.0.nupkg.sha512" }, - "System.Security.Principal.Windows/4.7.0": { + "System.Security.Principal.Windows/5.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", - "path": "system.security.principal.windows/4.7.0", - "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" }, "System.Text.Encoding/4.3.0": { "type": "package", @@ -2405,19 +2407,19 @@ "path": "system.text.encoding.extensions/4.3.0", "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" }, - "System.Text.Encodings.Web/7.0.0": { + "System.Text.Encodings.Web/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", - "path": "system.text.encodings.web/7.0.0", - "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" + "sha512": "sha512-e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", + "path": "system.text.encodings.web/9.0.0", + "hashPath": "system.text.encodings.web.9.0.0.nupkg.sha512" }, - "System.Text.Json/7.0.1": { + "System.Text.Json/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OtDEmCCiNl8JAduFKZ/r0Sw6XZNHwIicUYy/mXgMDGeOsZLshH37qi3oPRzFYiryVktiMoQLByMGPtRCEMYbeQ==", - "path": "system.text.json/7.0.1", - "hashPath": "system.text.json.7.0.1.nupkg.sha512" + "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "path": "system.text.json/9.0.0", + "hashPath": "system.text.json.9.0.0.nupkg.sha512" }, "System.Text.RegularExpressions/4.3.0": { "type": "package", @@ -2475,13 +2477,6 @@ "path": "system.threading.timer/4.3.0", "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" }, - "System.Windows.Extensions/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", - "path": "system.windows.extensions/4.7.0", - "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" - }, "System.Xml.ReaderWriter/4.3.0": { "type": "package", "serviceable": true, @@ -2496,12 +2491,12 @@ "path": "system.xml.xdocument/4.3.0", "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" }, - "ZstdSharp.Port/0.8.1": { + "ZstdSharp.Port/0.8.5": { "type": "package", "serviceable": true, - "sha512": "sha512-19tNz33kn2EkyViFXuxfVn338UJaRmkwBphVqP2dVJIYQUQgFrgG5h061mxkRRg1Ax6r+6WOj1FxaFZ5qaWqqg==", - "path": "zstdsharp.port/0.8.1", - "hashPath": "zstdsharp.port.0.8.1.nupkg.sha512" + "sha512": "sha512-TR4j17WeVSEb3ncgL2NqlXEqcy04I+Kk9CaebNDplUeL8XOgjkZ7fP4Wg4grBdPLIqsV86p2QaXTkZoRMVOsew==", + "path": "zstdsharp.port/0.8.5", + "hashPath": "zstdsharp.port.0.8.5.nupkg.sha512" } } } \ No newline at end of file diff --git a/bin/Release/netcoreapp3.1/win-x64/AVS.dll b/bin/Release/netcoreapp3.1/win-x64/AVS.dll index 05e83df..5127094 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/AVS.dll and b/bin/Release/netcoreapp3.1/win-x64/AVS.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/AVS.dll.manifest b/bin/Release/netcoreapp3.1/win-x64/AVS.dll.manifest index 5123c53..c9f43dc 100644 --- a/bin/Release/netcoreapp3.1/win-x64/AVS.dll.manifest +++ b/bin/Release/netcoreapp3.1/win-x64/AVS.dll.manifest @@ -53,13 +53,13 @@ - + - DP08gYRmtxcj9ODAGI/o7B8M9suw+HOulaMYfkptXXc= + 6S+RtJKmJggrJ8hTRGhQDmxoV+UAJeeo1na1DKrWCiU= \ No newline at end of file diff --git a/bin/Release/netcoreapp3.1/win-x64/AVS.exe b/bin/Release/netcoreapp3.1/win-x64/AVS.exe index 0f24046..ff6d6d2 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/AVS.exe and b/bin/Release/netcoreapp3.1/win-x64/AVS.exe differ diff --git a/bin/Release/netcoreapp3.1/win-x64/AVS.pdb b/bin/Release/netcoreapp3.1/win-x64/AVS.pdb index 242fe98..1b934c2 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/AVS.pdb and b/bin/Release/netcoreapp3.1/win-x64/AVS.pdb differ diff --git a/bin/Release/netcoreapp3.1/win-x64/BouncyCastle.Crypto.dll b/bin/Release/netcoreapp3.1/win-x64/BouncyCastle.Crypto.dll deleted file mode 100644 index b811138..0000000 Binary files a/bin/Release/netcoreapp3.1/win-x64/BouncyCastle.Crypto.dll and /dev/null differ diff --git a/bin/Release/netcoreapp3.1/win-x64/Google.Protobuf.dll b/bin/Release/netcoreapp3.1/win-x64/Google.Protobuf.dll index 0e52e71..2a2252e 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/Google.Protobuf.dll and b/bin/Release/netcoreapp3.1/win-x64/Google.Protobuf.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/K4os.Compression.LZ4.Streams.dll b/bin/Release/netcoreapp3.1/win-x64/K4os.Compression.LZ4.Streams.dll index 0298ee0..dfb6370 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/K4os.Compression.LZ4.Streams.dll and b/bin/Release/netcoreapp3.1/win-x64/K4os.Compression.LZ4.Streams.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/K4os.Compression.LZ4.dll b/bin/Release/netcoreapp3.1/win-x64/K4os.Compression.LZ4.dll index 345b16f..7c267f5 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/K4os.Compression.LZ4.dll and b/bin/Release/netcoreapp3.1/win-x64/K4os.Compression.LZ4.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/Microsoft.Bcl.AsyncInterfaces.dll b/bin/Release/netcoreapp3.1/win-x64/Microsoft.Bcl.AsyncInterfaces.dll index 421e812..e982c02 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/Microsoft.Bcl.AsyncInterfaces.dll and b/bin/Release/netcoreapp3.1/win-x64/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/MySql.Data.dll b/bin/Release/netcoreapp3.1/win-x64/MySql.Data.dll index 6bf00d5..239e3d6 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/MySql.Data.dll and b/bin/Release/netcoreapp3.1/win-x64/MySql.Data.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/System.Diagnostics.DiagnosticSource.dll b/bin/Release/netcoreapp3.1/win-x64/System.Diagnostics.DiagnosticSource.dll index 733fc36..f6d75a9 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/System.Diagnostics.DiagnosticSource.dll and b/bin/Release/netcoreapp3.1/win-x64/System.Diagnostics.DiagnosticSource.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/System.IO.Pipelines.dll b/bin/Release/netcoreapp3.1/win-x64/System.IO.Pipelines.dll index 69471fa..0c4e2ae 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/System.IO.Pipelines.dll and b/bin/Release/netcoreapp3.1/win-x64/System.IO.Pipelines.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/System.Text.Encodings.Web.dll b/bin/Release/netcoreapp3.1/win-x64/System.Text.Encodings.Web.dll index 56bc79d..c8ea250 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/System.Text.Encodings.Web.dll and b/bin/Release/netcoreapp3.1/win-x64/System.Text.Encodings.Web.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/System.Text.Json.dll b/bin/Release/netcoreapp3.1/win-x64/System.Text.Json.dll index 892fd35..802d8bd 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/System.Text.Json.dll and b/bin/Release/netcoreapp3.1/win-x64/System.Text.Json.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/ZstdSharp.dll b/bin/Release/netcoreapp3.1/win-x64/ZstdSharp.dll index 3d8763d..79517e7 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/ZstdSharp.dll and b/bin/Release/netcoreapp3.1/win-x64/ZstdSharp.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/comerr64.dll b/bin/Release/netcoreapp3.1/win-x64/comerr64.dll index 0a48cb5..b53e2bb 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/comerr64.dll and b/bin/Release/netcoreapp3.1/win-x64/comerr64.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/gssapi64.dll b/bin/Release/netcoreapp3.1/win-x64/gssapi64.dll index 1628e38..99e756b 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/gssapi64.dll and b/bin/Release/netcoreapp3.1/win-x64/gssapi64.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/k5sprt64.dll b/bin/Release/netcoreapp3.1/win-x64/k5sprt64.dll index 9237ce9..f13c774 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/k5sprt64.dll and b/bin/Release/netcoreapp3.1/win-x64/k5sprt64.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/krb5_64.dll b/bin/Release/netcoreapp3.1/win-x64/krb5_64.dll index 582f680..2a2d511 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/krb5_64.dll and b/bin/Release/netcoreapp3.1/win-x64/krb5_64.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/krbcc64.dll b/bin/Release/netcoreapp3.1/win-x64/krbcc64.dll index ba5a519..0eb3492 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/krbcc64.dll and b/bin/Release/netcoreapp3.1/win-x64/krbcc64.dll differ diff --git a/bin/publish/AVS.application b/bin/publish/AVS.application index 26e02cd..e4015e4 100644 --- a/bin/publish/AVS.application +++ b/bin/publish/AVS.application @@ -14,7 +14,7 @@ - U646R5VvTUg8+SGcUCwQINDLr6DcH11tKWUJKn6ZQwI= + 9QJYqEhNKmvgEnV3kA7+pYwaTqtyzCv4q+2qds7NPBI= diff --git a/bin/publish/AVS.exe b/bin/publish/AVS.exe index c774647..574b01f 100644 Binary files a/bin/publish/AVS.exe and b/bin/publish/AVS.exe differ diff --git a/bin/publish/AVS.pdb b/bin/publish/AVS.pdb index 242fe98..1b934c2 100644 Binary files a/bin/publish/AVS.pdb and b/bin/publish/AVS.pdb differ diff --git a/bin/publish/Application Files/AVS_1_0_0_0/AVS.dll.manifest b/bin/publish/Application Files/AVS_1_0_0_0/AVS.dll.manifest index 5123c53..c9f43dc 100644 --- a/bin/publish/Application Files/AVS_1_0_0_0/AVS.dll.manifest +++ b/bin/publish/Application Files/AVS_1_0_0_0/AVS.dll.manifest @@ -53,13 +53,13 @@ - + - DP08gYRmtxcj9ODAGI/o7B8M9suw+HOulaMYfkptXXc= + 6S+RtJKmJggrJ8hTRGhQDmxoV+UAJeeo1na1DKrWCiU= \ No newline at end of file diff --git a/bin/publish/Application Files/AVS_1_0_0_0/AVS.exe.deploy b/bin/publish/Application Files/AVS_1_0_0_0/AVS.exe.deploy index c774647..574b01f 100644 Binary files a/bin/publish/Application Files/AVS_1_0_0_0/AVS.exe.deploy and b/bin/publish/Application Files/AVS_1_0_0_0/AVS.exe.deploy differ diff --git a/obj/AVS.csproj.nuget.dgspec.json b/obj/AVS.csproj.nuget.dgspec.json index 4c5fcbd..54a3d61 100644 --- a/obj/AVS.csproj.nuget.dgspec.json +++ b/obj/AVS.csproj.nuget.dgspec.json @@ -57,7 +57,7 @@ }, "MySql.Data": { "target": "Package", - "version": "[8.1.0, )" + "version": "[9.3.0, )" }, "Newtonsoft.Json": { "target": "Package", diff --git a/obj/AVS.csproj.nuget.g.targets b/obj/AVS.csproj.nuget.g.targets index d4769b1..a86ab11 100644 --- a/obj/AVS.csproj.nuget.g.targets +++ b/obj/AVS.csproj.nuget.g.targets @@ -4,13 +4,18 @@ $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - + + + + - + + + + \ No newline at end of file diff --git a/obj/Debug/AVS.1.0.0.nuspec b/obj/Debug/AVS.1.0.0.nuspec index 117524f..90e4cf4 100644 --- a/obj/Debug/AVS.1.0.0.nuspec +++ b/obj/Debug/AVS.1.0.0.nuspec @@ -9,7 +9,7 @@ - + diff --git a/obj/Debug/netcoreapp3.1/AVS.AssemblyInfo.cs b/obj/Debug/netcoreapp3.1/AVS.AssemblyInfo.cs index 3a2eec3..b512530 100644 --- a/obj/Debug/netcoreapp3.1/AVS.AssemblyInfo.cs +++ b/obj/Debug/netcoreapp3.1/AVS.AssemblyInfo.cs @@ -17,7 +17,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] [assembly: System.Reflection.AssemblyProductAttribute("AVS")] [assembly: System.Reflection.AssemblyTitleAttribute("AVS")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.2")] // Generated by the MSBuild WriteCodeFragment class. diff --git a/obj/Debug/netcoreapp3.1/AVS.AssemblyInfoInputs.cache b/obj/Debug/netcoreapp3.1/AVS.AssemblyInfoInputs.cache index 3fddba0..5a82953 100644 --- a/obj/Debug/netcoreapp3.1/AVS.AssemblyInfoInputs.cache +++ b/obj/Debug/netcoreapp3.1/AVS.AssemblyInfoInputs.cache @@ -1 +1 @@ -780de65e10ea97828cb41077d81ed225b0f971cd +f8f57b04c9418735bc62e29247d10c70444fa22e diff --git a/obj/Debug/netcoreapp3.1/AVS.assets.cache b/obj/Debug/netcoreapp3.1/AVS.assets.cache index e0a36e4..2a4aaf1 100644 Binary files a/obj/Debug/netcoreapp3.1/AVS.assets.cache and b/obj/Debug/netcoreapp3.1/AVS.assets.cache differ diff --git a/obj/Debug/netcoreapp3.1/AVS.csproj.AssemblyReference.cache b/obj/Debug/netcoreapp3.1/AVS.csproj.AssemblyReference.cache index 0c983e2..f5e894a 100644 Binary files a/obj/Debug/netcoreapp3.1/AVS.csproj.AssemblyReference.cache and b/obj/Debug/netcoreapp3.1/AVS.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/netcoreapp3.1/AVS.csproj.CoreCompileInputs.cache b/obj/Debug/netcoreapp3.1/AVS.csproj.CoreCompileInputs.cache index 3a2c994..28552db 100644 --- a/obj/Debug/netcoreapp3.1/AVS.csproj.CoreCompileInputs.cache +++ b/obj/Debug/netcoreapp3.1/AVS.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -952bfb2735d05ec9b79c014d31e167b0141dec43 +f69833f77b7aabbbd99fd86e876211c79968421a diff --git a/obj/Debug/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt b/obj/Debug/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt index 451ed08..9cb856a 100644 --- a/obj/Debug/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt +++ b/obj/Debug/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt @@ -258,6 +258,7 @@ D:\Projects\AVS\bin\Debug\netcoreapp3.1\AVS.runtimeconfig.json D:\Projects\AVS\bin\Debug\netcoreapp3.1\AVS.runtimeconfig.dev.json D:\Projects\AVS\bin\Debug\netcoreapp3.1\AVS.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\AVS.pdb +D:\Projects\AVS\bin\Debug\netcoreapp3.1\BouncyCastle.Cryptography.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\EntityFramework.SqlServer.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\EntityFramework.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\Google.Protobuf.dll @@ -269,11 +270,11 @@ D:\Projects\AVS\bin\Debug\netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\MySql.Data.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll -D:\Projects\AVS\bin\Debug\netcoreapp3.1\BouncyCastle.Crypto.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\RJCP.SerialPortStream.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\SharpCompress.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Data.SQLite.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.CodeDom.dll +D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Configuration.ConfigurationManager.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Data.SqlClient.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Data.SQLite.EF6.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll @@ -281,6 +282,10 @@ D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.IO.Pipelines.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.IO.Ports.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Management.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Runtime.CompilerServices.Unsafe.dll +D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Security.AccessControl.dll +D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Security.Cryptography.ProtectedData.dll +D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Security.Permissions.dll +D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Security.Principal.Windows.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Text.Encoding.CodePages.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Text.Encodings.Web.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Text.Json.dll @@ -314,7 +319,9 @@ D:\Projects\AVS\bin\Debug\netcoreapp3.1\runtimes\win-x64\native\SQLite.Interop.d D:\Projects\AVS\bin\Debug\netcoreapp3.1\runtimes\win-x86\native\SQLite.Interop.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll -D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.csproj.AssemblyReference.cache +D:\Projects\AVS\bin\Debug\netcoreapp3.1\runtimes\win\lib\netstandard2.0\System.Security.AccessControl.dll +D:\Projects\AVS\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\System.Security.Principal.Windows.dll +D:\Projects\AVS\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\System.Security.Principal.Windows.dll D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.CartonForm.resources D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.LoginForm.resources D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.MainForm.resources @@ -328,3 +335,4 @@ D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.csproj.CopyComplete D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.dll D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.pdb D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.genruntimeconfig.cache +D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.csproj.AssemblyReference.cache diff --git a/obj/Debug/netcoreapp3.1/AVS.csproj.GenerateResource.cache b/obj/Debug/netcoreapp3.1/AVS.csproj.GenerateResource.cache index 67112b7..0549a25 100644 Binary files a/obj/Debug/netcoreapp3.1/AVS.csproj.GenerateResource.cache and b/obj/Debug/netcoreapp3.1/AVS.csproj.GenerateResource.cache differ diff --git a/obj/Debug/netcoreapp3.1/AVS.designer.deps.json b/obj/Debug/netcoreapp3.1/AVS.designer.deps.json index 4d41b3c..395560c 100644 --- a/obj/Debug/netcoreapp3.1/AVS.designer.deps.json +++ b/obj/Debug/netcoreapp3.1/AVS.designer.deps.json @@ -6,12 +6,20 @@ "compilationOptions": {}, "targets": { ".NETCoreApp,Version=v3.1": { + "BouncyCastle.Cryptography/2.5.1": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Cryptography.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.5.1.28965" + } + } + }, "EntityFramework/6.4.4": { "dependencies": { "Microsoft.CSharp": "4.7.0", "System.CodeDom": "9.0.0", "System.ComponentModel.Annotations": "4.7.0", - "System.Configuration.ConfigurationManager": "4.7.0", + "System.Configuration.ConfigurationManager": "8.0.0", "System.Data.SqlClient": "4.8.1" }, "runtime": { @@ -25,39 +33,39 @@ } } }, - "Google.Protobuf/3.21.9": { + "Google.Protobuf/3.30.0": { "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/netstandard2.0/Google.Protobuf.dll": { - "assemblyVersion": "3.21.9.0", - "fileVersion": "3.21.9.0" + "assemblyVersion": "3.30.0.0", + "fileVersion": "3.30.0.0" } } }, - "K4os.Compression.LZ4/1.3.5": { + "K4os.Compression.LZ4/1.3.8": { "dependencies": { "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/netstandard2.1/K4os.Compression.LZ4.dll": { - "assemblyVersion": "1.3.5.0", - "fileVersion": "1.3.5.0" + "assemblyVersion": "1.3.8.0", + "fileVersion": "1.3.8.0" } } }, - "K4os.Compression.LZ4.Streams/1.3.5": { + "K4os.Compression.LZ4.Streams/1.3.8": { "dependencies": { - "K4os.Compression.LZ4": "1.3.5", + "K4os.Compression.LZ4": "1.3.8", "K4os.Hash.xxHash": "1.0.8", - "System.IO.Pipelines": "6.0.3" + "System.IO.Pipelines": "9.0.0" }, "runtime": { "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { - "assemblyVersion": "1.3.5.0", - "fileVersion": "1.3.5.0" + "assemblyVersion": "1.3.8.0", + "fileVersion": "1.3.8.0" } } }, @@ -80,11 +88,11 @@ } } }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { "runtime": { "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, @@ -171,19 +179,19 @@ } } }, - "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Platforms/1.1.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, "Microsoft.Win32.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "Microsoft.Win32.Registry/4.7.0": { "dependencies": { - "System.Security.AccessControl": "4.7.0", - "System.Security.Principal.Windows": "4.7.0" + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "5.0.0" }, "runtime": { "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { @@ -206,78 +214,59 @@ } } }, - "Microsoft.Win32.SystemEvents/4.7.0": { + "MySql.Data/9.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.19.56404" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.19.56404" - } - } - }, - "MySql.Data/8.1.0": { - "dependencies": { - "Google.Protobuf": "3.21.9", - "K4os.Compression.LZ4.Streams": "1.3.5", - "Portable.BouncyCastle": "1.9.0", + "BouncyCastle.Cryptography": "2.5.1", + "Google.Protobuf": "3.30.0", + "K4os.Compression.LZ4.Streams": "1.3.8", "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "4.7.0", - "System.Diagnostics.DiagnosticSource": "7.0.2", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.1", "System.Runtime.CompilerServices.Unsafe": "6.0.0", "System.Runtime.Loader": "4.3.0", - "System.Security.Permissions": "4.7.0", + "System.Security.Permissions": "8.0.0", "System.Text.Encoding.CodePages": "8.0.0", - "System.Text.Json": "7.0.1", + "System.Text.Json": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4", - "ZstdSharp.Port": "0.8.1" + "ZstdSharp.Port": "0.8.5" }, "runtime": { "lib/netstandard2.1/MySql.Data.dll": { - "assemblyVersion": "8.1.0.0", - "fileVersion": "8.1.0.0" + "assemblyVersion": "9.3.0.0", + "fileVersion": "9.3.0.0" } }, "runtimeTargets": { "runtimes/win-x64/native/comerr64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/gssapi64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/k5sprt64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/krb5_64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/krbcc64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" } } }, "NETStandard.Library/1.6.1": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.Win32.Primitives": "4.3.0", "System.AppContext": "4.3.0", "System.Collections": "4.3.0", @@ -331,14 +320,6 @@ } } }, - "Portable.BouncyCastle/1.9.0": { - "runtime": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": { - "assemblyVersion": "1.9.0.0", - "fileVersion": "1.9.0.1" - } - } - }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "runtimeTargets": { "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { @@ -395,7 +376,7 @@ }, "runtime.native.System/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -408,7 +389,7 @@ }, "runtime.native.System.IO.Compression/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -423,7 +404,7 @@ }, "runtime.native.System.Net.Http/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -584,9 +565,9 @@ }, "SharpCompress/0.38.0": { "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", "System.Text.Encoding.CodePages": "8.0.0", - "ZstdSharp.Port": "0.8.1" + "ZstdSharp.Port": "0.8.5" }, "runtime": { "lib/netstandard2.1/SharpCompress.dll": { @@ -647,7 +628,7 @@ }, "System.Collections/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -731,21 +712,20 @@ } } }, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/8.0.0": { "dependencies": { - "System.Security.Cryptography.ProtectedData": "4.7.0", - "System.Security.Permissions": "4.7.0" + "System.Security.Cryptography.ProtectedData": "8.0.0" }, "runtime": { "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, "System.Console/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Runtime": "4.3.0", @@ -755,7 +735,7 @@ "System.Data.SqlClient/4.8.1": { "dependencies": { "Microsoft.Win32.Registry": "4.7.0", - "System.Security.Principal.Windows": "4.7.0", + "System.Security.Principal.Windows": "5.0.0", "runtime.native.System.Data.SqlClient.sni": "4.7.0" }, "runtime": { @@ -803,26 +783,26 @@ }, "System.Diagnostics.Debug/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource/7.0.2": { + "System.Diagnostics.DiagnosticSource/8.0.1": { "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.423.11508" + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.424.16909" } } }, "System.Diagnostics.FileVersionInfo/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Globalization": "4.3.0", "System.IO": "4.3.0", "System.IO.FileSystem": "4.3.0", @@ -849,14 +829,14 @@ }, "System.Diagnostics.Tools/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Diagnostics.TraceSource/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.Globalization": "4.3.0", @@ -883,47 +863,21 @@ }, "System.Diagnostics.Tracing/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Drawing.Common/4.7.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "Microsoft.Win32.SystemEvents": "4.7.0" - }, - "runtime": { - "lib/netstandard2.0/System.Drawing.Common.dll": { - "assemblyVersion": "4.0.0.1", - "fileVersion": "4.6.26919.2" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.19.56404" - }, - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.19.56404" - } - } - }, "System.Globalization/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Globalization.Calendars/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Globalization": "4.3.0", "System.Runtime": "4.3.0" @@ -931,7 +885,7 @@ }, "System.Globalization.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Globalization": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", @@ -955,7 +909,7 @@ }, "System.IO/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Text.Encoding": "4.3.0", @@ -964,7 +918,7 @@ }, "System.IO.Compression/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Buffers": "4.5.1", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", @@ -1016,7 +970,7 @@ }, "System.IO.FileSystem/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.IO.FileSystem.Primitives": "4.3.0", @@ -1037,11 +991,16 @@ } } }, - "System.IO.Pipelines/6.0.3": { + "System.IO.Pipelines/9.0.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.Memory": "4.5.5", + "System.Threading.Tasks.Extensions": "4.5.4" + }, "runtime": { - "lib/netcoreapp3.1/System.IO.Pipelines.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.522.21309" + "lib/netstandard2.0/System.IO.Pipelines.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, @@ -1112,10 +1071,10 @@ "System.Memory/4.5.5": {}, "System.Net.Http/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "7.0.2", + "System.Diagnostics.DiagnosticSource": "8.0.1", "System.Diagnostics.Tracing": "4.3.0", "System.Globalization": "4.3.0", "System.Globalization.Extensions": "4.3.0", @@ -1156,7 +1115,7 @@ }, "System.Net.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Runtime.Handles": "4.3.0" @@ -1164,7 +1123,7 @@ }, "System.Net.Sockets/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Net.Primitives": "4.3.0", @@ -1172,7 +1131,6 @@ "System.Threading.Tasks": "4.3.0" } }, - "System.Numerics.Vectors/4.5.0": {}, "System.ObjectModel/4.3.0": { "dependencies": { "System.Collections": "4.3.0", @@ -1190,7 +1148,7 @@ }, "System.Reflection/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Reflection.Primitives": "4.3.0", @@ -1241,7 +1199,7 @@ }, "System.Reflection.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Reflection": "4.3.0", "System.Runtime": "4.3.0" @@ -1275,7 +1233,7 @@ }, "System.Reflection.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -1294,7 +1252,7 @@ }, "System.Resources.ResourceManager/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Globalization": "4.3.0", "System.Reflection": "4.3.0", @@ -1303,7 +1261,7 @@ }, "System.Runtime/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -1317,21 +1275,21 @@ }, "System.Runtime.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Runtime.Handles/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Runtime.InteropServices/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Reflection": "4.3.0", "System.Reflection.Primitives": "4.3.0", @@ -1397,29 +1355,28 @@ } } }, - "System.Security.AccessControl/4.7.0": { + "System.Security.AccessControl/6.0.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "System.Security.Principal.Windows": "4.7.0" + "System.Security.Principal.Windows": "5.0.0" }, "runtime": { "lib/netstandard2.0/System.Security.AccessControl.dll": { - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, "System.Security.Cryptography.Algorithms/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.IO": "4.3.0", "System.Resources.ResourceManager": "4.3.0", @@ -1457,7 +1414,7 @@ }, "System.Security.Cryptography.Cng/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.IO": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", @@ -1486,7 +1443,7 @@ }, "System.Security.Cryptography.Csp/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.IO": "4.3.0", "System.Reflection": "4.3.0", "System.Resources.ResourceManager": "4.3.0", @@ -1517,7 +1474,7 @@ }, "System.Security.Cryptography.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Collections.Concurrent": "4.3.0", "System.Linq": "4.3.0", @@ -1593,25 +1550,20 @@ } } }, - "System.Security.Cryptography.ProtectedData/4.7.0": { + "System.Security.Cryptography.ProtectedData/8.0.0": { + "dependencies": { + "System.Memory": "4.5.5" + }, "runtime": { "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "4.0.5.0", - "fileVersion": "4.700.19.56404" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.5.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, "System.Security.Cryptography.X509Certificates/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.Globalization": "4.3.0", @@ -1652,43 +1604,42 @@ } } }, - "System.Security.Permissions/4.7.0": { + "System.Security.Permissions/8.0.0": { "dependencies": { - "System.Security.AccessControl": "4.7.0", - "System.Windows.Extensions": "4.7.0" + "System.Security.AccessControl": "6.0.0" }, "runtime": { - "lib/netcoreapp3.0/System.Security.Permissions.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.700.19.56404" + "lib/netstandard2.0/System.Security.Permissions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, - "System.Security.Principal.Windows/4.7.0": { + "System.Security.Principal.Windows/5.0.0": { "runtime": { "lib/netstandard2.0/System.Security.Principal.Windows.dll": { - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" } }, "runtimeTargets": { "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { "rid": "unix", "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" }, "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" } } }, "System.Text.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -1707,13 +1658,13 @@ }, "System.Text.Encoding.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Text.Encoding": "4.3.0" } }, - "System.Text.Encodings.Web/7.0.0": { + "System.Text.Encodings.Web/9.0.0": { "dependencies": { "System.Buffers": "4.5.1", "System.Memory": "4.5.5", @@ -1721,25 +1672,25 @@ }, "runtime": { "lib/netstandard2.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, - "System.Text.Json/7.0.1": { + "System.Text.Json/9.0.0": { "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", "System.Buffers": "4.5.1", + "System.IO.Pipelines": "9.0.0", "System.Memory": "4.5.5", - "System.Numerics.Vectors": "4.5.0", "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "7.0.0", + "System.Text.Encodings.Web": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4" }, "runtime": { "lib/netstandard2.0/System.Text.Json.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.122.56804" + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, @@ -1768,7 +1719,7 @@ }, "System.Threading.Overlapped/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", "System.Runtime.Handles": "4.3.0" @@ -1790,7 +1741,7 @@ }, "System.Threading.Tasks/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -1821,30 +1772,11 @@ }, "System.Threading.Timer/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Windows.Extensions/4.7.0": { - "dependencies": { - "System.Drawing.Common": "4.7.0" - }, - "runtime": { - "lib/netcoreapp3.0/System.Windows.Extensions.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.700.19.56404" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.700.19.56404" - } - } - }, "System.Xml.ReaderWriter/4.3.0": { "dependencies": { "System.Collections": "4.3.0", @@ -1892,17 +1824,27 @@ } } }, - "ZstdSharp.Port/0.8.1": { + "ZstdSharp.Port/0.8.5": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, "runtime": { "lib/netcoreapp3.1/ZstdSharp.dll": { - "assemblyVersion": "0.8.1.0", - "fileVersion": "0.8.1.0" + "assemblyVersion": "0.8.5.0", + "fileVersion": "0.8.5.0" } } } } }, "libraries": { + "BouncyCastle.Cryptography/2.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zy8TMeTP+1FH2NrLaNZtdRbBdq7u5MI+NFZQOBSM69u5RFkciinwzV2eveY6Kjf5MzgsYvvl6kTStsj3JrXqkg==", + "path": "bouncycastle.cryptography/2.5.1", + "hashPath": "bouncycastle.cryptography.2.5.1.nupkg.sha512" + }, "EntityFramework/6.4.4": { "type": "package", "serviceable": true, @@ -1910,26 +1852,26 @@ "path": "entityframework/6.4.4", "hashPath": "entityframework.6.4.4.nupkg.sha512" }, - "Google.Protobuf/3.21.9": { + "Google.Protobuf/3.30.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OTpFujTgkmqMLbg3KT7F/iuKi1rg6s5FCS2M9XcVLDn40zL8wgXm37CY/F6MeOEXKjdcnXGCN/h7oyMkVydVsg==", - "path": "google.protobuf/3.21.9", - "hashPath": "google.protobuf.3.21.9.nupkg.sha512" + "sha512": "sha512-ZnEI4oZWnHvd+Yz5Gcnx5Q5RQIuzptIzd0fmxAN8f81FYHI0USZqMOrPTkrsd/QEzo9vl2b217v9FqFgHfufQw==", + "path": "google.protobuf/3.30.0", + "hashPath": "google.protobuf.3.30.0.nupkg.sha512" }, - "K4os.Compression.LZ4/1.3.5": { + "K4os.Compression.LZ4/1.3.8": { "type": "package", "serviceable": true, - "sha512": "sha512-TS4mqlT0X1OlnvOGNfl02QdVUhuqgWuCnn7UxupIa7C9Pb6qlQ5yZA2sPhRh0OSmVULaQU64KV4wJuu//UyVQQ==", - "path": "k4os.compression.lz4/1.3.5", - "hashPath": "k4os.compression.lz4.1.3.5.nupkg.sha512" + "sha512": "sha512-LhwlPa7c1zs1OV2XadMtAWdImjLIsqFJPoRcIWAadSRn0Ri1DepK65UbWLPmt4riLqx2d40xjXRk0ogpqNtK7g==", + "path": "k4os.compression.lz4/1.3.8", + "hashPath": "k4os.compression.lz4.1.3.8.nupkg.sha512" }, - "K4os.Compression.LZ4.Streams/1.3.5": { + "K4os.Compression.LZ4.Streams/1.3.8": { "type": "package", "serviceable": true, - "sha512": "sha512-M0NufZI8ym3mm6F6HMSPz1jw7TJGdY74fjAtbIXATmnAva/8xLz50eQZJI9tf9mMeHUaFDg76N1BmEh8GR5zeA==", - "path": "k4os.compression.lz4.streams/1.3.5", - "hashPath": "k4os.compression.lz4.streams.1.3.5.nupkg.sha512" + "sha512": "sha512-P15qr8dZAeo9GvYbUIPEYFQ0MEJ0i5iqr37wsYeRC3la2uCldOoeCa6to0CZ1taiwxIV+Mk8NGuZi+4iWivK9w==", + "path": "k4os.compression.lz4.streams/1.3.8", + "hashPath": "k4os.compression.lz4.streams.1.3.8.nupkg.sha512" }, "K4os.Hash.xxHash/1.0.8": { "type": "package", @@ -1945,12 +1887,12 @@ "path": "materialskin/0.2.1", "hashPath": "materialskin.0.2.1.nupkg.sha512" }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==", - "path": "microsoft.bcl.asyncinterfaces/8.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512" + "sha512": "sha512-owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==", + "path": "microsoft.bcl.asyncinterfaces/9.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512" }, "Microsoft.CSharp/4.7.0": { "type": "package", @@ -1987,12 +1929,12 @@ "path": "microsoft.management.infrastructure.runtime.win/3.0.0", "hashPath": "microsoft.management.infrastructure.runtime.win.3.0.0.nupkg.sha512" }, - "Microsoft.NETCore.Platforms/3.1.0": { + "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "serviceable": true, - "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", - "path": "microsoft.netcore.platforms/3.1.0", - "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" }, "Microsoft.NETCore.Targets/1.1.0": { "type": "package", @@ -2015,19 +1957,12 @@ "path": "microsoft.win32.registry/4.7.0", "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" }, - "Microsoft.Win32.SystemEvents/4.7.0": { + "MySql.Data/9.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", - "path": "microsoft.win32.systemevents/4.7.0", - "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" - }, - "MySql.Data/8.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7kEJLyty7HcqJD0lnfs+2fdMrvCl0RY5oykvZThbmg6QVLT55dwygI69Eqxl0M6IThP9woyjpsezT6m7gKRrLA==", - "path": "mysql.data/8.1.0", - "hashPath": "mysql.data.8.1.0.nupkg.sha512" + "sha512": "sha512-f4iZBKubzwNnc84ecEwguv5TSwHpoArFGa+XpZY+8S9SoAnQaHfymLdZUKK4LbUbH9ACZ6X71LUvq58Mfdyipw==", + "path": "mysql.data/9.3.0", + "hashPath": "mysql.data.9.3.0.nupkg.sha512" }, "NETStandard.Library/1.6.1": { "type": "package", @@ -2043,13 +1978,6 @@ "path": "newtonsoft.json/13.0.3", "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" }, - "Portable.BouncyCastle/1.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==", - "path": "portable.bouncycastle/1.9.0", - "hashPath": "portable.bouncycastle.1.9.0.nupkg.sha512" - }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "serviceable": true, @@ -2316,12 +2244,12 @@ "path": "system.componentmodel.annotations/4.7.0", "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512" }, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", - "path": "system.configuration.configurationmanager/4.7.0", - "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", + "path": "system.configuration.configurationmanager/8.0.0", + "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512" }, "System.Console/4.3.0": { "type": "package", @@ -2365,12 +2293,12 @@ "path": "system.diagnostics.debug/4.3.0", "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" }, - "System.Diagnostics.DiagnosticSource/7.0.2": { + "System.Diagnostics.DiagnosticSource/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==", - "path": "system.diagnostics.diagnosticsource/7.0.2", - "hashPath": "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512" + "sha512": "sha512-vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", + "path": "system.diagnostics.diagnosticsource/8.0.1", + "hashPath": "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512" }, "System.Diagnostics.FileVersionInfo/4.3.0": { "type": "package", @@ -2400,13 +2328,6 @@ "path": "system.diagnostics.tracing/4.3.0", "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" }, - "System.Drawing.Common/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", - "path": "system.drawing.common/4.7.0", - "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" - }, "System.Globalization/4.3.0": { "type": "package", "serviceable": true, @@ -2463,12 +2384,12 @@ "path": "system.io.filesystem.primitives/4.3.0", "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" }, - "System.IO.Pipelines/6.0.3": { + "System.IO.Pipelines/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", - "path": "system.io.pipelines/6.0.3", - "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + "sha512": "sha512-eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", + "path": "system.io.pipelines/9.0.0", + "hashPath": "system.io.pipelines.9.0.0.nupkg.sha512" }, "System.IO.Ports/7.0.0": { "type": "package", @@ -2526,13 +2447,6 @@ "path": "system.net.sockets/4.3.0", "hashPath": "system.net.sockets.4.3.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.ObjectModel/4.3.0": { "type": "package", "serviceable": true, @@ -2659,12 +2573,12 @@ "path": "system.runtime.numerics/4.3.0", "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" }, - "System.Security.AccessControl/4.7.0": { + "System.Security.AccessControl/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", - "path": "system.security.accesscontrol/4.7.0", - "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" }, "System.Security.Cryptography.Algorithms/4.3.0": { "type": "package", @@ -2708,12 +2622,12 @@ "path": "system.security.cryptography.primitives/4.3.0", "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" }, - "System.Security.Cryptography.ProtectedData/4.7.0": { + "System.Security.Cryptography.ProtectedData/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", - "path": "system.security.cryptography.protecteddata/4.7.0", - "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "path": "system.security.cryptography.protecteddata/8.0.0", + "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512" }, "System.Security.Cryptography.X509Certificates/4.3.0": { "type": "package", @@ -2722,19 +2636,19 @@ "path": "system.security.cryptography.x509certificates/4.3.0", "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" }, - "System.Security.Permissions/4.7.0": { + "System.Security.Permissions/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", - "path": "system.security.permissions/4.7.0", - "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + "sha512": "sha512-v/BBylw7XevuAsHXoX9dDUUfmBIcUf7Lkz8K3ZXIKz3YRKpw8YftpSir4n4e/jDTKFoaK37AsC3xnk+GNFI1Ow==", + "path": "system.security.permissions/8.0.0", + "hashPath": "system.security.permissions.8.0.0.nupkg.sha512" }, - "System.Security.Principal.Windows/4.7.0": { + "System.Security.Principal.Windows/5.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", - "path": "system.security.principal.windows/4.7.0", - "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" }, "System.Text.Encoding/4.3.0": { "type": "package", @@ -2757,19 +2671,19 @@ "path": "system.text.encoding.extensions/4.3.0", "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" }, - "System.Text.Encodings.Web/7.0.0": { + "System.Text.Encodings.Web/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", - "path": "system.text.encodings.web/7.0.0", - "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" + "sha512": "sha512-e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", + "path": "system.text.encodings.web/9.0.0", + "hashPath": "system.text.encodings.web.9.0.0.nupkg.sha512" }, - "System.Text.Json/7.0.1": { + "System.Text.Json/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OtDEmCCiNl8JAduFKZ/r0Sw6XZNHwIicUYy/mXgMDGeOsZLshH37qi3oPRzFYiryVktiMoQLByMGPtRCEMYbeQ==", - "path": "system.text.json/7.0.1", - "hashPath": "system.text.json.7.0.1.nupkg.sha512" + "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "path": "system.text.json/9.0.0", + "hashPath": "system.text.json.9.0.0.nupkg.sha512" }, "System.Text.RegularExpressions/4.3.0": { "type": "package", @@ -2827,13 +2741,6 @@ "path": "system.threading.timer/4.3.0", "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" }, - "System.Windows.Extensions/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", - "path": "system.windows.extensions/4.7.0", - "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" - }, "System.Xml.ReaderWriter/4.3.0": { "type": "package", "serviceable": true, @@ -2848,12 +2755,12 @@ "path": "system.xml.xdocument/4.3.0", "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" }, - "ZstdSharp.Port/0.8.1": { + "ZstdSharp.Port/0.8.5": { "type": "package", "serviceable": true, - "sha512": "sha512-19tNz33kn2EkyViFXuxfVn338UJaRmkwBphVqP2dVJIYQUQgFrgG5h061mxkRRg1Ax6r+6WOj1FxaFZ5qaWqqg==", - "path": "zstdsharp.port/0.8.1", - "hashPath": "zstdsharp.port.0.8.1.nupkg.sha512" + "sha512": "sha512-TR4j17WeVSEb3ncgL2NqlXEqcy04I+Kk9CaebNDplUeL8XOgjkZ7fP4Wg4grBdPLIqsV86p2QaXTkZoRMVOsew==", + "path": "zstdsharp.port/0.8.5", + "hashPath": "zstdsharp.port.0.8.5.nupkg.sha512" } } } \ No newline at end of file diff --git a/obj/Debug/netcoreapp3.1/AVS.dll b/obj/Debug/netcoreapp3.1/AVS.dll index 7757f9f..2e6073f 100644 Binary files a/obj/Debug/netcoreapp3.1/AVS.dll and b/obj/Debug/netcoreapp3.1/AVS.dll differ diff --git a/obj/Debug/netcoreapp3.1/AVS.pdb b/obj/Debug/netcoreapp3.1/AVS.pdb index 59b2385..1d1e1d6 100644 Binary files a/obj/Debug/netcoreapp3.1/AVS.pdb and b/obj/Debug/netcoreapp3.1/AVS.pdb differ diff --git a/obj/Debug/netcoreapp3.1/apphost.exe b/obj/Debug/netcoreapp3.1/apphost.exe index 407cfb0..ede22cd 100644 Binary files a/obj/Debug/netcoreapp3.1/apphost.exe and b/obj/Debug/netcoreapp3.1/apphost.exe differ diff --git a/obj/Release/netcoreapp3.1/AVS.AssemblyInfo.cs b/obj/Release/netcoreapp3.1/AVS.AssemblyInfo.cs index 1955800..11756ad 100644 --- a/obj/Release/netcoreapp3.1/AVS.AssemblyInfo.cs +++ b/obj/Release/netcoreapp3.1/AVS.AssemblyInfo.cs @@ -17,7 +17,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] [assembly: System.Reflection.AssemblyProductAttribute("AVS")] [assembly: System.Reflection.AssemblyTitleAttribute("AVS")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.2")] // Generated by the MSBuild WriteCodeFragment class. diff --git a/obj/Release/netcoreapp3.1/AVS.AssemblyInfoInputs.cache b/obj/Release/netcoreapp3.1/AVS.AssemblyInfoInputs.cache index 954df83..51c3bb4 100644 --- a/obj/Release/netcoreapp3.1/AVS.AssemblyInfoInputs.cache +++ b/obj/Release/netcoreapp3.1/AVS.AssemblyInfoInputs.cache @@ -1 +1 @@ -f4d77af5f12cec2bb8275fa2c9d3d3a25ea5c62e +2bae89042c8b641d43d07eff8fb91bc1381978f1 diff --git a/obj/Release/netcoreapp3.1/AVS.assets.cache b/obj/Release/netcoreapp3.1/AVS.assets.cache index 95ef341..e85ac5c 100644 Binary files a/obj/Release/netcoreapp3.1/AVS.assets.cache and b/obj/Release/netcoreapp3.1/AVS.assets.cache differ diff --git a/obj/Release/netcoreapp3.1/AVS.csproj.CoreCompileInputs.cache b/obj/Release/netcoreapp3.1/AVS.csproj.CoreCompileInputs.cache index e5e60d6..b33fd84 100644 --- a/obj/Release/netcoreapp3.1/AVS.csproj.CoreCompileInputs.cache +++ b/obj/Release/netcoreapp3.1/AVS.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -aeadd1f78e98d696c5ed90229fd22a9940ff8add +533e30e880ee5c8d1ba8251d6bc50645b7a2dc7d diff --git a/obj/Release/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt b/obj/Release/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt index e0a02e3..aeb4927 100644 --- a/obj/Release/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt +++ b/obj/Release/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt @@ -4,6 +4,7 @@ D:\Projects\AVS\bin\Release\netcoreapp3.1\AVS.runtimeconfig.json D:\Projects\AVS\bin\Release\netcoreapp3.1\AVS.runtimeconfig.dev.json D:\Projects\AVS\bin\Release\netcoreapp3.1\AVS.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\AVS.pdb +D:\Projects\AVS\bin\Release\netcoreapp3.1\BouncyCastle.Cryptography.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\EntityFramework.SqlServer.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\EntityFramework.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\Google.Protobuf.dll @@ -15,11 +16,11 @@ D:\Projects\AVS\bin\Release\netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\MySql.Data.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\Newtonsoft.Json.dll -D:\Projects\AVS\bin\Release\netcoreapp3.1\BouncyCastle.Crypto.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\RJCP.SerialPortStream.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\SharpCompress.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Data.SQLite.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\System.CodeDom.dll +D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Configuration.ConfigurationManager.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Data.SqlClient.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Data.SQLite.EF6.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll @@ -27,6 +28,10 @@ D:\Projects\AVS\bin\Release\netcoreapp3.1\System.IO.Pipelines.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\System.IO.Ports.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Management.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Runtime.CompilerServices.Unsafe.dll +D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Security.AccessControl.dll +D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Security.Cryptography.ProtectedData.dll +D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Security.Permissions.dll +D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Security.Principal.Windows.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Text.Encoding.CodePages.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Text.Encodings.Web.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Text.Json.dll @@ -60,7 +65,9 @@ D:\Projects\AVS\bin\Release\netcoreapp3.1\runtimes\win-x64\native\SQLite.Interop D:\Projects\AVS\bin\Release\netcoreapp3.1\runtimes\win-x86\native\SQLite.Interop.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll -D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.csproj.AssemblyReference.cache +D:\Projects\AVS\bin\Release\netcoreapp3.1\runtimes\win\lib\netstandard2.0\System.Security.AccessControl.dll +D:\Projects\AVS\bin\Release\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\System.Security.Principal.Windows.dll +D:\Projects\AVS\bin\Release\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\System.Security.Principal.Windows.dll D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.CartonForm.resources D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.LoginForm.resources D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.MainForm.resources @@ -74,3 +81,4 @@ D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.csproj.CopyComplete D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.dll D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.pdb D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.genruntimeconfig.cache +D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.csproj.AssemblyReference.cache diff --git a/obj/Release/netcoreapp3.1/AVS.csproj.GenerateResource.cache b/obj/Release/netcoreapp3.1/AVS.csproj.GenerateResource.cache index 4165373..f9a0020 100644 Binary files a/obj/Release/netcoreapp3.1/AVS.csproj.GenerateResource.cache and b/obj/Release/netcoreapp3.1/AVS.csproj.GenerateResource.cache differ diff --git a/obj/Release/netcoreapp3.1/AVS.designer.deps.json b/obj/Release/netcoreapp3.1/AVS.designer.deps.json index 4d41b3c..395560c 100644 --- a/obj/Release/netcoreapp3.1/AVS.designer.deps.json +++ b/obj/Release/netcoreapp3.1/AVS.designer.deps.json @@ -6,12 +6,20 @@ "compilationOptions": {}, "targets": { ".NETCoreApp,Version=v3.1": { + "BouncyCastle.Cryptography/2.5.1": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Cryptography.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.5.1.28965" + } + } + }, "EntityFramework/6.4.4": { "dependencies": { "Microsoft.CSharp": "4.7.0", "System.CodeDom": "9.0.0", "System.ComponentModel.Annotations": "4.7.0", - "System.Configuration.ConfigurationManager": "4.7.0", + "System.Configuration.ConfigurationManager": "8.0.0", "System.Data.SqlClient": "4.8.1" }, "runtime": { @@ -25,39 +33,39 @@ } } }, - "Google.Protobuf/3.21.9": { + "Google.Protobuf/3.30.0": { "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/netstandard2.0/Google.Protobuf.dll": { - "assemblyVersion": "3.21.9.0", - "fileVersion": "3.21.9.0" + "assemblyVersion": "3.30.0.0", + "fileVersion": "3.30.0.0" } } }, - "K4os.Compression.LZ4/1.3.5": { + "K4os.Compression.LZ4/1.3.8": { "dependencies": { "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/netstandard2.1/K4os.Compression.LZ4.dll": { - "assemblyVersion": "1.3.5.0", - "fileVersion": "1.3.5.0" + "assemblyVersion": "1.3.8.0", + "fileVersion": "1.3.8.0" } } }, - "K4os.Compression.LZ4.Streams/1.3.5": { + "K4os.Compression.LZ4.Streams/1.3.8": { "dependencies": { - "K4os.Compression.LZ4": "1.3.5", + "K4os.Compression.LZ4": "1.3.8", "K4os.Hash.xxHash": "1.0.8", - "System.IO.Pipelines": "6.0.3" + "System.IO.Pipelines": "9.0.0" }, "runtime": { "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { - "assemblyVersion": "1.3.5.0", - "fileVersion": "1.3.5.0" + "assemblyVersion": "1.3.8.0", + "fileVersion": "1.3.8.0" } } }, @@ -80,11 +88,11 @@ } } }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { "runtime": { "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, @@ -171,19 +179,19 @@ } } }, - "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Platforms/1.1.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, "Microsoft.Win32.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "Microsoft.Win32.Registry/4.7.0": { "dependencies": { - "System.Security.AccessControl": "4.7.0", - "System.Security.Principal.Windows": "4.7.0" + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "5.0.0" }, "runtime": { "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { @@ -206,78 +214,59 @@ } } }, - "Microsoft.Win32.SystemEvents/4.7.0": { + "MySql.Data/9.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.19.56404" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.19.56404" - } - } - }, - "MySql.Data/8.1.0": { - "dependencies": { - "Google.Protobuf": "3.21.9", - "K4os.Compression.LZ4.Streams": "1.3.5", - "Portable.BouncyCastle": "1.9.0", + "BouncyCastle.Cryptography": "2.5.1", + "Google.Protobuf": "3.30.0", + "K4os.Compression.LZ4.Streams": "1.3.8", "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "4.7.0", - "System.Diagnostics.DiagnosticSource": "7.0.2", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.1", "System.Runtime.CompilerServices.Unsafe": "6.0.0", "System.Runtime.Loader": "4.3.0", - "System.Security.Permissions": "4.7.0", + "System.Security.Permissions": "8.0.0", "System.Text.Encoding.CodePages": "8.0.0", - "System.Text.Json": "7.0.1", + "System.Text.Json": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4", - "ZstdSharp.Port": "0.8.1" + "ZstdSharp.Port": "0.8.5" }, "runtime": { "lib/netstandard2.1/MySql.Data.dll": { - "assemblyVersion": "8.1.0.0", - "fileVersion": "8.1.0.0" + "assemblyVersion": "9.3.0.0", + "fileVersion": "9.3.0.0" } }, "runtimeTargets": { "runtimes/win-x64/native/comerr64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/gssapi64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/k5sprt64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/krb5_64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" }, "runtimes/win-x64/native/krbcc64.dll": { "rid": "win-x64", "assetType": "native", - "fileVersion": "4.1.0.0" + "fileVersion": "4.3.0.1" } } }, "NETStandard.Library/1.6.1": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.Win32.Primitives": "4.3.0", "System.AppContext": "4.3.0", "System.Collections": "4.3.0", @@ -331,14 +320,6 @@ } } }, - "Portable.BouncyCastle/1.9.0": { - "runtime": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": { - "assemblyVersion": "1.9.0.0", - "fileVersion": "1.9.0.1" - } - } - }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "runtimeTargets": { "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { @@ -395,7 +376,7 @@ }, "runtime.native.System/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -408,7 +389,7 @@ }, "runtime.native.System.IO.Compression/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -423,7 +404,7 @@ }, "runtime.native.System.Net.Http/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -584,9 +565,9 @@ }, "SharpCompress/0.38.0": { "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", "System.Text.Encoding.CodePages": "8.0.0", - "ZstdSharp.Port": "0.8.1" + "ZstdSharp.Port": "0.8.5" }, "runtime": { "lib/netstandard2.1/SharpCompress.dll": { @@ -647,7 +628,7 @@ }, "System.Collections/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -731,21 +712,20 @@ } } }, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/8.0.0": { "dependencies": { - "System.Security.Cryptography.ProtectedData": "4.7.0", - "System.Security.Permissions": "4.7.0" + "System.Security.Cryptography.ProtectedData": "8.0.0" }, "runtime": { "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, "System.Console/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Runtime": "4.3.0", @@ -755,7 +735,7 @@ "System.Data.SqlClient/4.8.1": { "dependencies": { "Microsoft.Win32.Registry": "4.7.0", - "System.Security.Principal.Windows": "4.7.0", + "System.Security.Principal.Windows": "5.0.0", "runtime.native.System.Data.SqlClient.sni": "4.7.0" }, "runtime": { @@ -803,26 +783,26 @@ }, "System.Diagnostics.Debug/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource/7.0.2": { + "System.Diagnostics.DiagnosticSource/8.0.1": { "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "6.0.0" }, "runtime": { "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.423.11508" + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.424.16909" } } }, "System.Diagnostics.FileVersionInfo/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Globalization": "4.3.0", "System.IO": "4.3.0", "System.IO.FileSystem": "4.3.0", @@ -849,14 +829,14 @@ }, "System.Diagnostics.Tools/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Diagnostics.TraceSource/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.Globalization": "4.3.0", @@ -883,47 +863,21 @@ }, "System.Diagnostics.Tracing/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Drawing.Common/4.7.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "Microsoft.Win32.SystemEvents": "4.7.0" - }, - "runtime": { - "lib/netstandard2.0/System.Drawing.Common.dll": { - "assemblyVersion": "4.0.0.1", - "fileVersion": "4.6.26919.2" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.19.56404" - }, - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.19.56404" - } - } - }, "System.Globalization/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Globalization.Calendars/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Globalization": "4.3.0", "System.Runtime": "4.3.0" @@ -931,7 +885,7 @@ }, "System.Globalization.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Globalization": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", @@ -955,7 +909,7 @@ }, "System.IO/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Text.Encoding": "4.3.0", @@ -964,7 +918,7 @@ }, "System.IO.Compression/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Buffers": "4.5.1", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", @@ -1016,7 +970,7 @@ }, "System.IO.FileSystem/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.IO.FileSystem.Primitives": "4.3.0", @@ -1037,11 +991,16 @@ } } }, - "System.IO.Pipelines/6.0.3": { + "System.IO.Pipelines/9.0.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.Memory": "4.5.5", + "System.Threading.Tasks.Extensions": "4.5.4" + }, "runtime": { - "lib/netcoreapp3.1/System.IO.Pipelines.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.522.21309" + "lib/netstandard2.0/System.IO.Pipelines.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, @@ -1112,10 +1071,10 @@ "System.Memory/4.5.5": {}, "System.Net.Http/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "7.0.2", + "System.Diagnostics.DiagnosticSource": "8.0.1", "System.Diagnostics.Tracing": "4.3.0", "System.Globalization": "4.3.0", "System.Globalization.Extensions": "4.3.0", @@ -1156,7 +1115,7 @@ }, "System.Net.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Runtime.Handles": "4.3.0" @@ -1164,7 +1123,7 @@ }, "System.Net.Sockets/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Net.Primitives": "4.3.0", @@ -1172,7 +1131,6 @@ "System.Threading.Tasks": "4.3.0" } }, - "System.Numerics.Vectors/4.5.0": {}, "System.ObjectModel/4.3.0": { "dependencies": { "System.Collections": "4.3.0", @@ -1190,7 +1148,7 @@ }, "System.Reflection/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Reflection.Primitives": "4.3.0", @@ -1241,7 +1199,7 @@ }, "System.Reflection.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Reflection": "4.3.0", "System.Runtime": "4.3.0" @@ -1275,7 +1233,7 @@ }, "System.Reflection.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -1294,7 +1252,7 @@ }, "System.Resources.ResourceManager/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Globalization": "4.3.0", "System.Reflection": "4.3.0", @@ -1303,7 +1261,7 @@ }, "System.Runtime/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -1317,21 +1275,21 @@ }, "System.Runtime.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Runtime.Handles/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Runtime.InteropServices/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Reflection": "4.3.0", "System.Reflection.Primitives": "4.3.0", @@ -1397,29 +1355,28 @@ } } }, - "System.Security.AccessControl/4.7.0": { + "System.Security.AccessControl/6.0.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "System.Security.Principal.Windows": "4.7.0" + "System.Security.Principal.Windows": "5.0.0" }, "runtime": { "lib/netstandard2.0/System.Security.AccessControl.dll": { - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" } } }, "System.Security.Cryptography.Algorithms/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.IO": "4.3.0", "System.Resources.ResourceManager": "4.3.0", @@ -1457,7 +1414,7 @@ }, "System.Security.Cryptography.Cng/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.IO": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", @@ -1486,7 +1443,7 @@ }, "System.Security.Cryptography.Csp/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.IO": "4.3.0", "System.Reflection": "4.3.0", "System.Resources.ResourceManager": "4.3.0", @@ -1517,7 +1474,7 @@ }, "System.Security.Cryptography.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Collections.Concurrent": "4.3.0", "System.Linq": "4.3.0", @@ -1593,25 +1550,20 @@ } } }, - "System.Security.Cryptography.ProtectedData/4.7.0": { + "System.Security.Cryptography.ProtectedData/8.0.0": { + "dependencies": { + "System.Memory": "4.5.5" + }, "runtime": { "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "4.0.5.0", - "fileVersion": "4.700.19.56404" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.5.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, "System.Security.Cryptography.X509Certificates/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.Globalization": "4.3.0", @@ -1652,43 +1604,42 @@ } } }, - "System.Security.Permissions/4.7.0": { + "System.Security.Permissions/8.0.0": { "dependencies": { - "System.Security.AccessControl": "4.7.0", - "System.Windows.Extensions": "4.7.0" + "System.Security.AccessControl": "6.0.0" }, "runtime": { - "lib/netcoreapp3.0/System.Security.Permissions.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.700.19.56404" + "lib/netstandard2.0/System.Security.Permissions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" } } }, - "System.Security.Principal.Windows/4.7.0": { + "System.Security.Principal.Windows/5.0.0": { "runtime": { "lib/netstandard2.0/System.Security.Principal.Windows.dll": { - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" } }, "runtimeTargets": { "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { "rid": "unix", "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" }, "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { "rid": "win", "assetType": "runtime", - "assemblyVersion": "4.1.3.0", - "fileVersion": "4.700.19.56404" + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" } } }, "System.Text.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -1707,13 +1658,13 @@ }, "System.Text.Encoding.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Text.Encoding": "4.3.0" } }, - "System.Text.Encodings.Web/7.0.0": { + "System.Text.Encodings.Web/9.0.0": { "dependencies": { "System.Buffers": "4.5.1", "System.Memory": "4.5.5", @@ -1721,25 +1672,25 @@ }, "runtime": { "lib/netstandard2.0/System.Text.Encodings.Web.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, - "System.Text.Json/7.0.1": { + "System.Text.Json/9.0.0": { "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", "System.Buffers": "4.5.1", + "System.IO.Pipelines": "9.0.0", "System.Memory": "4.5.5", - "System.Numerics.Vectors": "4.5.0", "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "7.0.0", + "System.Text.Encodings.Web": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4" }, "runtime": { "lib/netstandard2.0/System.Text.Json.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.122.56804" + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" } } }, @@ -1768,7 +1719,7 @@ }, "System.Threading.Overlapped/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", "System.Runtime.Handles": "4.3.0" @@ -1790,7 +1741,7 @@ }, "System.Threading.Tasks/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -1821,30 +1772,11 @@ }, "System.Threading.Timer/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, - "System.Windows.Extensions/4.7.0": { - "dependencies": { - "System.Drawing.Common": "4.7.0" - }, - "runtime": { - "lib/netcoreapp3.0/System.Windows.Extensions.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.700.19.56404" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.700.19.56404" - } - } - }, "System.Xml.ReaderWriter/4.3.0": { "dependencies": { "System.Collections": "4.3.0", @@ -1892,17 +1824,27 @@ } } }, - "ZstdSharp.Port/0.8.1": { + "ZstdSharp.Port/0.8.5": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, "runtime": { "lib/netcoreapp3.1/ZstdSharp.dll": { - "assemblyVersion": "0.8.1.0", - "fileVersion": "0.8.1.0" + "assemblyVersion": "0.8.5.0", + "fileVersion": "0.8.5.0" } } } } }, "libraries": { + "BouncyCastle.Cryptography/2.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zy8TMeTP+1FH2NrLaNZtdRbBdq7u5MI+NFZQOBSM69u5RFkciinwzV2eveY6Kjf5MzgsYvvl6kTStsj3JrXqkg==", + "path": "bouncycastle.cryptography/2.5.1", + "hashPath": "bouncycastle.cryptography.2.5.1.nupkg.sha512" + }, "EntityFramework/6.4.4": { "type": "package", "serviceable": true, @@ -1910,26 +1852,26 @@ "path": "entityframework/6.4.4", "hashPath": "entityframework.6.4.4.nupkg.sha512" }, - "Google.Protobuf/3.21.9": { + "Google.Protobuf/3.30.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OTpFujTgkmqMLbg3KT7F/iuKi1rg6s5FCS2M9XcVLDn40zL8wgXm37CY/F6MeOEXKjdcnXGCN/h7oyMkVydVsg==", - "path": "google.protobuf/3.21.9", - "hashPath": "google.protobuf.3.21.9.nupkg.sha512" + "sha512": "sha512-ZnEI4oZWnHvd+Yz5Gcnx5Q5RQIuzptIzd0fmxAN8f81FYHI0USZqMOrPTkrsd/QEzo9vl2b217v9FqFgHfufQw==", + "path": "google.protobuf/3.30.0", + "hashPath": "google.protobuf.3.30.0.nupkg.sha512" }, - "K4os.Compression.LZ4/1.3.5": { + "K4os.Compression.LZ4/1.3.8": { "type": "package", "serviceable": true, - "sha512": "sha512-TS4mqlT0X1OlnvOGNfl02QdVUhuqgWuCnn7UxupIa7C9Pb6qlQ5yZA2sPhRh0OSmVULaQU64KV4wJuu//UyVQQ==", - "path": "k4os.compression.lz4/1.3.5", - "hashPath": "k4os.compression.lz4.1.3.5.nupkg.sha512" + "sha512": "sha512-LhwlPa7c1zs1OV2XadMtAWdImjLIsqFJPoRcIWAadSRn0Ri1DepK65UbWLPmt4riLqx2d40xjXRk0ogpqNtK7g==", + "path": "k4os.compression.lz4/1.3.8", + "hashPath": "k4os.compression.lz4.1.3.8.nupkg.sha512" }, - "K4os.Compression.LZ4.Streams/1.3.5": { + "K4os.Compression.LZ4.Streams/1.3.8": { "type": "package", "serviceable": true, - "sha512": "sha512-M0NufZI8ym3mm6F6HMSPz1jw7TJGdY74fjAtbIXATmnAva/8xLz50eQZJI9tf9mMeHUaFDg76N1BmEh8GR5zeA==", - "path": "k4os.compression.lz4.streams/1.3.5", - "hashPath": "k4os.compression.lz4.streams.1.3.5.nupkg.sha512" + "sha512": "sha512-P15qr8dZAeo9GvYbUIPEYFQ0MEJ0i5iqr37wsYeRC3la2uCldOoeCa6to0CZ1taiwxIV+Mk8NGuZi+4iWivK9w==", + "path": "k4os.compression.lz4.streams/1.3.8", + "hashPath": "k4os.compression.lz4.streams.1.3.8.nupkg.sha512" }, "K4os.Hash.xxHash/1.0.8": { "type": "package", @@ -1945,12 +1887,12 @@ "path": "materialskin/0.2.1", "hashPath": "materialskin.0.2.1.nupkg.sha512" }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==", - "path": "microsoft.bcl.asyncinterfaces/8.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512" + "sha512": "sha512-owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==", + "path": "microsoft.bcl.asyncinterfaces/9.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512" }, "Microsoft.CSharp/4.7.0": { "type": "package", @@ -1987,12 +1929,12 @@ "path": "microsoft.management.infrastructure.runtime.win/3.0.0", "hashPath": "microsoft.management.infrastructure.runtime.win.3.0.0.nupkg.sha512" }, - "Microsoft.NETCore.Platforms/3.1.0": { + "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "serviceable": true, - "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", - "path": "microsoft.netcore.platforms/3.1.0", - "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" }, "Microsoft.NETCore.Targets/1.1.0": { "type": "package", @@ -2015,19 +1957,12 @@ "path": "microsoft.win32.registry/4.7.0", "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" }, - "Microsoft.Win32.SystemEvents/4.7.0": { + "MySql.Data/9.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", - "path": "microsoft.win32.systemevents/4.7.0", - "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" - }, - "MySql.Data/8.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7kEJLyty7HcqJD0lnfs+2fdMrvCl0RY5oykvZThbmg6QVLT55dwygI69Eqxl0M6IThP9woyjpsezT6m7gKRrLA==", - "path": "mysql.data/8.1.0", - "hashPath": "mysql.data.8.1.0.nupkg.sha512" + "sha512": "sha512-f4iZBKubzwNnc84ecEwguv5TSwHpoArFGa+XpZY+8S9SoAnQaHfymLdZUKK4LbUbH9ACZ6X71LUvq58Mfdyipw==", + "path": "mysql.data/9.3.0", + "hashPath": "mysql.data.9.3.0.nupkg.sha512" }, "NETStandard.Library/1.6.1": { "type": "package", @@ -2043,13 +1978,6 @@ "path": "newtonsoft.json/13.0.3", "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" }, - "Portable.BouncyCastle/1.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==", - "path": "portable.bouncycastle/1.9.0", - "hashPath": "portable.bouncycastle.1.9.0.nupkg.sha512" - }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "serviceable": true, @@ -2316,12 +2244,12 @@ "path": "system.componentmodel.annotations/4.7.0", "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512" }, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", - "path": "system.configuration.configurationmanager/4.7.0", - "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", + "path": "system.configuration.configurationmanager/8.0.0", + "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512" }, "System.Console/4.3.0": { "type": "package", @@ -2365,12 +2293,12 @@ "path": "system.diagnostics.debug/4.3.0", "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" }, - "System.Diagnostics.DiagnosticSource/7.0.2": { + "System.Diagnostics.DiagnosticSource/8.0.1": { "type": "package", "serviceable": true, - "sha512": "sha512-hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==", - "path": "system.diagnostics.diagnosticsource/7.0.2", - "hashPath": "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512" + "sha512": "sha512-vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", + "path": "system.diagnostics.diagnosticsource/8.0.1", + "hashPath": "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512" }, "System.Diagnostics.FileVersionInfo/4.3.0": { "type": "package", @@ -2400,13 +2328,6 @@ "path": "system.diagnostics.tracing/4.3.0", "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" }, - "System.Drawing.Common/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", - "path": "system.drawing.common/4.7.0", - "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" - }, "System.Globalization/4.3.0": { "type": "package", "serviceable": true, @@ -2463,12 +2384,12 @@ "path": "system.io.filesystem.primitives/4.3.0", "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" }, - "System.IO.Pipelines/6.0.3": { + "System.IO.Pipelines/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", - "path": "system.io.pipelines/6.0.3", - "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" + "sha512": "sha512-eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", + "path": "system.io.pipelines/9.0.0", + "hashPath": "system.io.pipelines.9.0.0.nupkg.sha512" }, "System.IO.Ports/7.0.0": { "type": "package", @@ -2526,13 +2447,6 @@ "path": "system.net.sockets/4.3.0", "hashPath": "system.net.sockets.4.3.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.ObjectModel/4.3.0": { "type": "package", "serviceable": true, @@ -2659,12 +2573,12 @@ "path": "system.runtime.numerics/4.3.0", "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" }, - "System.Security.AccessControl/4.7.0": { + "System.Security.AccessControl/6.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", - "path": "system.security.accesscontrol/4.7.0", - "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" }, "System.Security.Cryptography.Algorithms/4.3.0": { "type": "package", @@ -2708,12 +2622,12 @@ "path": "system.security.cryptography.primitives/4.3.0", "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" }, - "System.Security.Cryptography.ProtectedData/4.7.0": { + "System.Security.Cryptography.ProtectedData/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", - "path": "system.security.cryptography.protecteddata/4.7.0", - "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "path": "system.security.cryptography.protecteddata/8.0.0", + "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512" }, "System.Security.Cryptography.X509Certificates/4.3.0": { "type": "package", @@ -2722,19 +2636,19 @@ "path": "system.security.cryptography.x509certificates/4.3.0", "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" }, - "System.Security.Permissions/4.7.0": { + "System.Security.Permissions/8.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", - "path": "system.security.permissions/4.7.0", - "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + "sha512": "sha512-v/BBylw7XevuAsHXoX9dDUUfmBIcUf7Lkz8K3ZXIKz3YRKpw8YftpSir4n4e/jDTKFoaK37AsC3xnk+GNFI1Ow==", + "path": "system.security.permissions/8.0.0", + "hashPath": "system.security.permissions.8.0.0.nupkg.sha512" }, - "System.Security.Principal.Windows/4.7.0": { + "System.Security.Principal.Windows/5.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", - "path": "system.security.principal.windows/4.7.0", - "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" }, "System.Text.Encoding/4.3.0": { "type": "package", @@ -2757,19 +2671,19 @@ "path": "system.text.encoding.extensions/4.3.0", "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" }, - "System.Text.Encodings.Web/7.0.0": { + "System.Text.Encodings.Web/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", - "path": "system.text.encodings.web/7.0.0", - "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" + "sha512": "sha512-e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", + "path": "system.text.encodings.web/9.0.0", + "hashPath": "system.text.encodings.web.9.0.0.nupkg.sha512" }, - "System.Text.Json/7.0.1": { + "System.Text.Json/9.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-OtDEmCCiNl8JAduFKZ/r0Sw6XZNHwIicUYy/mXgMDGeOsZLshH37qi3oPRzFYiryVktiMoQLByMGPtRCEMYbeQ==", - "path": "system.text.json/7.0.1", - "hashPath": "system.text.json.7.0.1.nupkg.sha512" + "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "path": "system.text.json/9.0.0", + "hashPath": "system.text.json.9.0.0.nupkg.sha512" }, "System.Text.RegularExpressions/4.3.0": { "type": "package", @@ -2827,13 +2741,6 @@ "path": "system.threading.timer/4.3.0", "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" }, - "System.Windows.Extensions/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", - "path": "system.windows.extensions/4.7.0", - "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" - }, "System.Xml.ReaderWriter/4.3.0": { "type": "package", "serviceable": true, @@ -2848,12 +2755,12 @@ "path": "system.xml.xdocument/4.3.0", "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" }, - "ZstdSharp.Port/0.8.1": { + "ZstdSharp.Port/0.8.5": { "type": "package", "serviceable": true, - "sha512": "sha512-19tNz33kn2EkyViFXuxfVn338UJaRmkwBphVqP2dVJIYQUQgFrgG5h061mxkRRg1Ax6r+6WOj1FxaFZ5qaWqqg==", - "path": "zstdsharp.port/0.8.1", - "hashPath": "zstdsharp.port.0.8.1.nupkg.sha512" + "sha512": "sha512-TR4j17WeVSEb3ncgL2NqlXEqcy04I+Kk9CaebNDplUeL8XOgjkZ7fP4Wg4grBdPLIqsV86p2QaXTkZoRMVOsew==", + "path": "zstdsharp.port/0.8.5", + "hashPath": "zstdsharp.port.0.8.5.nupkg.sha512" } } } \ No newline at end of file diff --git a/obj/Release/netcoreapp3.1/AVS.dll b/obj/Release/netcoreapp3.1/AVS.dll index dae002a..9743d9e 100644 Binary files a/obj/Release/netcoreapp3.1/AVS.dll and b/obj/Release/netcoreapp3.1/AVS.dll differ diff --git a/obj/Release/netcoreapp3.1/AVS.pdb b/obj/Release/netcoreapp3.1/AVS.pdb index 177bf1e..4b258ef 100644 Binary files a/obj/Release/netcoreapp3.1/AVS.pdb and b/obj/Release/netcoreapp3.1/AVS.pdb differ diff --git a/obj/Release/netcoreapp3.1/apphost.exe b/obj/Release/netcoreapp3.1/apphost.exe index 407cfb0..ede22cd 100644 Binary files a/obj/Release/netcoreapp3.1/apphost.exe and b/obj/Release/netcoreapp3.1/apphost.exe differ diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfo.cs b/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfo.cs index 1955800..11756ad 100644 --- a/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfo.cs +++ b/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfo.cs @@ -17,7 +17,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] [assembly: System.Reflection.AssemblyProductAttribute("AVS")] [assembly: System.Reflection.AssemblyTitleAttribute("AVS")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.2")] // Generated by the MSBuild WriteCodeFragment class. diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfoInputs.cache b/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfoInputs.cache index 954df83..51c3bb4 100644 --- a/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfoInputs.cache +++ b/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfoInputs.cache @@ -1 +1 @@ -f4d77af5f12cec2bb8275fa2c9d3d3a25ea5c62e +2bae89042c8b641d43d07eff8fb91bc1381978f1 diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.application b/obj/Release/netcoreapp3.1/win-x64/AVS.application index 1c906d2..fc12d94 100644 --- a/obj/Release/netcoreapp3.1/win-x64/AVS.application +++ b/obj/Release/netcoreapp3.1/win-x64/AVS.application @@ -14,7 +14,7 @@ - U646R5VvTUg8+SGcUCwQINDLr6DcH11tKWUJKn6ZQwI= + 9QJYqEhNKmvgEnV3kA7+pYwaTqtyzCv4q+2qds7NPBI= diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.assets.cache b/obj/Release/netcoreapp3.1/win-x64/AVS.assets.cache index ce9b3fd..a9e122c 100644 Binary files a/obj/Release/netcoreapp3.1/win-x64/AVS.assets.cache and b/obj/Release/netcoreapp3.1/win-x64/AVS.assets.cache differ diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.csproj.CoreCompileInputs.cache b/obj/Release/netcoreapp3.1/win-x64/AVS.csproj.CoreCompileInputs.cache index baf4338..6306247 100644 --- a/obj/Release/netcoreapp3.1/win-x64/AVS.csproj.CoreCompileInputs.cache +++ b/obj/Release/netcoreapp3.1/win-x64/AVS.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -dc1595f7db13d7405649004d6441fae661f0186b +31088a98848ccfb3895ba15cdcf5bb9302aa0e78 diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.csproj.FileListAbsolute.txt b/obj/Release/netcoreapp3.1/win-x64/AVS.csproj.FileListAbsolute.txt index 51c0f9f..842f303 100644 --- a/obj/Release/netcoreapp3.1/win-x64/AVS.csproj.FileListAbsolute.txt +++ b/obj/Release/netcoreapp3.1/win-x64/AVS.csproj.FileListAbsolute.txt @@ -19,7 +19,6 @@ D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\microsoft.management.infrastru D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\microsoft.management.infrastructure.native.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\MySql.Data.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\Newtonsoft.Json.dll -D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\BouncyCastle.Crypto.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\RJCP.SerialPortStream.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\SharpCompress.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Data.SQLite.dll @@ -59,3 +58,9 @@ D:\Projects\AVS\obj\Release\netcoreapp3.1\win-x64\AVS.csproj.CopyComplete D:\Projects\AVS\obj\Release\netcoreapp3.1\win-x64\AVS.dll D:\Projects\AVS\obj\Release\netcoreapp3.1\win-x64\AVS.pdb D:\Projects\AVS\obj\Release\netcoreapp3.1\win-x64\AVS.csproj.AssemblyReference.cache +D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\BouncyCastle.Cryptography.dll +D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Configuration.ConfigurationManager.dll +D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Security.AccessControl.dll +D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Security.Cryptography.ProtectedData.dll +D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Security.Permissions.dll +D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Security.Principal.Windows.dll diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.dll b/obj/Release/netcoreapp3.1/win-x64/AVS.dll index 05e83df..5127094 100644 Binary files a/obj/Release/netcoreapp3.1/win-x64/AVS.dll and b/obj/Release/netcoreapp3.1/win-x64/AVS.dll differ diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.dll.manifest b/obj/Release/netcoreapp3.1/win-x64/AVS.dll.manifest index 5123c53..c9f43dc 100644 --- a/obj/Release/netcoreapp3.1/win-x64/AVS.dll.manifest +++ b/obj/Release/netcoreapp3.1/win-x64/AVS.dll.manifest @@ -53,13 +53,13 @@ - + - DP08gYRmtxcj9ODAGI/o7B8M9suw+HOulaMYfkptXXc= + 6S+RtJKmJggrJ8hTRGhQDmxoV+UAJeeo1na1DKrWCiU= \ No newline at end of file diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.pdb b/obj/Release/netcoreapp3.1/win-x64/AVS.pdb index 242fe98..1b934c2 100644 Binary files a/obj/Release/netcoreapp3.1/win-x64/AVS.pdb and b/obj/Release/netcoreapp3.1/win-x64/AVS.pdb differ diff --git a/obj/Release/netcoreapp3.1/win-x64/apphost.exe b/obj/Release/netcoreapp3.1/win-x64/apphost.exe index 0f24046..ff6d6d2 100644 Binary files a/obj/Release/netcoreapp3.1/win-x64/apphost.exe and b/obj/Release/netcoreapp3.1/win-x64/apphost.exe differ diff --git a/obj/project.assets.json b/obj/project.assets.json index 12022c7..1f62d27 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -2,6 +2,15 @@ "version": 3, "targets": { ".NETCoreApp,Version=v3.1": { + "BouncyCastle.Cryptography/2.5.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Cryptography.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Cryptography.dll": {} + } + }, "EntityFramework/6.4.4": { "type": "package", "dependencies": { @@ -24,7 +33,7 @@ "buildTransitive/netcoreapp3.0/EntityFramework.targets": {} } }, - "Google.Protobuf/3.21.9": { + "Google.Protobuf/3.30.0": { "type": "package", "dependencies": { "System.Memory": "4.5.3", @@ -37,7 +46,7 @@ "lib/netstandard2.0/Google.Protobuf.dll": {} } }, - "K4os.Compression.LZ4/1.3.5": { + "K4os.Compression.LZ4/1.3.8": { "type": "package", "dependencies": { "System.Runtime.CompilerServices.Unsafe": "6.0.0" @@ -49,10 +58,10 @@ "lib/netstandard2.1/K4os.Compression.LZ4.dll": {} } }, - "K4os.Compression.LZ4.Streams/1.3.5": { + "K4os.Compression.LZ4.Streams/1.3.8": { "type": "package", "dependencies": { - "K4os.Compression.LZ4": "1.3.5", + "K4os.Compression.LZ4": "1.3.8", "K4os.Hash.xxHash": "1.0.8", "System.IO.Pipelines": "6.0.3" }, @@ -84,13 +93,16 @@ "lib/MaterialSkin.dll": {} } }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { "type": "package", "compile": { "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} }, "runtime": { "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "build": { + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.AsyncInterfaces.targets": {} } }, "Microsoft.CSharp/4.7.0": { @@ -175,7 +187,7 @@ } } }, - "Microsoft.NETCore.Platforms/3.1.0": { + "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -227,40 +239,22 @@ } } }, - "Microsoft.Win32.SystemEvents/4.7.0": { + "MySql.Data/9.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "MySql.Data/8.1.0": { - "type": "package", - "dependencies": { - "Google.Protobuf": "3.21.9", - "K4os.Compression.LZ4.Streams": "1.3.5", - "Portable.BouncyCastle": "1.9.0", + "BouncyCastle.Cryptography": "2.5.1", + "Google.Protobuf": "3.30.0", + "K4os.Compression.LZ4.Streams": "1.3.8", "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "4.4.1", - "System.Diagnostics.DiagnosticSource": "7.0.2", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.1", "System.Runtime.CompilerServices.Unsafe": "6.0.0", "System.Runtime.Loader": "4.3.0", - "System.Security.Permissions": "4.7.0", - "System.Text.Encoding.CodePages": "4.4.0", - "System.Text.Json": "7.0.1", + "System.Security.Permissions": "8.0.0", + "System.Text.Encoding.CodePages": "8.0.0", + "System.Text.Json": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4", - "ZstdSharp.Port": "0.7.1" + "ZstdSharp.Port": "0.8.5" }, "compile": { "lib/netstandard2.1/MySql.Data.dll": {} @@ -349,15 +343,6 @@ "lib/netstandard2.0/Newtonsoft.Json.dll": {} } }, - "Portable.BouncyCastle/1.9.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} - }, - "runtime": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} - } - }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "runtimeTargets": { @@ -808,17 +793,19 @@ "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {} } }, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/8.0.0": { "type": "package", "dependencies": { - "System.Security.Cryptography.ProtectedData": "4.7.0", - "System.Security.Permissions": "4.7.0" + "System.Security.Cryptography.ProtectedData": "8.0.0" }, "compile": { - "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} }, "runtime": { "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "build": { + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets": {} } }, "System.Console/4.3.0": { @@ -894,7 +881,7 @@ "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} } }, - "System.Diagnostics.DiagnosticSource/7.0.2": { + "System.Diagnostics.DiagnosticSource/8.0.1": { "type": "package", "dependencies": { "System.Memory": "4.5.5", @@ -986,29 +973,6 @@ "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} } }, - "System.Drawing.Common/4.7.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "Microsoft.Win32.SystemEvents": "4.7.0" - }, - "compile": { - "ref/netcoreapp3.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/System.Drawing.Common.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, "System.Globalization/4.3.0": { "type": "package", "dependencies": { @@ -1150,16 +1114,21 @@ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} } }, - "System.IO.Pipelines/6.0.3": { + "System.IO.Pipelines/9.0.0": { "type": "package", + "dependencies": { + "System.Buffers": "4.5.1", + "System.Memory": "4.5.5", + "System.Threading.Tasks.Extensions": "4.5.4" + }, "compile": { - "lib/netcoreapp3.1/System.IO.Pipelines.dll": {} + "lib/netstandard2.0/System.IO.Pipelines.dll": {} }, "runtime": { - "lib/netcoreapp3.1/System.IO.Pipelines.dll": {} + "lib/netstandard2.0/System.IO.Pipelines.dll": {} }, "build": { - "buildTransitive/netcoreapp3.1/_._": {} + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets": {} } }, "System.IO.Ports/7.0.0": { @@ -1315,15 +1284,6 @@ "ref/netstandard1.3/System.Net.Sockets.dll": {} } }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, "System.ObjectModel/4.3.0": { "type": "package", "dependencies": { @@ -1589,20 +1549,22 @@ "lib/netstandard1.3/System.Runtime.Numerics.dll": {} } }, - "System.Security.AccessControl/4.7.0": { + "System.Security.AccessControl/6.0.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "System.Security.Principal.Windows": "4.7.0" + "System.Security.Principal.Windows": "5.0.0" }, "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": {} + "lib/netstandard2.0/System.Security.AccessControl.dll": {} }, "runtime": { "lib/netstandard2.0/System.Security.AccessControl.dll": {} }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": { "assetType": "runtime", "rid": "win" } @@ -1782,19 +1744,19 @@ "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} } }, - "System.Security.Cryptography.ProtectedData/4.7.0": { + "System.Security.Cryptography.ProtectedData/8.0.0": { "type": "package", + "dependencies": { + "System.Memory": "4.5.5" + }, "compile": { - "ref/netstandard2.0/_._": {} + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} }, "runtime": { "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { - "assetType": "runtime", - "rid": "win" - } + "build": { + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets": {} } }, "System.Security.Cryptography.X509Certificates/4.3.0": { @@ -1840,20 +1802,22 @@ } } }, - "System.Security.Permissions/4.7.0": { + "System.Security.Permissions/8.0.0": { "type": "package", "dependencies": { - "System.Security.AccessControl": "4.7.0", - "System.Windows.Extensions": "4.7.0" + "System.Security.AccessControl": "6.0.0" }, "compile": { - "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + "lib/netstandard2.0/System.Security.Permissions.dll": {} }, "runtime": { - "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + "lib/netstandard2.0/System.Security.Permissions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets": {} } }, - "System.Security.Principal.Windows/4.7.0": { + "System.Security.Principal.Windows/5.0.0": { "type": "package", "compile": { "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} @@ -1911,7 +1875,7 @@ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} } }, - "System.Text.Encodings.Web/7.0.0": { + "System.Text.Encodings.Web/9.0.0": { "type": "package", "dependencies": { "System.Buffers": "4.5.1", @@ -1928,15 +1892,15 @@ "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {} } }, - "System.Text.Json/7.0.1": { + "System.Text.Json/9.0.0": { "type": "package", "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", "System.Buffers": "4.5.1", + "System.IO.Pipelines": "9.0.0", "System.Memory": "4.5.5", - "System.Numerics.Vectors": "4.5.0", "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "7.0.0", + "System.Text.Encodings.Web": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4" }, "compile": { @@ -2052,24 +2016,6 @@ "ref/netstandard1.2/System.Threading.Timer.dll": {} } }, - "System.Windows.Extensions/4.7.0": { - "type": "package", - "dependencies": { - "System.Drawing.Common": "4.7.0" - }, - "compile": { - "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, "System.Xml.ReaderWriter/4.3.0": { "type": "package", "dependencies": { @@ -2119,8 +2065,11 @@ "lib/netstandard1.3/System.Xml.XDocument.dll": {} } }, - "ZstdSharp.Port/0.8.1": { + "ZstdSharp.Port/0.8.5": { "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, "compile": { "lib/netcoreapp3.1/ZstdSharp.dll": {} }, @@ -2131,6 +2080,26 @@ } }, "libraries": { + "BouncyCastle.Cryptography/2.5.1": { + "sha512": "zy8TMeTP+1FH2NrLaNZtdRbBdq7u5MI+NFZQOBSM69u5RFkciinwzV2eveY6Kjf5MzgsYvvl6kTStsj3JrXqkg==", + "type": "package", + "path": "bouncycastle.cryptography/2.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "bouncycastle.cryptography.2.5.1.nupkg.sha512", + "bouncycastle.cryptography.nuspec", + "lib/net461/BouncyCastle.Cryptography.dll", + "lib/net461/BouncyCastle.Cryptography.xml", + "lib/net6.0/BouncyCastle.Cryptography.dll", + "lib/net6.0/BouncyCastle.Cryptography.xml", + "lib/netstandard2.0/BouncyCastle.Cryptography.dll", + "lib/netstandard2.0/BouncyCastle.Cryptography.xml", + "packageIcon.png" + ] + }, "EntityFramework/6.4.4": { "sha512": "yj1+/4tci7Panu3jKDHYizxwVm0Jvm7b7m057b5h4u8NUHGCR8WIWirBTw+8EptRffwftIWPBeIRGNKD1ewEMQ==", "type": "package", @@ -2188,14 +2157,14 @@ "tools/netcoreapp3.0/any/ef6.runtimeconfig.json" ] }, - "Google.Protobuf/3.21.9": { - "sha512": "OTpFujTgkmqMLbg3KT7F/iuKi1rg6s5FCS2M9XcVLDn40zL8wgXm37CY/F6MeOEXKjdcnXGCN/h7oyMkVydVsg==", + "Google.Protobuf/3.30.0": { + "sha512": "ZnEI4oZWnHvd+Yz5Gcnx5Q5RQIuzptIzd0fmxAN8f81FYHI0USZqMOrPTkrsd/QEzo9vl2b217v9FqFgHfufQw==", "type": "package", - "path": "google.protobuf/3.21.9", + "path": "google.protobuf/3.30.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "google.protobuf.3.21.9.nupkg.sha512", + "google.protobuf.3.30.0.nupkg.sha512", "google.protobuf.nuspec", "lib/net45/Google.Protobuf.dll", "lib/net45/Google.Protobuf.pdb", @@ -2211,14 +2180,14 @@ "lib/netstandard2.0/Google.Protobuf.xml" ] }, - "K4os.Compression.LZ4/1.3.5": { - "sha512": "TS4mqlT0X1OlnvOGNfl02QdVUhuqgWuCnn7UxupIa7C9Pb6qlQ5yZA2sPhRh0OSmVULaQU64KV4wJuu//UyVQQ==", + "K4os.Compression.LZ4/1.3.8": { + "sha512": "LhwlPa7c1zs1OV2XadMtAWdImjLIsqFJPoRcIWAadSRn0Ri1DepK65UbWLPmt4riLqx2d40xjXRk0ogpqNtK7g==", "type": "package", - "path": "k4os.compression.lz4/1.3.5", + "path": "k4os.compression.lz4/1.3.8", "files": [ ".nupkg.metadata", ".signature.p7s", - "k4os.compression.lz4.1.3.5.nupkg.sha512", + "k4os.compression.lz4.1.3.8.nupkg.sha512", "k4os.compression.lz4.nuspec", "lib/net462/K4os.Compression.LZ4.dll", "lib/net462/K4os.Compression.LZ4.xml", @@ -2232,14 +2201,14 @@ "lib/netstandard2.1/K4os.Compression.LZ4.xml" ] }, - "K4os.Compression.LZ4.Streams/1.3.5": { - "sha512": "M0NufZI8ym3mm6F6HMSPz1jw7TJGdY74fjAtbIXATmnAva/8xLz50eQZJI9tf9mMeHUaFDg76N1BmEh8GR5zeA==", + "K4os.Compression.LZ4.Streams/1.3.8": { + "sha512": "P15qr8dZAeo9GvYbUIPEYFQ0MEJ0i5iqr37wsYeRC3la2uCldOoeCa6to0CZ1taiwxIV+Mk8NGuZi+4iWivK9w==", "type": "package", - "path": "k4os.compression.lz4.streams/1.3.5", + "path": "k4os.compression.lz4.streams/1.3.8", "files": [ ".nupkg.metadata", ".signature.p7s", - "k4os.compression.lz4.streams.1.3.5.nupkg.sha512", + "k4os.compression.lz4.streams.1.3.8.nupkg.sha512", "k4os.compression.lz4.streams.nuspec", "lib/net462/K4os.Compression.LZ4.Streams.dll", "lib/net462/K4os.Compression.LZ4.Streams.xml", @@ -2286,10 +2255,10 @@ "materialskin.nuspec" ] }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { - "sha512": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==", + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "sha512": "owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==", "type": "package", - "path": "microsoft.bcl.asyncinterfaces/8.0.0", + "path": "microsoft.bcl.asyncinterfaces/9.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -2299,13 +2268,15 @@ "THIRD-PARTY-NOTICES.TXT", "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets", "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.AsyncInterfaces.targets", "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll", "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml", "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", - "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512", "microsoft.bcl.asyncinterfaces.nuspec", "useSharedDesignerContext.txt" ] @@ -2458,21 +2429,19 @@ "runtimes/win-x86/native/microsoft.management.infrastructure.native.unmanaged.dll" ] }, - "Microsoft.NETCore.Platforms/3.1.0": { - "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", "type": "package", - "path": "microsoft.netcore.platforms/3.1.0", + "path": "microsoft.netcore.platforms/1.1.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", "microsoft.netcore.platforms.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" + "runtime.json" ] }, "Microsoft.NETCore.Targets/1.1.0": { @@ -2575,56 +2544,30 @@ "version.txt" ] }, - "Microsoft.Win32.SystemEvents/4.7.0": { - "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "MySql.Data/9.3.0": { + "sha512": "f4iZBKubzwNnc84ecEwguv5TSwHpoArFGa+XpZY+8S9SoAnQaHfymLdZUKK4LbUbH9ACZ6X71LUvq58Mfdyipw==", "type": "package", - "path": "microsoft.win32.systemevents/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Win32.SystemEvents.dll", - "lib/net461/Microsoft.Win32.SystemEvents.xml", - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", - "microsoft.win32.systemevents.4.7.0.nupkg.sha512", - "microsoft.win32.systemevents.nuspec", - "ref/net461/Microsoft.Win32.SystemEvents.dll", - "ref/net461/Microsoft.Win32.SystemEvents.xml", - "ref/net472/Microsoft.Win32.SystemEvents.dll", - "ref/net472/Microsoft.Win32.SystemEvents.xml", - "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", - "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", - "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "MySql.Data/8.1.0": { - "sha512": "7kEJLyty7HcqJD0lnfs+2fdMrvCl0RY5oykvZThbmg6QVLT55dwygI69Eqxl0M6IThP9woyjpsezT6m7gKRrLA==", - "type": "package", - "path": "mysql.data/8.1.0", + "path": "mysql.data/9.3.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "LICENSE", + "README", + "README.md", "lib/net462/MySql.Data.dll", "lib/net462/MySql.Data.xml", "lib/net48/MySql.Data.dll", "lib/net48/MySql.Data.xml", - "lib/net6.0/MySql.Data.dll", - "lib/net6.0/MySql.Data.xml", - "lib/net7.0/MySql.Data.dll", - "lib/net7.0/MySql.Data.xml", + "lib/net8.0/MySql.Data.dll", + "lib/net8.0/MySql.Data.xml", + "lib/net9.0/MySql.Data.dll", + "lib/net9.0/MySql.Data.xml", "lib/netstandard2.0/MySql.Data.dll", "lib/netstandard2.0/MySql.Data.xml", "lib/netstandard2.1/MySql.Data.dll", "lib/netstandard2.1/MySql.Data.xml", "logo-mysql-170x115.png", - "mysql.data.8.1.0.nupkg.sha512", + "mysql.data.9.3.0.nupkg.sha512", "mysql.data.nuspec", "runtimes/win-x64/native/comerr64.dll", "runtimes/win-x64/native/gssapi64.dll", @@ -2676,21 +2619,6 @@ "packageIcon.png" ] }, - "Portable.BouncyCastle/1.9.0": { - "sha512": "eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==", - "type": "package", - "path": "portable.bouncycastle/1.9.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net40/BouncyCastle.Crypto.dll", - "lib/net40/BouncyCastle.Crypto.xml", - "lib/netstandard2.0/BouncyCastle.Crypto.dll", - "lib/netstandard2.0/BouncyCastle.Crypto.xml", - "portable.bouncycastle.1.9.0.nupkg.sha512", - "portable.bouncycastle.nuspec" - ] - }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", "type": "package", @@ -3627,27 +3555,34 @@ "version.txt" ] }, - "System.Configuration.ConfigurationManager/4.7.0": { - "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "System.Configuration.ConfigurationManager/8.0.0": { + "sha512": "JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", "type": "package", - "path": "system.configuration.configurationmanager/4.7.0", + "path": "system.configuration.configurationmanager/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Configuration.ConfigurationManager.dll", - "lib/net461/System.Configuration.ConfigurationManager.xml", + "buildTransitive/net461/System.Configuration.ConfigurationManager.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "lib/net462/System.Configuration.ConfigurationManager.dll", + "lib/net462/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/net7.0/System.Configuration.ConfigurationManager.dll", + "lib/net7.0/System.Configuration.ConfigurationManager.xml", + "lib/net8.0/System.Configuration.ConfigurationManager.dll", + "lib/net8.0/System.Configuration.ConfigurationManager.xml", "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", - "ref/net461/System.Configuration.ConfigurationManager.dll", - "ref/net461/System.Configuration.ConfigurationManager.xml", - "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", - "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", - "system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "system.configuration.configurationmanager.8.0.0.nupkg.sha512", "system.configuration.configurationmanager.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Console/4.3.0": { @@ -3901,10 +3836,10 @@ "system.diagnostics.debug.nuspec" ] }, - "System.Diagnostics.DiagnosticSource/7.0.2": { - "sha512": "hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==", + "System.Diagnostics.DiagnosticSource/8.0.1": { + "sha512": "vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", "type": "package", - "path": "system.diagnostics.diagnosticsource/7.0.2", + "path": "system.diagnostics.diagnosticsource/8.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3921,9 +3856,11 @@ "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", "lib/net7.0/System.Diagnostics.DiagnosticSource.dll", "lib/net7.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512", + "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", "system.diagnostics.diagnosticsource.nuspec", "useSharedDesignerContext.txt" ] @@ -4158,45 +4095,6 @@ "system.diagnostics.tracing.nuspec" ] }, - "System.Drawing.Common/4.7.0": { - "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", - "type": "package", - "path": "system.drawing.common/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Drawing.Common.dll", - "lib/netstandard2.0/System.Drawing.Common.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net461/System.Drawing.Common.dll", - "ref/netcoreapp3.0/System.Drawing.Common.dll", - "ref/netcoreapp3.0/System.Drawing.Common.xml", - "ref/netstandard2.0/System.Drawing.Common.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", - "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", - "system.drawing.common.4.7.0.nupkg.sha512", - "system.drawing.common.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, "System.Globalization/4.3.0": { "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", "type": "package", @@ -4612,27 +4510,30 @@ "system.io.filesystem.primitives.nuspec" ] }, - "System.IO.Pipelines/6.0.3": { - "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "System.IO.Pipelines/9.0.0": { + "sha512": "eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", "type": "package", - "path": "system.io.pipelines/6.0.3", + "path": "system.io.pipelines/9.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Pipelines.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.IO.Pipelines.dll", - "lib/net461/System.IO.Pipelines.xml", - "lib/net6.0/System.IO.Pipelines.dll", - "lib/net6.0/System.IO.Pipelines.xml", - "lib/netcoreapp3.1/System.IO.Pipelines.dll", - "lib/netcoreapp3.1/System.IO.Pipelines.xml", + "lib/net462/System.IO.Pipelines.dll", + "lib/net462/System.IO.Pipelines.xml", + "lib/net8.0/System.IO.Pipelines.dll", + "lib/net8.0/System.IO.Pipelines.xml", + "lib/net9.0/System.IO.Pipelines.dll", + "lib/net9.0/System.IO.Pipelines.xml", "lib/netstandard2.0/System.IO.Pipelines.dll", "lib/netstandard2.0/System.IO.Pipelines.xml", - "system.io.pipelines.6.0.3.nupkg.sha512", + "system.io.pipelines.9.0.0.nupkg.sha512", "system.io.pipelines.nuspec", "useSharedDesignerContext.txt" ] @@ -5079,53 +4980,6 @@ "system.net.sockets.nuspec" ] }, - "System.Numerics.Vectors/4.5.0": { - "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "type": "package", - "path": "system.numerics.vectors/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Numerics.Vectors.dll", - "lib/net46/System.Numerics.Vectors.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.0/System.Numerics.Vectors.dll", - "lib/netstandard1.0/System.Numerics.Vectors.xml", - "lib/netstandard2.0/System.Numerics.Vectors.dll", - "lib/netstandard2.0/System.Numerics.Vectors.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", - "lib/uap10.0.16299/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.Numerics.Vectors.dll", - "ref/net45/System.Numerics.Vectors.xml", - "ref/net46/System.Numerics.Vectors.dll", - "ref/net46/System.Numerics.Vectors.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/System.Numerics.Vectors.dll", - "ref/netstandard1.0/System.Numerics.Vectors.xml", - "ref/netstandard2.0/System.Numerics.Vectors.dll", - "ref/netstandard2.0/System.Numerics.Vectors.xml", - "ref/uap10.0.16299/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.numerics.vectors.4.5.0.nupkg.sha512", - "system.numerics.vectors.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, "System.ObjectModel/4.3.0": { "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", "type": "package", @@ -6098,50 +5952,33 @@ "system.runtime.numerics.nuspec" ] }, - "System.Security.AccessControl/4.7.0": { - "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", "type": "package", - "path": "system.security.accesscontrol/4.7.0", + "path": "system.security.accesscontrol/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.AccessControl.dll", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", "lib/net461/System.Security.AccessControl.dll", "lib/net461/System.Security.AccessControl.xml", - "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", "lib/netstandard2.0/System.Security.AccessControl.dll", "lib/netstandard2.0/System.Security.AccessControl.xml", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.xml", - "ref/netstandard1.3/System.Security.AccessControl.dll", - "ref/netstandard1.3/System.Security.AccessControl.xml", - "ref/netstandard1.3/de/System.Security.AccessControl.xml", - "ref/netstandard1.3/es/System.Security.AccessControl.xml", - "ref/netstandard1.3/fr/System.Security.AccessControl.xml", - "ref/netstandard1.3/it/System.Security.AccessControl.xml", - "ref/netstandard1.3/ja/System.Security.AccessControl.xml", - "ref/netstandard1.3/ko/System.Security.AccessControl.xml", - "ref/netstandard1.3/ru/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", - "ref/netstandard2.0/System.Security.AccessControl.dll", - "ref/netstandard2.0/System.Security.AccessControl.xml", - "ref/uap10.0.16299/_._", - "runtimes/win/lib/net46/System.Security.AccessControl.dll", "runtimes/win/lib/net461/System.Security.AccessControl.dll", "runtimes/win/lib/net461/System.Security.AccessControl.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", - "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.accesscontrol.4.7.0.nupkg.sha512", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Security.Cryptography.Algorithms/4.3.0": { @@ -6331,49 +6168,40 @@ "system.security.cryptography.primitives.nuspec" ] }, - "System.Security.Cryptography.ProtectedData/4.7.0": { - "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "System.Security.Cryptography.ProtectedData/8.0.0": { + "sha512": "+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", "type": "package", - "path": "system.security.cryptography.protecteddata/4.7.0", + "path": "system.security.cryptography.protecteddata/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.ProtectedData.dll", - "lib/net461/System.Security.Cryptography.ProtectedData.dll", - "lib/net461/System.Security.Cryptography.ProtectedData.xml", - "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/net462/System.Security.Cryptography.ProtectedData.dll", + "lib/net462/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net7.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net8.0/System.Security.Cryptography.ProtectedData.xml", "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.ProtectedData.dll", - "ref/net461/System.Security.Cryptography.ProtectedData.dll", - "ref/net461/System.Security.Cryptography.ProtectedData.xml", - "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", - "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", "system.security.cryptography.protecteddata.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Security.Cryptography.X509Certificates/4.3.0": { @@ -6432,40 +6260,43 @@ "system.security.cryptography.x509certificates.nuspec" ] }, - "System.Security.Permissions/4.7.0": { - "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "System.Security.Permissions/8.0.0": { + "sha512": "v/BBylw7XevuAsHXoX9dDUUfmBIcUf7Lkz8K3ZXIKz3YRKpw8YftpSir4n4e/jDTKFoaK37AsC3xnk+GNFI1Ow==", "type": "package", - "path": "system.security.permissions/4.7.0", + "path": "system.security.permissions/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Security.Permissions.dll", - "lib/net461/System.Security.Permissions.xml", - "lib/netcoreapp3.0/System.Security.Permissions.dll", - "lib/netcoreapp3.0/System.Security.Permissions.xml", + "buildTransitive/net461/System.Security.Permissions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "lib/net462/System.Security.Permissions.dll", + "lib/net462/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/net7.0/System.Security.Permissions.dll", + "lib/net7.0/System.Security.Permissions.xml", + "lib/net8.0/System.Security.Permissions.dll", + "lib/net8.0/System.Security.Permissions.xml", "lib/netstandard2.0/System.Security.Permissions.dll", "lib/netstandard2.0/System.Security.Permissions.xml", - "ref/net461/System.Security.Permissions.dll", - "ref/net461/System.Security.Permissions.xml", - "ref/netcoreapp3.0/System.Security.Permissions.dll", - "ref/netcoreapp3.0/System.Security.Permissions.xml", - "ref/netstandard2.0/System.Security.Permissions.dll", - "ref/netstandard2.0/System.Security.Permissions.xml", - "system.security.permissions.4.7.0.nupkg.sha512", + "system.security.permissions.8.0.0.nupkg.sha512", "system.security.permissions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, - "System.Security.Principal.Windows/4.7.0": { - "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", "type": "package", - "path": "system.security.principal.windows/4.7.0", + "path": "system.security.principal.windows/5.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", "lib/net46/System.Security.Principal.Windows.dll", @@ -6507,7 +6338,7 @@ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.5.0.0.nupkg.sha512", "system.security.principal.windows.nuspec", "useSharedDesignerContext.txt", "version.txt" @@ -6691,47 +6522,48 @@ "system.text.encoding.extensions.nuspec" ] }, - "System.Text.Encodings.Web/7.0.0": { - "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", + "System.Text.Encodings.Web/9.0.0": { + "sha512": "e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", "type": "package", - "path": "system.text.encodings.web/7.0.0", + "path": "system.text.encodings.web/9.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", "buildTransitive/net461/System.Text.Encodings.Web.targets", "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", + "buildTransitive/net8.0/_._", "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", "lib/net462/System.Text.Encodings.Web.dll", "lib/net462/System.Text.Encodings.Web.xml", - "lib/net6.0/System.Text.Encodings.Web.dll", - "lib/net6.0/System.Text.Encodings.Web.xml", - "lib/net7.0/System.Text.Encodings.Web.dll", - "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/net9.0/System.Text.Encodings.Web.dll", + "lib/net9.0/System.Text.Encodings.Web.xml", "lib/netstandard2.0/System.Text.Encodings.Web.dll", "lib/netstandard2.0/System.Text.Encodings.Web.xml", - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", - "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", - "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", - "system.text.encodings.web.7.0.0.nupkg.sha512", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.9.0.0.nupkg.sha512", "system.text.encodings.web.nuspec", "useSharedDesignerContext.txt" ] }, - "System.Text.Json/7.0.1": { - "sha512": "OtDEmCCiNl8JAduFKZ/r0Sw6XZNHwIicUYy/mXgMDGeOsZLshH37qi3oPRzFYiryVktiMoQLByMGPtRCEMYbeQ==", + "System.Text.Json/9.0.0": { + "sha512": "js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", "type": "package", - "path": "system.text.json/7.0.1", + "path": "system.text.json/9.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", - "README.md", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", @@ -6777,18 +6609,18 @@ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", "buildTransitive/net461/System.Text.Json.targets", "buildTransitive/net462/System.Text.Json.targets", - "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/net8.0/System.Text.Json.targets", "buildTransitive/netcoreapp2.0/System.Text.Json.targets", "buildTransitive/netstandard2.0/System.Text.Json.targets", "lib/net462/System.Text.Json.dll", "lib/net462/System.Text.Json.xml", - "lib/net6.0/System.Text.Json.dll", - "lib/net6.0/System.Text.Json.xml", - "lib/net7.0/System.Text.Json.dll", - "lib/net7.0/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/net9.0/System.Text.Json.dll", + "lib/net9.0/System.Text.Json.xml", "lib/netstandard2.0/System.Text.Json.dll", "lib/netstandard2.0/System.Text.Json.xml", - "system.text.json.7.0.1.nupkg.sha512", + "system.text.json.9.0.0.nupkg.sha512", "system.text.json.nuspec", "useSharedDesignerContext.txt" ] @@ -7218,27 +7050,6 @@ "system.threading.timer.nuspec" ] }, - "System.Windows.Extensions/4.7.0": { - "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", - "type": "package", - "path": "system.windows.extensions/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netcoreapp3.0/System.Windows.Extensions.dll", - "lib/netcoreapp3.0/System.Windows.Extensions.xml", - "ref/netcoreapp3.0/System.Windows.Extensions.dll", - "ref/netcoreapp3.0/System.Windows.Extensions.xml", - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", - "system.windows.extensions.4.7.0.nupkg.sha512", - "system.windows.extensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, "System.Xml.ReaderWriter/4.3.0": { "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", "type": "package", @@ -7381,10 +7192,10 @@ "system.xml.xdocument.nuspec" ] }, - "ZstdSharp.Port/0.8.1": { - "sha512": "19tNz33kn2EkyViFXuxfVn338UJaRmkwBphVqP2dVJIYQUQgFrgG5h061mxkRRg1Ax6r+6WOj1FxaFZ5qaWqqg==", + "ZstdSharp.Port/0.8.5": { + "sha512": "TR4j17WeVSEb3ncgL2NqlXEqcy04I+Kk9CaebNDplUeL8XOgjkZ7fP4Wg4grBdPLIqsV86p2QaXTkZoRMVOsew==", "type": "package", - "path": "zstdsharp.port/0.8.1", + "path": "zstdsharp.port/0.8.5", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -7393,10 +7204,11 @@ "lib/net6.0/ZstdSharp.dll", "lib/net7.0/ZstdSharp.dll", "lib/net8.0/ZstdSharp.dll", + "lib/net9.0/ZstdSharp.dll", "lib/netcoreapp3.1/ZstdSharp.dll", "lib/netstandard2.0/ZstdSharp.dll", "lib/netstandard2.1/ZstdSharp.dll", - "zstdsharp.port.0.8.1.nupkg.sha512", + "zstdsharp.port.0.8.5.nupkg.sha512", "zstdsharp.port.nuspec" ] } @@ -7405,7 +7217,7 @@ ".NETCoreApp,Version=v3.1": [ "MaterialSkin >= 0.2.1", "Microsoft.Management.Infrastructure >= 3.0.0", - "MySql.Data >= 8.1.0", + "MySql.Data >= 9.3.0", "Newtonsoft.Json >= 13.0.3", "SerialPortStream >= 2.4.1", "SharpCompress >= 0.38.0", @@ -7472,7 +7284,7 @@ }, "MySql.Data": { "target": "Package", - "version": "[8.1.0, )" + "version": "[9.3.0, )" }, "Newtonsoft.Json": { "target": "Package", diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index bf8b4a6..51d1c0e 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,30 +1,29 @@ { "version": 2, - "dgSpecHash": "YYOUHTMF43todL+JSqfRwQxi+NvVF+beryQ2sRL2AJFuJN/+wF8uv6ohQuSMHaoiT94MLRwGxDHb8VJAPFWUwg==", + "dgSpecHash": "MhQFb1A/uxTLyM/bcpcdYS1IbNNt1vr6vNGoKMa8wAUipMzacE/9Ou8nVkHiI39zIkD9BAvFrMhT1irmkleiyg==", "success": true, "projectFilePath": "D:\\Projects\\AVS\\AVS.csproj", "expectedPackageFiles": [ + "C:\\Users\\muhammad.faique\\.nuget\\packages\\bouncycastle.cryptography\\2.5.1\\bouncycastle.cryptography.2.5.1.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\entityframework\\6.4.4\\entityframework.6.4.4.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\google.protobuf\\3.21.9\\google.protobuf.3.21.9.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\k4os.compression.lz4\\1.3.5\\k4os.compression.lz4.1.3.5.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\k4os.compression.lz4.streams\\1.3.5\\k4os.compression.lz4.streams.1.3.5.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\google.protobuf\\3.30.0\\google.protobuf.3.30.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\k4os.compression.lz4\\1.3.8\\k4os.compression.lz4.1.3.8.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\k4os.compression.lz4.streams\\1.3.8\\k4os.compression.lz4.streams.1.3.8.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\k4os.hash.xxhash\\1.0.8\\k4os.hash.xxhash.1.0.8.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\materialskin\\0.2.1\\materialskin.0.2.1.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\8.0.0\\microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\9.0.0\\microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\1.1.2\\microsoft.extensions.logging.abstractions.1.1.2.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.management.infrastructure\\3.0.0\\microsoft.management.infrastructure.3.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\3.0.0\\microsoft.management.infrastructure.runtime.unix.3.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\3.0.0\\microsoft.management.infrastructure.runtime.win.3.0.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\mysql.data\\8.1.0\\mysql.data.8.1.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\mysql.data\\9.3.0\\mysql.data.9.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\portable.bouncycastle\\1.9.0\\portable.bouncycastle.1.9.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", @@ -63,19 +62,18 @@ "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.data.sqlclient\\4.8.1\\system.data.sqlclient.4.8.1.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.data.sqlite\\1.0.118\\system.data.sqlite.1.0.118.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.data.sqlite.core\\1.0.118\\system.data.sqlite.core.1.0.118.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.data.sqlite.ef6\\1.0.118\\system.data.sqlite.ef6.1.0.118.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.diagnostics.diagnosticsource\\7.0.2\\system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.diagnostics.fileversioninfo\\4.3.0\\system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", @@ -84,7 +82,7 @@ "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.io.pipelines\\9.0.0\\system.io.pipelines.9.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.io.ports\\7.0.0\\system.io.ports.7.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", @@ -93,7 +91,6 @@ "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", @@ -112,22 +109,22 @@ "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.permissions\\8.0.0\\system.security.permissions.8.0.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.encoding.codepages\\8.0.0\\system.text.encoding.codepages.8.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.encodings.web\\7.0.0\\system.text.encodings.web.7.0.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.json\\7.0.1\\system.text.json.7.0.1.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.encodings.web\\9.0.0\\system.text.encodings.web.9.0.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.json\\9.0.0\\system.text.json.9.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.threading.overlapped\\4.3.0\\system.threading.overlapped.4.3.0.nupkg.sha512", @@ -136,10 +133,9 @@ "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.threading.thread\\4.3.0\\system.threading.thread.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.threading.threadpool\\4.3.0\\system.threading.threadpool.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\zstdsharp.port\\0.8.1\\zstdsharp.port.0.8.1.nupkg.sha512" + "C:\\Users\\muhammad.faique\\.nuget\\packages\\zstdsharp.port\\0.8.5\\zstdsharp.port.0.8.5.nupkg.sha512" ], "logs": [ { diff --git a/obj/publish/win-x64/AVS.csproj.nuget.dgspec.json b/obj/publish/win-x64/AVS.csproj.nuget.dgspec.json index e05558c..6adac63 100644 --- a/obj/publish/win-x64/AVS.csproj.nuget.dgspec.json +++ b/obj/publish/win-x64/AVS.csproj.nuget.dgspec.json @@ -57,7 +57,7 @@ }, "MySql.Data": { "target": "Package", - "version": "[8.1.0, )" + "version": "[9.3.0, )" }, "Newtonsoft.Json": { "target": "Package", diff --git a/obj/publish/win-x64/AVS.csproj.nuget.g.targets b/obj/publish/win-x64/AVS.csproj.nuget.g.targets index d4769b1..a86ab11 100644 --- a/obj/publish/win-x64/AVS.csproj.nuget.g.targets +++ b/obj/publish/win-x64/AVS.csproj.nuget.g.targets @@ -4,13 +4,18 @@ $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - + + + + - + + + + \ No newline at end of file diff --git a/obj/publish/win-x64/project.assets.json b/obj/publish/win-x64/project.assets.json index a8a8994..393a037 100644 --- a/obj/publish/win-x64/project.assets.json +++ b/obj/publish/win-x64/project.assets.json @@ -2,6 +2,15 @@ "version": 3, "targets": { ".NETCoreApp,Version=v3.1": { + "BouncyCastle.Cryptography/2.5.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Cryptography.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Cryptography.dll": {} + } + }, "EntityFramework/6.4.4": { "type": "package", "dependencies": { @@ -24,7 +33,7 @@ "buildTransitive/netcoreapp3.0/EntityFramework.targets": {} } }, - "Google.Protobuf/3.21.9": { + "Google.Protobuf/3.30.0": { "type": "package", "dependencies": { "System.Memory": "4.5.3", @@ -37,7 +46,7 @@ "lib/netstandard2.0/Google.Protobuf.dll": {} } }, - "K4os.Compression.LZ4/1.3.5": { + "K4os.Compression.LZ4/1.3.8": { "type": "package", "dependencies": { "System.Runtime.CompilerServices.Unsafe": "6.0.0" @@ -49,10 +58,10 @@ "lib/netstandard2.1/K4os.Compression.LZ4.dll": {} } }, - "K4os.Compression.LZ4.Streams/1.3.5": { + "K4os.Compression.LZ4.Streams/1.3.8": { "type": "package", "dependencies": { - "K4os.Compression.LZ4": "1.3.5", + "K4os.Compression.LZ4": "1.3.8", "K4os.Hash.xxHash": "1.0.8", "System.IO.Pipelines": "6.0.3" }, @@ -84,13 +93,16 @@ "lib/MaterialSkin.dll": {} } }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { "type": "package", "compile": { "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} }, "runtime": { "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "build": { + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.AsyncInterfaces.targets": {} } }, "Microsoft.CSharp/4.7.0": { @@ -175,7 +187,7 @@ } } }, - "Microsoft.NETCore.Platforms/3.1.0": { + "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -227,40 +239,22 @@ } } }, - "Microsoft.Win32.SystemEvents/4.7.0": { + "MySql.Data/9.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "MySql.Data/8.1.0": { - "type": "package", - "dependencies": { - "Google.Protobuf": "3.21.9", - "K4os.Compression.LZ4.Streams": "1.3.5", - "Portable.BouncyCastle": "1.9.0", + "BouncyCastle.Cryptography": "2.5.1", + "Google.Protobuf": "3.30.0", + "K4os.Compression.LZ4.Streams": "1.3.8", "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "4.4.1", - "System.Diagnostics.DiagnosticSource": "7.0.2", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.1", "System.Runtime.CompilerServices.Unsafe": "6.0.0", "System.Runtime.Loader": "4.3.0", - "System.Security.Permissions": "4.7.0", - "System.Text.Encoding.CodePages": "4.4.0", - "System.Text.Json": "7.0.1", + "System.Security.Permissions": "8.0.0", + "System.Text.Encoding.CodePages": "8.0.0", + "System.Text.Json": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4", - "ZstdSharp.Port": "0.7.1" + "ZstdSharp.Port": "0.8.5" }, "compile": { "lib/netstandard2.1/MySql.Data.dll": {} @@ -349,15 +343,6 @@ "lib/netstandard2.0/Newtonsoft.Json.dll": {} } }, - "Portable.BouncyCastle/1.9.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} - }, - "runtime": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} - } - }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "runtimeTargets": { @@ -808,17 +793,19 @@ "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {} } }, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/8.0.0": { "type": "package", "dependencies": { - "System.Security.Cryptography.ProtectedData": "4.7.0", - "System.Security.Permissions": "4.7.0" + "System.Security.Cryptography.ProtectedData": "8.0.0" }, "compile": { - "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} }, "runtime": { "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "build": { + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets": {} } }, "System.Console/4.3.0": { @@ -894,7 +881,7 @@ "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} } }, - "System.Diagnostics.DiagnosticSource/7.0.2": { + "System.Diagnostics.DiagnosticSource/8.0.1": { "type": "package", "dependencies": { "System.Memory": "4.5.5", @@ -986,29 +973,6 @@ "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} } }, - "System.Drawing.Common/4.7.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "Microsoft.Win32.SystemEvents": "4.7.0" - }, - "compile": { - "ref/netcoreapp3.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/System.Drawing.Common.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, "System.Globalization/4.3.0": { "type": "package", "dependencies": { @@ -1150,16 +1114,21 @@ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} } }, - "System.IO.Pipelines/6.0.3": { + "System.IO.Pipelines/9.0.0": { "type": "package", + "dependencies": { + "System.Buffers": "4.5.1", + "System.Memory": "4.5.5", + "System.Threading.Tasks.Extensions": "4.5.4" + }, "compile": { - "lib/netcoreapp3.1/System.IO.Pipelines.dll": {} + "lib/netstandard2.0/System.IO.Pipelines.dll": {} }, "runtime": { - "lib/netcoreapp3.1/System.IO.Pipelines.dll": {} + "lib/netstandard2.0/System.IO.Pipelines.dll": {} }, "build": { - "buildTransitive/netcoreapp3.1/_._": {} + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets": {} } }, "System.IO.Ports/7.0.0": { @@ -1315,15 +1284,6 @@ "ref/netstandard1.3/System.Net.Sockets.dll": {} } }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, "System.ObjectModel/4.3.0": { "type": "package", "dependencies": { @@ -1589,20 +1549,22 @@ "lib/netstandard1.3/System.Runtime.Numerics.dll": {} } }, - "System.Security.AccessControl/4.7.0": { + "System.Security.AccessControl/6.0.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "System.Security.Principal.Windows": "4.7.0" + "System.Security.Principal.Windows": "5.0.0" }, "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": {} + "lib/netstandard2.0/System.Security.AccessControl.dll": {} }, "runtime": { "lib/netstandard2.0/System.Security.AccessControl.dll": {} }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": { "assetType": "runtime", "rid": "win" } @@ -1782,19 +1744,19 @@ "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} } }, - "System.Security.Cryptography.ProtectedData/4.7.0": { + "System.Security.Cryptography.ProtectedData/8.0.0": { "type": "package", + "dependencies": { + "System.Memory": "4.5.5" + }, "compile": { - "ref/netstandard2.0/_._": {} + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} }, "runtime": { "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { - "assetType": "runtime", - "rid": "win" - } + "build": { + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets": {} } }, "System.Security.Cryptography.X509Certificates/4.3.0": { @@ -1840,20 +1802,22 @@ } } }, - "System.Security.Permissions/4.7.0": { + "System.Security.Permissions/8.0.0": { "type": "package", "dependencies": { - "System.Security.AccessControl": "4.7.0", - "System.Windows.Extensions": "4.7.0" + "System.Security.AccessControl": "6.0.0" }, "compile": { - "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + "lib/netstandard2.0/System.Security.Permissions.dll": {} }, "runtime": { - "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + "lib/netstandard2.0/System.Security.Permissions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets": {} } }, - "System.Security.Principal.Windows/4.7.0": { + "System.Security.Principal.Windows/5.0.0": { "type": "package", "compile": { "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} @@ -1911,7 +1875,7 @@ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} } }, - "System.Text.Encodings.Web/7.0.0": { + "System.Text.Encodings.Web/9.0.0": { "type": "package", "dependencies": { "System.Buffers": "4.5.1", @@ -1928,15 +1892,15 @@ "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {} } }, - "System.Text.Json/7.0.1": { + "System.Text.Json/9.0.0": { "type": "package", "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", "System.Buffers": "4.5.1", + "System.IO.Pipelines": "9.0.0", "System.Memory": "4.5.5", - "System.Numerics.Vectors": "4.5.0", "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "7.0.0", + "System.Text.Encodings.Web": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4" }, "compile": { @@ -2052,24 +2016,6 @@ "ref/netstandard1.2/System.Threading.Timer.dll": {} } }, - "System.Windows.Extensions/4.7.0": { - "type": "package", - "dependencies": { - "System.Drawing.Common": "4.7.0" - }, - "compile": { - "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, "System.Xml.ReaderWriter/4.3.0": { "type": "package", "dependencies": { @@ -2119,8 +2065,11 @@ "lib/netstandard1.3/System.Xml.XDocument.dll": {} } }, - "ZstdSharp.Port/0.8.1": { + "ZstdSharp.Port/0.8.5": { "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, "compile": { "lib/netcoreapp3.1/ZstdSharp.dll": {} }, @@ -2130,6 +2079,15 @@ } }, ".NETCoreApp,Version=v3.1/win-x64": { + "BouncyCastle.Cryptography/2.5.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Cryptography.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Cryptography.dll": {} + } + }, "EntityFramework/6.4.4": { "type": "package", "dependencies": { @@ -2152,7 +2110,7 @@ "buildTransitive/netcoreapp3.0/EntityFramework.targets": {} } }, - "Google.Protobuf/3.21.9": { + "Google.Protobuf/3.30.0": { "type": "package", "dependencies": { "System.Memory": "4.5.3", @@ -2165,7 +2123,7 @@ "lib/netstandard2.0/Google.Protobuf.dll": {} } }, - "K4os.Compression.LZ4/1.3.5": { + "K4os.Compression.LZ4/1.3.8": { "type": "package", "dependencies": { "System.Runtime.CompilerServices.Unsafe": "6.0.0" @@ -2177,10 +2135,10 @@ "lib/netstandard2.1/K4os.Compression.LZ4.dll": {} } }, - "K4os.Compression.LZ4.Streams/1.3.5": { + "K4os.Compression.LZ4.Streams/1.3.8": { "type": "package", "dependencies": { - "K4os.Compression.LZ4": "1.3.5", + "K4os.Compression.LZ4": "1.3.8", "K4os.Hash.xxHash": "1.0.8", "System.IO.Pipelines": "6.0.3" }, @@ -2212,13 +2170,16 @@ "lib/MaterialSkin.dll": {} } }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { "type": "package", "compile": { "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} }, "runtime": { "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "build": { + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.AsyncInterfaces.targets": {} } }, "Microsoft.CSharp/4.7.0": { @@ -2266,7 +2227,7 @@ "runtimes/win-x64/native/microsoft.management.infrastructure.native.unmanaged.dll": {} } }, - "Microsoft.NETCore.Platforms/3.1.0": { + "Microsoft.NETCore.Platforms/1.1.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -2309,34 +2270,22 @@ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} } }, - "Microsoft.Win32.SystemEvents/4.7.0": { + "MySql.Data/9.3.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {} - } - }, - "MySql.Data/8.1.0": { - "type": "package", - "dependencies": { - "Google.Protobuf": "3.21.9", - "K4os.Compression.LZ4.Streams": "1.3.5", - "Portable.BouncyCastle": "1.9.0", + "BouncyCastle.Cryptography": "2.5.1", + "Google.Protobuf": "3.30.0", + "K4os.Compression.LZ4.Streams": "1.3.8", "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "4.4.1", - "System.Diagnostics.DiagnosticSource": "7.0.2", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.1", "System.Runtime.CompilerServices.Unsafe": "6.0.0", "System.Runtime.Loader": "4.3.0", - "System.Security.Permissions": "4.7.0", - "System.Text.Encoding.CodePages": "4.4.0", - "System.Text.Json": "7.0.1", + "System.Security.Permissions": "8.0.0", + "System.Text.Encoding.CodePages": "8.0.0", + "System.Text.Json": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4", - "ZstdSharp.Port": "0.7.1" + "ZstdSharp.Port": "0.8.5" }, "compile": { "lib/netstandard2.1/MySql.Data.dll": {} @@ -2410,15 +2359,6 @@ "lib/netstandard2.0/Newtonsoft.Json.dll": {} } }, - "Portable.BouncyCastle/1.9.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} - }, - "runtime": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} - } - }, "runtime.any.System.Collections/4.3.0": { "type": "package", "dependencies": { @@ -3033,17 +2973,19 @@ "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {} } }, - "System.Configuration.ConfigurationManager/4.7.0": { + "System.Configuration.ConfigurationManager/8.0.0": { "type": "package", "dependencies": { - "System.Security.Cryptography.ProtectedData": "4.7.0", - "System.Security.Permissions": "4.7.0" + "System.Security.Cryptography.ProtectedData": "8.0.0" }, "compile": { - "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} }, "runtime": { "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "build": { + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets": {} } }, "System.Console/4.3.0": { @@ -3111,7 +3053,7 @@ "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} } }, - "System.Diagnostics.DiagnosticSource/7.0.2": { + "System.Diagnostics.DiagnosticSource/8.0.1": { "type": "package", "dependencies": { "System.Memory": "4.5.5", @@ -3191,19 +3133,6 @@ "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} } }, - "System.Drawing.Common/4.7.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "Microsoft.Win32.SystemEvents": "4.7.0" - }, - "compile": { - "ref/netcoreapp3.0/_._": {} - }, - "runtime": { - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {} - } - }, "System.Globalization/4.3.0": { "type": "package", "dependencies": { @@ -3335,16 +3264,21 @@ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} } }, - "System.IO.Pipelines/6.0.3": { + "System.IO.Pipelines/9.0.0": { "type": "package", + "dependencies": { + "System.Buffers": "4.5.1", + "System.Memory": "4.5.5", + "System.Threading.Tasks.Extensions": "4.5.4" + }, "compile": { - "lib/netcoreapp3.1/System.IO.Pipelines.dll": {} + "lib/netstandard2.0/System.IO.Pipelines.dll": {} }, "runtime": { - "lib/netcoreapp3.1/System.IO.Pipelines.dll": {} + "lib/netstandard2.0/System.IO.Pipelines.dll": {} }, "build": { - "buildTransitive/netcoreapp3.1/_._": {} + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets": {} } }, "System.IO.Ports/7.0.0": { @@ -3520,15 +3454,6 @@ "ref/netstandard1.3/System.Net.Sockets.dll": {} } }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, "System.ObjectModel/4.3.0": { "type": "package", "dependencies": { @@ -3802,17 +3727,19 @@ "lib/netstandard1.3/System.Runtime.Numerics.dll": {} } }, - "System.Security.AccessControl/4.7.0": { + "System.Security.AccessControl/6.0.0": { "type": "package", "dependencies": { - "Microsoft.NETCore.Platforms": "3.1.0", - "System.Security.Principal.Windows": "4.7.0" + "System.Security.Principal.Windows": "5.0.0" }, "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": {} + "lib/netstandard2.0/System.Security.AccessControl.dll": {} }, "runtime": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {} + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} } }, "System.Security.Cryptography.Algorithms/4.3.0": { @@ -3951,13 +3878,19 @@ "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} } }, - "System.Security.Cryptography.ProtectedData/4.7.0": { + "System.Security.Cryptography.ProtectedData/8.0.0": { "type": "package", + "dependencies": { + "System.Memory": "4.5.5" + }, "compile": { - "ref/netstandard2.0/_._": {} + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} }, "runtime": { - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "build": { + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets": {} } }, "System.Security.Cryptography.X509Certificates/4.3.0": { @@ -3996,20 +3929,22 @@ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {} } }, - "System.Security.Permissions/4.7.0": { + "System.Security.Permissions/8.0.0": { "type": "package", "dependencies": { - "System.Security.AccessControl": "4.7.0", - "System.Windows.Extensions": "4.7.0" + "System.Security.AccessControl": "6.0.0" }, "compile": { - "ref/netcoreapp3.0/System.Security.Permissions.dll": {} + "lib/netstandard2.0/System.Security.Permissions.dll": {} }, "runtime": { - "lib/netcoreapp3.0/System.Security.Permissions.dll": {} + "lib/netstandard2.0/System.Security.Permissions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets": {} } }, - "System.Security.Principal.Windows/4.7.0": { + "System.Security.Principal.Windows/5.0.0": { "type": "package", "compile": { "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} @@ -4059,7 +3994,7 @@ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} } }, - "System.Text.Encodings.Web/7.0.0": { + "System.Text.Encodings.Web/9.0.0": { "type": "package", "dependencies": { "System.Buffers": "4.5.1", @@ -4076,15 +4011,15 @@ "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {} } }, - "System.Text.Json/7.0.1": { + "System.Text.Json/9.0.0": { "type": "package", "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.Bcl.AsyncInterfaces": "9.0.0", "System.Buffers": "4.5.1", + "System.IO.Pipelines": "9.0.0", "System.Memory": "4.5.5", - "System.Numerics.Vectors": "4.5.0", "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "7.0.0", + "System.Text.Encodings.Web": "9.0.0", "System.Threading.Tasks.Extensions": "4.5.4" }, "compile": { @@ -4195,18 +4130,6 @@ "ref/netstandard1.2/System.Threading.Timer.dll": {} } }, - "System.Windows.Extensions/4.7.0": { - "type": "package", - "dependencies": { - "System.Drawing.Common": "4.7.0" - }, - "compile": { - "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} - }, - "runtime": { - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {} - } - }, "System.Xml.ReaderWriter/4.3.0": { "type": "package", "dependencies": { @@ -4256,8 +4179,11 @@ "lib/netstandard1.3/System.Xml.XDocument.dll": {} } }, - "ZstdSharp.Port/0.8.1": { + "ZstdSharp.Port/0.8.5": { "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, "compile": { "lib/netcoreapp3.1/ZstdSharp.dll": {} }, @@ -4268,6 +4194,26 @@ } }, "libraries": { + "BouncyCastle.Cryptography/2.5.1": { + "sha512": "zy8TMeTP+1FH2NrLaNZtdRbBdq7u5MI+NFZQOBSM69u5RFkciinwzV2eveY6Kjf5MzgsYvvl6kTStsj3JrXqkg==", + "type": "package", + "path": "bouncycastle.cryptography/2.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "bouncycastle.cryptography.2.5.1.nupkg.sha512", + "bouncycastle.cryptography.nuspec", + "lib/net461/BouncyCastle.Cryptography.dll", + "lib/net461/BouncyCastle.Cryptography.xml", + "lib/net6.0/BouncyCastle.Cryptography.dll", + "lib/net6.0/BouncyCastle.Cryptography.xml", + "lib/netstandard2.0/BouncyCastle.Cryptography.dll", + "lib/netstandard2.0/BouncyCastle.Cryptography.xml", + "packageIcon.png" + ] + }, "EntityFramework/6.4.4": { "sha512": "yj1+/4tci7Panu3jKDHYizxwVm0Jvm7b7m057b5h4u8NUHGCR8WIWirBTw+8EptRffwftIWPBeIRGNKD1ewEMQ==", "type": "package", @@ -4325,14 +4271,14 @@ "tools/netcoreapp3.0/any/ef6.runtimeconfig.json" ] }, - "Google.Protobuf/3.21.9": { - "sha512": "OTpFujTgkmqMLbg3KT7F/iuKi1rg6s5FCS2M9XcVLDn40zL8wgXm37CY/F6MeOEXKjdcnXGCN/h7oyMkVydVsg==", + "Google.Protobuf/3.30.0": { + "sha512": "ZnEI4oZWnHvd+Yz5Gcnx5Q5RQIuzptIzd0fmxAN8f81FYHI0USZqMOrPTkrsd/QEzo9vl2b217v9FqFgHfufQw==", "type": "package", - "path": "google.protobuf/3.21.9", + "path": "google.protobuf/3.30.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "google.protobuf.3.21.9.nupkg.sha512", + "google.protobuf.3.30.0.nupkg.sha512", "google.protobuf.nuspec", "lib/net45/Google.Protobuf.dll", "lib/net45/Google.Protobuf.pdb", @@ -4348,14 +4294,14 @@ "lib/netstandard2.0/Google.Protobuf.xml" ] }, - "K4os.Compression.LZ4/1.3.5": { - "sha512": "TS4mqlT0X1OlnvOGNfl02QdVUhuqgWuCnn7UxupIa7C9Pb6qlQ5yZA2sPhRh0OSmVULaQU64KV4wJuu//UyVQQ==", + "K4os.Compression.LZ4/1.3.8": { + "sha512": "LhwlPa7c1zs1OV2XadMtAWdImjLIsqFJPoRcIWAadSRn0Ri1DepK65UbWLPmt4riLqx2d40xjXRk0ogpqNtK7g==", "type": "package", - "path": "k4os.compression.lz4/1.3.5", + "path": "k4os.compression.lz4/1.3.8", "files": [ ".nupkg.metadata", ".signature.p7s", - "k4os.compression.lz4.1.3.5.nupkg.sha512", + "k4os.compression.lz4.1.3.8.nupkg.sha512", "k4os.compression.lz4.nuspec", "lib/net462/K4os.Compression.LZ4.dll", "lib/net462/K4os.Compression.LZ4.xml", @@ -4369,14 +4315,14 @@ "lib/netstandard2.1/K4os.Compression.LZ4.xml" ] }, - "K4os.Compression.LZ4.Streams/1.3.5": { - "sha512": "M0NufZI8ym3mm6F6HMSPz1jw7TJGdY74fjAtbIXATmnAva/8xLz50eQZJI9tf9mMeHUaFDg76N1BmEh8GR5zeA==", + "K4os.Compression.LZ4.Streams/1.3.8": { + "sha512": "P15qr8dZAeo9GvYbUIPEYFQ0MEJ0i5iqr37wsYeRC3la2uCldOoeCa6to0CZ1taiwxIV+Mk8NGuZi+4iWivK9w==", "type": "package", - "path": "k4os.compression.lz4.streams/1.3.5", + "path": "k4os.compression.lz4.streams/1.3.8", "files": [ ".nupkg.metadata", ".signature.p7s", - "k4os.compression.lz4.streams.1.3.5.nupkg.sha512", + "k4os.compression.lz4.streams.1.3.8.nupkg.sha512", "k4os.compression.lz4.streams.nuspec", "lib/net462/K4os.Compression.LZ4.Streams.dll", "lib/net462/K4os.Compression.LZ4.Streams.xml", @@ -4423,10 +4369,10 @@ "materialskin.nuspec" ] }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { - "sha512": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==", + "Microsoft.Bcl.AsyncInterfaces/9.0.0": { + "sha512": "owmu2Cr3IQ8yQiBleBHlGk8dSQ12oaF2e7TpzwJKEl4m84kkZJjEY1n33L67Y3zM5jPOjmmbdHjbfiL0RqcMRQ==", "type": "package", - "path": "microsoft.bcl.asyncinterfaces/8.0.0", + "path": "microsoft.bcl.asyncinterfaces/9.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -4436,13 +4382,15 @@ "THIRD-PARTY-NOTICES.TXT", "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets", "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.AsyncInterfaces.targets", "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll", "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml", "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", - "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512", "microsoft.bcl.asyncinterfaces.nuspec", "useSharedDesignerContext.txt" ] @@ -4595,21 +4543,19 @@ "runtimes/win-x86/native/microsoft.management.infrastructure.native.unmanaged.dll" ] }, - "Microsoft.NETCore.Platforms/3.1.0": { - "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", "type": "package", - "path": "microsoft.netcore.platforms/3.1.0", + "path": "microsoft.netcore.platforms/1.1.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", "microsoft.netcore.platforms.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" + "runtime.json" ] }, "Microsoft.NETCore.Targets/1.1.0": { @@ -4712,56 +4658,30 @@ "version.txt" ] }, - "Microsoft.Win32.SystemEvents/4.7.0": { - "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "MySql.Data/9.3.0": { + "sha512": "f4iZBKubzwNnc84ecEwguv5TSwHpoArFGa+XpZY+8S9SoAnQaHfymLdZUKK4LbUbH9ACZ6X71LUvq58Mfdyipw==", "type": "package", - "path": "microsoft.win32.systemevents/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Win32.SystemEvents.dll", - "lib/net461/Microsoft.Win32.SystemEvents.xml", - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", - "microsoft.win32.systemevents.4.7.0.nupkg.sha512", - "microsoft.win32.systemevents.nuspec", - "ref/net461/Microsoft.Win32.SystemEvents.dll", - "ref/net461/Microsoft.Win32.SystemEvents.xml", - "ref/net472/Microsoft.Win32.SystemEvents.dll", - "ref/net472/Microsoft.Win32.SystemEvents.xml", - "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", - "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", - "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "MySql.Data/8.1.0": { - "sha512": "7kEJLyty7HcqJD0lnfs+2fdMrvCl0RY5oykvZThbmg6QVLT55dwygI69Eqxl0M6IThP9woyjpsezT6m7gKRrLA==", - "type": "package", - "path": "mysql.data/8.1.0", + "path": "mysql.data/9.3.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "LICENSE", + "README", + "README.md", "lib/net462/MySql.Data.dll", "lib/net462/MySql.Data.xml", "lib/net48/MySql.Data.dll", "lib/net48/MySql.Data.xml", - "lib/net6.0/MySql.Data.dll", - "lib/net6.0/MySql.Data.xml", - "lib/net7.0/MySql.Data.dll", - "lib/net7.0/MySql.Data.xml", + "lib/net8.0/MySql.Data.dll", + "lib/net8.0/MySql.Data.xml", + "lib/net9.0/MySql.Data.dll", + "lib/net9.0/MySql.Data.xml", "lib/netstandard2.0/MySql.Data.dll", "lib/netstandard2.0/MySql.Data.xml", "lib/netstandard2.1/MySql.Data.dll", "lib/netstandard2.1/MySql.Data.xml", "logo-mysql-170x115.png", - "mysql.data.8.1.0.nupkg.sha512", + "mysql.data.9.3.0.nupkg.sha512", "mysql.data.nuspec", "runtimes/win-x64/native/comerr64.dll", "runtimes/win-x64/native/gssapi64.dll", @@ -4813,21 +4733,6 @@ "packageIcon.png" ] }, - "Portable.BouncyCastle/1.9.0": { - "sha512": "eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==", - "type": "package", - "path": "portable.bouncycastle/1.9.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net40/BouncyCastle.Crypto.dll", - "lib/net40/BouncyCastle.Crypto.xml", - "lib/netstandard2.0/BouncyCastle.Crypto.dll", - "lib/netstandard2.0/BouncyCastle.Crypto.xml", - "portable.bouncycastle.1.9.0.nupkg.sha512", - "portable.bouncycastle.nuspec" - ] - }, "runtime.any.System.Collections/4.3.0": { "sha512": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", "type": "package", @@ -6339,27 +6244,34 @@ "version.txt" ] }, - "System.Configuration.ConfigurationManager/4.7.0": { - "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "System.Configuration.ConfigurationManager/8.0.0": { + "sha512": "JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", "type": "package", - "path": "system.configuration.configurationmanager/4.7.0", + "path": "system.configuration.configurationmanager/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Configuration.ConfigurationManager.dll", - "lib/net461/System.Configuration.ConfigurationManager.xml", + "buildTransitive/net461/System.Configuration.ConfigurationManager.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "lib/net462/System.Configuration.ConfigurationManager.dll", + "lib/net462/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/net7.0/System.Configuration.ConfigurationManager.dll", + "lib/net7.0/System.Configuration.ConfigurationManager.xml", + "lib/net8.0/System.Configuration.ConfigurationManager.dll", + "lib/net8.0/System.Configuration.ConfigurationManager.xml", "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", - "ref/net461/System.Configuration.ConfigurationManager.dll", - "ref/net461/System.Configuration.ConfigurationManager.xml", - "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", - "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", - "system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "system.configuration.configurationmanager.8.0.0.nupkg.sha512", "system.configuration.configurationmanager.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Console/4.3.0": { @@ -6613,10 +6525,10 @@ "system.diagnostics.debug.nuspec" ] }, - "System.Diagnostics.DiagnosticSource/7.0.2": { - "sha512": "hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==", + "System.Diagnostics.DiagnosticSource/8.0.1": { + "sha512": "vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", "type": "package", - "path": "system.diagnostics.diagnosticsource/7.0.2", + "path": "system.diagnostics.diagnosticsource/8.0.1", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -6633,9 +6545,11 @@ "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", "lib/net7.0/System.Diagnostics.DiagnosticSource.dll", "lib/net7.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512", + "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", "system.diagnostics.diagnosticsource.nuspec", "useSharedDesignerContext.txt" ] @@ -6870,45 +6784,6 @@ "system.diagnostics.tracing.nuspec" ] }, - "System.Drawing.Common/4.7.0": { - "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", - "type": "package", - "path": "system.drawing.common/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Drawing.Common.dll", - "lib/netstandard2.0/System.Drawing.Common.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net461/System.Drawing.Common.dll", - "ref/netcoreapp3.0/System.Drawing.Common.dll", - "ref/netcoreapp3.0/System.Drawing.Common.xml", - "ref/netstandard2.0/System.Drawing.Common.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", - "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", - "system.drawing.common.4.7.0.nupkg.sha512", - "system.drawing.common.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, "System.Globalization/4.3.0": { "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", "type": "package", @@ -7324,27 +7199,30 @@ "system.io.filesystem.primitives.nuspec" ] }, - "System.IO.Pipelines/6.0.3": { - "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", + "System.IO.Pipelines/9.0.0": { + "sha512": "eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", "type": "package", - "path": "system.io.pipelines/6.0.3", + "path": "system.io.pipelines/9.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Pipelines.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.IO.Pipelines.dll", - "lib/net461/System.IO.Pipelines.xml", - "lib/net6.0/System.IO.Pipelines.dll", - "lib/net6.0/System.IO.Pipelines.xml", - "lib/netcoreapp3.1/System.IO.Pipelines.dll", - "lib/netcoreapp3.1/System.IO.Pipelines.xml", + "lib/net462/System.IO.Pipelines.dll", + "lib/net462/System.IO.Pipelines.xml", + "lib/net8.0/System.IO.Pipelines.dll", + "lib/net8.0/System.IO.Pipelines.xml", + "lib/net9.0/System.IO.Pipelines.dll", + "lib/net9.0/System.IO.Pipelines.xml", "lib/netstandard2.0/System.IO.Pipelines.dll", "lib/netstandard2.0/System.IO.Pipelines.xml", - "system.io.pipelines.6.0.3.nupkg.sha512", + "system.io.pipelines.9.0.0.nupkg.sha512", "system.io.pipelines.nuspec", "useSharedDesignerContext.txt" ] @@ -7833,53 +7711,6 @@ "system.net.sockets.nuspec" ] }, - "System.Numerics.Vectors/4.5.0": { - "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "type": "package", - "path": "system.numerics.vectors/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Numerics.Vectors.dll", - "lib/net46/System.Numerics.Vectors.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.0/System.Numerics.Vectors.dll", - "lib/netstandard1.0/System.Numerics.Vectors.xml", - "lib/netstandard2.0/System.Numerics.Vectors.dll", - "lib/netstandard2.0/System.Numerics.Vectors.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", - "lib/uap10.0.16299/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.Numerics.Vectors.dll", - "ref/net45/System.Numerics.Vectors.xml", - "ref/net46/System.Numerics.Vectors.dll", - "ref/net46/System.Numerics.Vectors.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/System.Numerics.Vectors.dll", - "ref/netstandard1.0/System.Numerics.Vectors.xml", - "ref/netstandard2.0/System.Numerics.Vectors.dll", - "ref/netstandard2.0/System.Numerics.Vectors.xml", - "ref/uap10.0.16299/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.numerics.vectors.4.5.0.nupkg.sha512", - "system.numerics.vectors.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, "System.ObjectModel/4.3.0": { "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", "type": "package", @@ -8866,50 +8697,33 @@ "system.runtime.numerics.nuspec" ] }, - "System.Security.AccessControl/4.7.0": { - "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", "type": "package", - "path": "system.security.accesscontrol/4.7.0", + "path": "system.security.accesscontrol/6.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.AccessControl.dll", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", "lib/net461/System.Security.AccessControl.dll", "lib/net461/System.Security.AccessControl.xml", - "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", "lib/netstandard2.0/System.Security.AccessControl.dll", "lib/netstandard2.0/System.Security.AccessControl.xml", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.xml", - "ref/netstandard1.3/System.Security.AccessControl.dll", - "ref/netstandard1.3/System.Security.AccessControl.xml", - "ref/netstandard1.3/de/System.Security.AccessControl.xml", - "ref/netstandard1.3/es/System.Security.AccessControl.xml", - "ref/netstandard1.3/fr/System.Security.AccessControl.xml", - "ref/netstandard1.3/it/System.Security.AccessControl.xml", - "ref/netstandard1.3/ja/System.Security.AccessControl.xml", - "ref/netstandard1.3/ko/System.Security.AccessControl.xml", - "ref/netstandard1.3/ru/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", - "ref/netstandard2.0/System.Security.AccessControl.dll", - "ref/netstandard2.0/System.Security.AccessControl.xml", - "ref/uap10.0.16299/_._", - "runtimes/win/lib/net46/System.Security.AccessControl.dll", "runtimes/win/lib/net461/System.Security.AccessControl.dll", "runtimes/win/lib/net461/System.Security.AccessControl.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", - "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.accesscontrol.4.7.0.nupkg.sha512", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Security.Cryptography.Algorithms/4.3.0": { @@ -9099,49 +8913,40 @@ "system.security.cryptography.primitives.nuspec" ] }, - "System.Security.Cryptography.ProtectedData/4.7.0": { - "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "System.Security.Cryptography.ProtectedData/8.0.0": { + "sha512": "+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", "type": "package", - "path": "system.security.cryptography.protecteddata/4.7.0", + "path": "system.security.cryptography.protecteddata/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.ProtectedData.dll", - "lib/net461/System.Security.Cryptography.ProtectedData.dll", - "lib/net461/System.Security.Cryptography.ProtectedData.xml", - "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/net462/System.Security.Cryptography.ProtectedData.dll", + "lib/net462/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net7.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net8.0/System.Security.Cryptography.ProtectedData.xml", "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", "lib/xamarintvos10/_._", "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.ProtectedData.dll", - "ref/net461/System.Security.Cryptography.ProtectedData.dll", - "ref/net461/System.Security.Cryptography.ProtectedData.xml", - "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", - "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", "system.security.cryptography.protecteddata.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, "System.Security.Cryptography.X509Certificates/4.3.0": { @@ -9200,40 +9005,43 @@ "system.security.cryptography.x509certificates.nuspec" ] }, - "System.Security.Permissions/4.7.0": { - "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "System.Security.Permissions/8.0.0": { + "sha512": "v/BBylw7XevuAsHXoX9dDUUfmBIcUf7Lkz8K3ZXIKz3YRKpw8YftpSir4n4e/jDTKFoaK37AsC3xnk+GNFI1Ow==", "type": "package", - "path": "system.security.permissions/4.7.0", + "path": "system.security.permissions/8.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Security.Permissions.dll", - "lib/net461/System.Security.Permissions.xml", - "lib/netcoreapp3.0/System.Security.Permissions.dll", - "lib/netcoreapp3.0/System.Security.Permissions.xml", + "buildTransitive/net461/System.Security.Permissions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "lib/net462/System.Security.Permissions.dll", + "lib/net462/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/net7.0/System.Security.Permissions.dll", + "lib/net7.0/System.Security.Permissions.xml", + "lib/net8.0/System.Security.Permissions.dll", + "lib/net8.0/System.Security.Permissions.xml", "lib/netstandard2.0/System.Security.Permissions.dll", "lib/netstandard2.0/System.Security.Permissions.xml", - "ref/net461/System.Security.Permissions.dll", - "ref/net461/System.Security.Permissions.xml", - "ref/netcoreapp3.0/System.Security.Permissions.dll", - "ref/netcoreapp3.0/System.Security.Permissions.xml", - "ref/netstandard2.0/System.Security.Permissions.dll", - "ref/netstandard2.0/System.Security.Permissions.xml", - "system.security.permissions.4.7.0.nupkg.sha512", + "system.security.permissions.8.0.0.nupkg.sha512", "system.security.permissions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" + "useSharedDesignerContext.txt" ] }, - "System.Security.Principal.Windows/4.7.0": { - "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", "type": "package", - "path": "system.security.principal.windows/4.7.0", + "path": "system.security.principal.windows/5.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", "lib/net46/System.Security.Principal.Windows.dll", @@ -9275,7 +9083,7 @@ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.5.0.0.nupkg.sha512", "system.security.principal.windows.nuspec", "useSharedDesignerContext.txt", "version.txt" @@ -9459,47 +9267,48 @@ "system.text.encoding.extensions.nuspec" ] }, - "System.Text.Encodings.Web/7.0.0": { - "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", + "System.Text.Encodings.Web/9.0.0": { + "sha512": "e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", "type": "package", - "path": "system.text.encodings.web/7.0.0", + "path": "system.text.encodings.web/9.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", "buildTransitive/net461/System.Text.Encodings.Web.targets", "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", + "buildTransitive/net8.0/_._", "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", "lib/net462/System.Text.Encodings.Web.dll", "lib/net462/System.Text.Encodings.Web.xml", - "lib/net6.0/System.Text.Encodings.Web.dll", - "lib/net6.0/System.Text.Encodings.Web.xml", - "lib/net7.0/System.Text.Encodings.Web.dll", - "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/net9.0/System.Text.Encodings.Web.dll", + "lib/net9.0/System.Text.Encodings.Web.xml", "lib/netstandard2.0/System.Text.Encodings.Web.dll", "lib/netstandard2.0/System.Text.Encodings.Web.xml", - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", - "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", - "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", - "system.text.encodings.web.7.0.0.nupkg.sha512", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.9.0.0.nupkg.sha512", "system.text.encodings.web.nuspec", "useSharedDesignerContext.txt" ] }, - "System.Text.Json/7.0.1": { - "sha512": "OtDEmCCiNl8JAduFKZ/r0Sw6XZNHwIicUYy/mXgMDGeOsZLshH37qi3oPRzFYiryVktiMoQLByMGPtRCEMYbeQ==", + "System.Text.Json/9.0.0": { + "sha512": "js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", "type": "package", - "path": "system.text.json/7.0.1", + "path": "system.text.json/9.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "LICENSE.TXT", - "README.md", + "PACKAGE.md", "THIRD-PARTY-NOTICES.TXT", "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", @@ -9545,18 +9354,18 @@ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", "buildTransitive/net461/System.Text.Json.targets", "buildTransitive/net462/System.Text.Json.targets", - "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/net8.0/System.Text.Json.targets", "buildTransitive/netcoreapp2.0/System.Text.Json.targets", "buildTransitive/netstandard2.0/System.Text.Json.targets", "lib/net462/System.Text.Json.dll", "lib/net462/System.Text.Json.xml", - "lib/net6.0/System.Text.Json.dll", - "lib/net6.0/System.Text.Json.xml", - "lib/net7.0/System.Text.Json.dll", - "lib/net7.0/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/net9.0/System.Text.Json.dll", + "lib/net9.0/System.Text.Json.xml", "lib/netstandard2.0/System.Text.Json.dll", "lib/netstandard2.0/System.Text.Json.xml", - "system.text.json.7.0.1.nupkg.sha512", + "system.text.json.9.0.0.nupkg.sha512", "system.text.json.nuspec", "useSharedDesignerContext.txt" ] @@ -9986,27 +9795,6 @@ "system.threading.timer.nuspec" ] }, - "System.Windows.Extensions/4.7.0": { - "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", - "type": "package", - "path": "system.windows.extensions/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netcoreapp3.0/System.Windows.Extensions.dll", - "lib/netcoreapp3.0/System.Windows.Extensions.xml", - "ref/netcoreapp3.0/System.Windows.Extensions.dll", - "ref/netcoreapp3.0/System.Windows.Extensions.xml", - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", - "system.windows.extensions.4.7.0.nupkg.sha512", - "system.windows.extensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, "System.Xml.ReaderWriter/4.3.0": { "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", "type": "package", @@ -10149,10 +9937,10 @@ "system.xml.xdocument.nuspec" ] }, - "ZstdSharp.Port/0.8.1": { - "sha512": "19tNz33kn2EkyViFXuxfVn338UJaRmkwBphVqP2dVJIYQUQgFrgG5h061mxkRRg1Ax6r+6WOj1FxaFZ5qaWqqg==", + "ZstdSharp.Port/0.8.5": { + "sha512": "TR4j17WeVSEb3ncgL2NqlXEqcy04I+Kk9CaebNDplUeL8XOgjkZ7fP4Wg4grBdPLIqsV86p2QaXTkZoRMVOsew==", "type": "package", - "path": "zstdsharp.port/0.8.1", + "path": "zstdsharp.port/0.8.5", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -10161,10 +9949,11 @@ "lib/net6.0/ZstdSharp.dll", "lib/net7.0/ZstdSharp.dll", "lib/net8.0/ZstdSharp.dll", + "lib/net9.0/ZstdSharp.dll", "lib/netcoreapp3.1/ZstdSharp.dll", "lib/netstandard2.0/ZstdSharp.dll", "lib/netstandard2.1/ZstdSharp.dll", - "zstdsharp.port.0.8.1.nupkg.sha512", + "zstdsharp.port.0.8.5.nupkg.sha512", "zstdsharp.port.nuspec" ] } @@ -10173,7 +9962,7 @@ ".NETCoreApp,Version=v3.1": [ "MaterialSkin >= 0.2.1", "Microsoft.Management.Infrastructure >= 3.0.0", - "MySql.Data >= 8.1.0", + "MySql.Data >= 9.3.0", "Newtonsoft.Json >= 13.0.3", "SerialPortStream >= 2.4.1", "SharpCompress >= 0.38.0", @@ -10240,7 +10029,7 @@ }, "MySql.Data": { "target": "Package", - "version": "[8.1.0, )" + "version": "[9.3.0, )" }, "Newtonsoft.Json": { "target": "Package", diff --git a/obj/publish/win-x64/project.nuget.cache b/obj/publish/win-x64/project.nuget.cache index 15cb581..f35a8a2 100644 --- a/obj/publish/win-x64/project.nuget.cache +++ b/obj/publish/win-x64/project.nuget.cache @@ -1,30 +1,29 @@ { "version": 2, - "dgSpecHash": "jBSJscXO+TNxuecCqFdshhaP01Ii6sz33UUw18GyB9gX+k+cUv5HKmCurihppOkqUlFNM3UyYHMzFa5ROPf07A==", + "dgSpecHash": "8OYMR/drLRMeln8VBevRAua5VforGxXNVIFy3fZnPgbeScIbGKtWGZcjgsqqNy76GYQO2flwdEmyE5Yvej4BHw==", "success": true, "projectFilePath": "D:\\Projects\\AVS\\AVS.csproj", "expectedPackageFiles": [ + "C:\\Users\\muhammad.faique\\.nuget\\packages\\bouncycastle.cryptography\\2.5.1\\bouncycastle.cryptography.2.5.1.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\entityframework\\6.4.4\\entityframework.6.4.4.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\google.protobuf\\3.21.9\\google.protobuf.3.21.9.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\k4os.compression.lz4\\1.3.5\\k4os.compression.lz4.1.3.5.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\k4os.compression.lz4.streams\\1.3.5\\k4os.compression.lz4.streams.1.3.5.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\google.protobuf\\3.30.0\\google.protobuf.3.30.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\k4os.compression.lz4\\1.3.8\\k4os.compression.lz4.1.3.8.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\k4os.compression.lz4.streams\\1.3.8\\k4os.compression.lz4.streams.1.3.8.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\k4os.hash.xxhash\\1.0.8\\k4os.hash.xxhash.1.0.8.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\materialskin\\0.2.1\\materialskin.0.2.1.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\8.0.0\\microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\9.0.0\\microsoft.bcl.asyncinterfaces.9.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\1.1.2\\microsoft.extensions.logging.abstractions.1.1.2.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.management.infrastructure\\3.0.0\\microsoft.management.infrastructure.3.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\3.0.0\\microsoft.management.infrastructure.runtime.unix.3.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\3.0.0\\microsoft.management.infrastructure.runtime.win.3.0.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\mysql.data\\8.1.0\\mysql.data.8.1.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\mysql.data\\9.3.0\\mysql.data.9.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\portable.bouncycastle\\1.9.0\\portable.bouncycastle.1.9.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\runtime.any.system.collections\\4.3.0\\runtime.any.system.collections.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\runtime.any.system.diagnostics.tools\\4.3.0\\runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\runtime.any.system.diagnostics.tracing\\4.3.0\\runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512", @@ -87,19 +86,18 @@ "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.data.sqlclient\\4.8.1\\system.data.sqlclient.4.8.1.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.data.sqlite\\1.0.118\\system.data.sqlite.1.0.118.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.data.sqlite.core\\1.0.118\\system.data.sqlite.core.1.0.118.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.data.sqlite.ef6\\1.0.118\\system.data.sqlite.ef6.1.0.118.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.diagnostics.diagnosticsource\\7.0.2\\system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.diagnostics.fileversioninfo\\4.3.0\\system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", @@ -108,7 +106,7 @@ "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.io.pipelines\\9.0.0\\system.io.pipelines.9.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.io.ports\\7.0.0\\system.io.ports.7.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", @@ -118,7 +116,6 @@ "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.private.uri\\4.3.0\\system.private.uri.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", @@ -138,22 +135,22 @@ "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.permissions\\8.0.0\\system.security.permissions.8.0.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.encoding.codepages\\8.0.0\\system.text.encoding.codepages.8.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.encodings.web\\7.0.0\\system.text.encodings.web.7.0.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.json\\7.0.1\\system.text.json.7.0.1.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.encodings.web\\9.0.0\\system.text.encodings.web.9.0.0.nupkg.sha512", + "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.json\\9.0.0\\system.text.json.9.0.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.threading.overlapped\\4.3.0\\system.threading.overlapped.4.3.0.nupkg.sha512", @@ -162,10 +159,9 @@ "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.threading.thread\\4.3.0\\system.threading.thread.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.threading.threadpool\\4.3.0\\system.threading.threadpool.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", "C:\\Users\\muhammad.faique\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", - "C:\\Users\\muhammad.faique\\.nuget\\packages\\zstdsharp.port\\0.8.1\\zstdsharp.port.0.8.1.nupkg.sha512" + "C:\\Users\\muhammad.faique\\.nuget\\packages\\zstdsharp.port\\0.8.5\\zstdsharp.port.0.8.5.nupkg.sha512" ], "logs": [ {