diff --git a/.vs/AVS/DesignTimeBuild/.dtbcache.v2 b/.vs/AVS/DesignTimeBuild/.dtbcache.v2
index 6d2ee8a..8546481 100644
Binary files a/.vs/AVS/DesignTimeBuild/.dtbcache.v2 and b/.vs/AVS/DesignTimeBuild/.dtbcache.v2 differ
diff --git a/.vs/AVS/FileContentIndex/7f40a6d4-b81e-484b-8c24-cd48d6e1ebe5.vsidx b/.vs/AVS/FileContentIndex/7f40a6d4-b81e-484b-8c24-cd48d6e1ebe5.vsidx
deleted file mode 100644
index a7d76f1..0000000
Binary files a/.vs/AVS/FileContentIndex/7f40a6d4-b81e-484b-8c24-cd48d6e1ebe5.vsidx and /dev/null differ
diff --git a/.vs/AVS/FileContentIndex/caa12716-5721-4ee9-8b01-b6a6c6a6af8e.vsidx b/.vs/AVS/FileContentIndex/caa12716-5721-4ee9-8b01-b6a6c6a6af8e.vsidx
deleted file mode 100644
index a7d76f1..0000000
Binary files a/.vs/AVS/FileContentIndex/caa12716-5721-4ee9-8b01-b6a6c6a6af8e.vsidx and /dev/null differ
diff --git a/.vs/AVS/v16/.suo b/.vs/AVS/v16/.suo
index f282ad3..a844675 100644
Binary files a/.vs/AVS/v16/.suo and b/.vs/AVS/v16/.suo differ
diff --git a/.vs/AVS/v17/.futdcache.v2 b/.vs/AVS/v17/.futdcache.v2
index ad69d88..7a14b75 100644
Binary files a/.vs/AVS/v17/.futdcache.v2 and b/.vs/AVS/v17/.futdcache.v2 differ
diff --git a/.vs/AVS/v17/.suo b/.vs/AVS/v17/.suo
index a7a385c..a500a5d 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 10eb6e9..39e9292 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 81f960c..184563b 100644
Binary files a/.vs/ProjectEvaluation/avs.projects.v7.bin and b/.vs/ProjectEvaluation/avs.projects.v7.bin differ
diff --git a/CartonForm.cs b/CartonForm.cs
index 5673d5a..7a10c9b 100644
--- a/CartonForm.cs
+++ b/CartonForm.cs
@@ -67,7 +67,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();
+
}
txt_barcode.Text = "";
diff --git a/LiteDbClass.cs b/LiteDbClass.cs
index b93e4fb..6bc64df 100644
--- a/LiteDbClass.cs
+++ b/LiteDbClass.cs
@@ -424,6 +424,8 @@ namespace AVS
return LogList;
}
+
+
public void DeleteRow(string FNSKU, string market_place)
{
// Open the connection
@@ -972,7 +974,7 @@ namespace AVS
log.LIVE_WEIGHT,
log.PC_NAME,
log.MARKET_PLACE
-
+
});
return Newtonsoft.Json.JsonConvert.SerializeObject(jsonLogs, Newtonsoft.Json.Formatting.Indented);
@@ -1037,7 +1039,7 @@ namespace AVS
}
}
}
-
+
public async void postDataAsync()
{
@@ -1125,8 +1127,8 @@ namespace AVS
}
else
{
- MessageBox.Show("ERROR POSTING DATA ! " + response.StatusCode );
-
+ MessageBox.Show("ERROR POSTING DATA ! " + response.StatusCode);
+
_mainForm.btn_post_data.Enabled = true;
}
}
diff --git a/LoginForm.Designer.cs b/LoginForm.Designer.cs
index 519594d..a66e6b4 100644
--- a/LoginForm.Designer.cs
+++ b/LoginForm.Designer.cs
@@ -190,6 +190,7 @@ namespace AVS
this.cb_remember.TabIndex = 27;
this.cb_remember.Text = "Remember";
this.cb_remember.UseVisualStyleBackColor = true;
+ this.cb_remember.Visible = false;
//
// cb_container
//
diff --git a/LoginForm.cs b/LoginForm.cs
index f6e681f..86f2d98 100644
--- a/LoginForm.cs
+++ b/LoginForm.cs
@@ -22,7 +22,7 @@ namespace AVS
public static string password;
public bool bool_cb_cont = false;
- public LoginForm(Form callingForm, bool val)
+ public LoginForm(Form callingForm, bool val, string value)
{
InitializeComponent();
if (callingForm != null)
@@ -33,8 +33,17 @@ namespace AVS
}
mainForm = callingForm as MainForm;
soundplayerNew = mainForm.soundPlayer;
- lbl_wrong.Visible = true;
- lbl_login.Visible = false;
+ if (value != null)
+ {
+ lbl_wrong.Visible = true;
+ lbl_login.Visible = false;
+ lbl_wrong.Text = "Wrong Weight";
+ }
+ else
+ {
+ lbl_wrong.Visible = true;
+ lbl_login.Visible = false;
+ }
}
diff --git a/MainForm.Designer.cs b/MainForm.Designer.cs
index 60e2cb3..1e28010 100644
--- a/MainForm.Designer.cs
+++ b/MainForm.Designer.cs
@@ -31,7 +31,6 @@ namespace AVS
///
private void InitializeComponent()
{
- this.components = new System.ComponentModel.Container();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
this.lbl_ScanDateTime = new System.Windows.Forms.Label();
@@ -39,7 +38,6 @@ namespace AVS
this.lblBarcode = new System.Windows.Forms.Label();
this.lbl_fnsku = new System.Windows.Forms.Label();
this.lbl_title = new System.Windows.Forms.Label();
- this.panel_blue = new System.Windows.Forms.Panel();
this.lbl_msg = new System.Windows.Forms.Label();
this.pb_blue = new System.Windows.Forms.PictureBox();
this.btn_post_data = new System.Windows.Forms.Button();
@@ -48,8 +46,6 @@ namespace AVS
this.txt_weight = new System.Windows.Forms.Label();
this.pb_red = new System.Windows.Forms.PictureBox();
this.btn_reset_port = new System.Windows.Forms.Button();
- this.timer_weighing = new System.Windows.Forms.Timer(this.components);
- this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.dataGridView = new System.Windows.Forms.DataGridView();
this.txt_sku = new MaterialSkin.Controls.MaterialSingleLineTextField();
this.lb_sysIp = new System.Windows.Forms.Label();
@@ -62,28 +58,29 @@ namespace AVS
this.btn_update = new System.Windows.Forms.Button();
this.lbl_ship_from = new System.Windows.Forms.Label();
this.lbl_ship_to = new System.Windows.Forms.Label();
- this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.btn_close = new System.Windows.Forms.Button();
this.btn_logout = new System.Windows.Forms.Button();
this.btn_minimize = new System.Windows.Forms.Button();
this.lbl_username = new System.Windows.Forms.Label();
this.panel1 = new System.Windows.Forms.Panel();
+ this.lbl_ver = new System.Windows.Forms.Label();
this.lbl_market_place = new System.Windows.Forms.Label();
this.lbl_error = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
- this.btn_delete = new System.Windows.Forms.Button();
this.lbl_marketplace = new System.Windows.Forms.Label();
this.cb_marketplace = new System.Windows.Forms.ComboBox();
this.txt_search = new MaterialSkin.Controls.MaterialSingleLineTextField();
- this.txt_seal_no = new MaterialSkin.Controls.MaterialSingleLineTextField();
+ this.btn_delete = new System.Windows.Forms.Button();
this.lbl_boxCount = new System.Windows.Forms.Label();
- this.txt_vehicle_no = new MaterialSkin.Controls.MaterialSingleLineTextField();
this.lbl_item_box = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.lbl_counter = new System.Windows.Forms.Label();
this.panel3 = new System.Windows.Forms.Panel();
+ 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();
+ this.btn_refresh = new System.Windows.Forms.Button();
this.userTextBox = new System.Windows.Forms.Label();
- this.lbl_ver = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.pb_blue)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pb_red)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
@@ -109,19 +106,23 @@ namespace AVS
//
// txt_barcode
//
- this.txt_barcode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.txt_barcode.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.txt_barcode.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.txt_barcode.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.txt_barcode.Location = new System.Drawing.Point(106, 30);
this.txt_barcode.MaxLength = 10;
this.txt_barcode.Name = "txt_barcode";
- this.txt_barcode.Size = new System.Drawing.Size(295, 24);
+ this.txt_barcode.Size = new System.Drawing.Size(297, 24);
this.txt_barcode.TabIndex = 16;
this.txt_barcode.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txt_barcode_KeyPress);
//
// lblBarcode
//
- this.lblBarcode.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.lblBarcode.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.lblBarcode.AutoSize = true;
this.lblBarcode.BackColor = System.Drawing.Color.Transparent;
this.lblBarcode.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
@@ -139,7 +140,7 @@ namespace AVS
this.lbl_fnsku.BackColor = System.Drawing.Color.Transparent;
this.lbl_fnsku.Font = new System.Drawing.Font("Arial Narrow", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point);
this.lbl_fnsku.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lbl_fnsku.Location = new System.Drawing.Point(407, 33);
+ this.lbl_fnsku.Location = new System.Drawing.Point(421, 32);
this.lbl_fnsku.Name = "lbl_fnsku";
this.lbl_fnsku.Size = new System.Drawing.Size(0, 20);
this.lbl_fnsku.TabIndex = 18;
@@ -160,21 +161,13 @@ namespace AVS
this.lbl_title.Text = "Article Verification System";
this.lbl_title.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
- // panel_blue
- //
- this.panel_blue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.panel_blue.AutoSize = true;
- this.panel_blue.BackColor = System.Drawing.SystemColors.Highlight;
- this.panel_blue.Location = new System.Drawing.Point(2, 843);
- this.panel_blue.Name = "panel_blue";
- this.panel_blue.Size = new System.Drawing.Size(1240, 12);
- this.panel_blue.TabIndex = 21;
- //
// lbl_msg
//
+ this.lbl_msg.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.lbl_msg.AutoSize = true;
- this.lbl_msg.Location = new System.Drawing.Point(16, 827);
+ this.lbl_msg.Location = new System.Drawing.Point(9, 252);
this.lbl_msg.Name = "lbl_msg";
this.lbl_msg.Size = new System.Drawing.Size(11, 13);
this.lbl_msg.TabIndex = 56;
@@ -182,14 +175,11 @@ namespace AVS
//
// pb_blue
//
- this.pb_blue.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
this.pb_blue.BackgroundImage = global::AVS.Resource.blue;
this.pb_blue.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.pb_blue.Location = new System.Drawing.Point(1175, 776);
+ this.pb_blue.Location = new System.Drawing.Point(1156, 159);
this.pb_blue.Name = "pb_blue";
- this.pb_blue.Size = new System.Drawing.Size(56, 50);
+ this.pb_blue.Size = new System.Drawing.Size(57, 54);
this.pb_blue.TabIndex = 23;
this.pb_blue.TabStop = false;
this.pb_blue.Visible = false;
@@ -199,9 +189,10 @@ namespace AVS
this.btn_post_data.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
- this.btn_post_data.Location = new System.Drawing.Point(924, 775);
+ this.btn_post_data.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.btn_post_data.Location = new System.Drawing.Point(1057, 166);
this.btn_post_data.Name = "btn_post_data";
- this.btn_post_data.Size = new System.Drawing.Size(126, 50);
+ this.btn_post_data.Size = new System.Drawing.Size(93, 47);
this.btn_post_data.TabIndex = 53;
this.btn_post_data.Text = "POST DATA";
this.btn_post_data.UseVisualStyleBackColor = true;
@@ -209,13 +200,15 @@ namespace AVS
//
// lbl_weight
//
- this.lbl_weight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.lbl_weight.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.lbl_weight.AutoSize = true;
- this.lbl_weight.BackColor = System.Drawing.SystemColors.Highlight;
+ this.lbl_weight.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.lbl_weight.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lbl_weight.Font = new System.Drawing.Font("Calibri", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
- this.lbl_weight.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.lbl_weight.Location = new System.Drawing.Point(12, 778);
+ this.lbl_weight.ForeColor = System.Drawing.SystemColors.ControlText;
+ this.lbl_weight.Location = new System.Drawing.Point(13, 177);
this.lbl_weight.Name = "lbl_weight";
this.lbl_weight.Size = new System.Drawing.Size(207, 47);
this.lbl_weight.TabIndex = 25;
@@ -227,11 +220,11 @@ namespace AVS
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lbl_hold_weight.AutoSize = true;
- this.lbl_hold_weight.BackColor = System.Drawing.SystemColors.Highlight;
+ this.lbl_hold_weight.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.lbl_hold_weight.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
- this.lbl_hold_weight.Font = new System.Drawing.Font("Calibri", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
- this.lbl_hold_weight.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.lbl_hold_weight.Location = new System.Drawing.Point(806, 778);
+ this.lbl_hold_weight.Font = new System.Drawing.Font("Calibri", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
+ this.lbl_hold_weight.ForeColor = System.Drawing.SystemColors.ControlText;
+ this.lbl_hold_weight.Location = new System.Drawing.Point(421, 177);
this.lbl_hold_weight.Name = "lbl_hold_weight";
this.lbl_hold_weight.Size = new System.Drawing.Size(41, 47);
this.lbl_hold_weight.TabIndex = 47;
@@ -239,13 +232,15 @@ namespace AVS
//
// txt_weight
//
- this.txt_weight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.txt_weight.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.txt_weight.AutoSize = true;
- this.txt_weight.BackColor = System.Drawing.SystemColors.Highlight;
+ this.txt_weight.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.txt_weight.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
- this.txt_weight.Font = new System.Drawing.Font("Calibri", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
- this.txt_weight.ForeColor = System.Drawing.SystemColors.ControlLightLight;
- this.txt_weight.Location = new System.Drawing.Point(225, 778);
+ this.txt_weight.Font = new System.Drawing.Font("Calibri", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
+ this.txt_weight.ForeColor = System.Drawing.SystemColors.ControlText;
+ this.txt_weight.Location = new System.Drawing.Point(222, 177);
this.txt_weight.Name = "txt_weight";
this.txt_weight.Size = new System.Drawing.Size(41, 47);
this.txt_weight.TabIndex = 26;
@@ -253,38 +248,41 @@ namespace AVS
//
// pb_red
//
- this.pb_red.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+ this.pb_red.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.pb_red.BackgroundImage = global::AVS.Resource.red;
this.pb_red.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
- this.pb_red.Location = new System.Drawing.Point(1174, 776);
+ this.pb_red.Location = new System.Drawing.Point(1156, 159);
this.pb_red.Name = "pb_red";
- this.pb_red.Size = new System.Drawing.Size(56, 50);
+ this.pb_red.Size = new System.Drawing.Size(57, 54);
this.pb_red.TabIndex = 22;
this.pb_red.TabStop = false;
//
// btn_reset_port
//
- this.btn_reset_port.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+ this.btn_reset_port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.btn_reset_port.AutoSize = true;
+ this.btn_reset_port.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.btn_reset_port.BackColor = System.Drawing.Color.DarkGreen;
this.btn_reset_port.FlatAppearance.BorderSize = 0;
this.btn_reset_port.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btn_reset_port.ForeColor = System.Drawing.Color.White;
- this.btn_reset_port.Location = new System.Drawing.Point(1044, 220);
+ this.btn_reset_port.Location = new System.Drawing.Point(302, 358);
this.btn_reset_port.Name = "btn_reset_port";
- this.btn_reset_port.Size = new System.Drawing.Size(170, 23);
+ this.btn_reset_port.Size = new System.Drawing.Size(96, 23);
this.btn_reset_port.TabIndex = 57;
this.btn_reset_port.Text = "RESET PORT";
this.btn_reset_port.UseVisualStyleBackColor = false;
this.btn_reset_port.Visible = false;
this.btn_reset_port.Click += new System.EventHandler(this.btn_reset_port_Click);
//
- // openFileDialog1
- //
- this.openFileDialog1.FileName = "openFileDialog1";
- //
// dataGridView
//
- this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
+ this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dataGridView.BackgroundColor = System.Drawing.Color.White;
this.dataGridView.BorderStyle = System.Windows.Forms.BorderStyle.None;
@@ -305,20 +303,22 @@ namespace AVS
dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.dataGridView.DefaultCellStyle = dataGridViewCellStyle2;
- this.dataGridView.Location = new System.Drawing.Point(11, 77);
+ this.dataGridView.Location = new System.Drawing.Point(3, 77);
this.dataGridView.Name = "dataGridView";
this.dataGridView.ReadOnly = true;
- this.dataGridView.Size = new System.Drawing.Size(771, 312);
+ this.dataGridView.Size = new System.Drawing.Size(803, 303);
this.dataGridView.TabIndex = 29;
this.dataGridView.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_CellClick);
//
// txt_sku
//
- this.txt_sku.Anchor = System.Windows.Forms.AnchorStyles.Left;
+ this.txt_sku.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.txt_sku.BackColor = System.Drawing.Color.White;
this.txt_sku.Depth = 0;
this.txt_sku.Hint = "Type SKU";
- this.txt_sku.Location = new System.Drawing.Point(11, 22);
+ this.txt_sku.Location = new System.Drawing.Point(11, 17);
this.txt_sku.MouseState = MaterialSkin.MouseState.HOVER;
this.txt_sku.Name = "txt_sku";
this.txt_sku.PasswordChar = '\0';
@@ -332,12 +332,14 @@ namespace AVS
//
// lb_sysIp
//
- this.lb_sysIp.Anchor = System.Windows.Forms.AnchorStyles.Right;
+ this.lb_sysIp.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.lb_sysIp.AutoSize = true;
this.lb_sysIp.BackColor = System.Drawing.Color.Transparent;
this.lb_sysIp.Font = new System.Drawing.Font("Algerian", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.lb_sysIp.ForeColor = System.Drawing.Color.WhiteSmoke;
- this.lb_sysIp.Location = new System.Drawing.Point(955, 3);
+ this.lb_sysIp.Location = new System.Drawing.Point(955, 5);
this.lb_sysIp.Name = "lb_sysIp";
this.lb_sysIp.Size = new System.Drawing.Size(27, 21);
this.lb_sysIp.TabIndex = 31;
@@ -362,12 +364,14 @@ namespace AVS
//
// lbl_netWeight
//
- this.lbl_netWeight.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.lbl_netWeight.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.lbl_netWeight.AutoSize = true;
this.lbl_netWeight.BackColor = System.Drawing.Color.Silver;
this.lbl_netWeight.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.lbl_netWeight.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lbl_netWeight.Location = new System.Drawing.Point(23, 712);
+ this.lbl_netWeight.Location = new System.Drawing.Point(11, 143);
this.lbl_netWeight.Name = "lbl_netWeight";
this.lbl_netWeight.Size = new System.Drawing.Size(118, 22);
this.lbl_netWeight.TabIndex = 11;
@@ -375,12 +379,14 @@ namespace AVS
//
// lbl_color
//
- this.lbl_color.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.lbl_color.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.lbl_color.AutoSize = true;
this.lbl_color.BackColor = System.Drawing.Color.Silver;
this.lbl_color.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.lbl_color.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lbl_color.Location = new System.Drawing.Point(23, 646);
+ this.lbl_color.Location = new System.Drawing.Point(11, 99);
this.lbl_color.Name = "lbl_color";
this.lbl_color.Size = new System.Drawing.Size(73, 22);
this.lbl_color.TabIndex = 36;
@@ -388,24 +394,29 @@ namespace AVS
//
// lbl_detail
//
- this.lbl_detail.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.lbl_detail.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.lbl_detail.AutoSize = true;
this.lbl_detail.BackColor = System.Drawing.Color.Silver;
this.lbl_detail.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.lbl_detail.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lbl_detail.Location = new System.Drawing.Point(23, 602);
+ this.lbl_detail.Location = new System.Drawing.Point(9, 77);
this.lbl_detail.Name = "lbl_detail";
- this.lbl_detail.Size = new System.Drawing.Size(1204, 22);
+ this.lbl_detail.Size = new System.Drawing.Size(62, 22);
this.lbl_detail.TabIndex = 12;
this.lbl_detail.Text = "Title :";
//
// lbl_sku
//
- this.lbl_sku.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.lbl_sku.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.lbl_sku.AutoSize = true;
this.lbl_sku.BackColor = System.Drawing.Color.Silver;
this.lbl_sku.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.lbl_sku.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lbl_sku.Location = new System.Drawing.Point(23, 624);
+ this.lbl_sku.Location = new System.Drawing.Point(11, 55);
this.lbl_sku.Name = "lbl_sku";
this.lbl_sku.Size = new System.Drawing.Size(58, 22);
this.lbl_sku.TabIndex = 13;
@@ -413,12 +424,14 @@ namespace AVS
//
// lbl_size
//
- this.lbl_size.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.lbl_size.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.lbl_size.AutoSize = true;
this.lbl_size.BackColor = System.Drawing.Color.Silver;
this.lbl_size.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.lbl_size.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lbl_size.Location = new System.Drawing.Point(23, 668);
+ this.lbl_size.Location = new System.Drawing.Point(12, 121);
this.lbl_size.Name = "lbl_size";
this.lbl_size.Size = new System.Drawing.Size(61, 22);
this.lbl_size.TabIndex = 37;
@@ -446,7 +459,7 @@ namespace AVS
this.lbl_ship_from.BackColor = System.Drawing.Color.Silver;
this.lbl_ship_from.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.lbl_ship_from.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lbl_ship_from.Location = new System.Drawing.Point(10, 439);
+ this.lbl_ship_from.Location = new System.Drawing.Point(10, 550);
this.lbl_ship_from.Name = "lbl_ship_from";
this.lbl_ship_from.Size = new System.Drawing.Size(0, 22);
this.lbl_ship_from.TabIndex = 41;
@@ -459,18 +472,12 @@ namespace AVS
this.lbl_ship_to.BackColor = System.Drawing.Color.Silver;
this.lbl_ship_to.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.lbl_ship_to.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lbl_ship_to.Location = new System.Drawing.Point(23, 690);
+ this.lbl_ship_to.Location = new System.Drawing.Point(23, 647);
this.lbl_ship_to.Name = "lbl_ship_to";
this.lbl_ship_to.Size = new System.Drawing.Size(0, 22);
this.lbl_ship_to.TabIndex = 42;
this.lbl_ship_to.Visible = false;
//
- // imageList1
- //
- this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
- this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
- this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
- //
// btn_close
//
this.btn_close.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
@@ -531,7 +538,9 @@ namespace AVS
//
// lbl_username
//
- this.lbl_username.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.lbl_username.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.lbl_username.AutoSize = true;
this.lbl_username.BackColor = System.Drawing.Color.Transparent;
this.lbl_username.Font = new System.Drawing.Font("Algerian", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
@@ -548,26 +557,51 @@ namespace AVS
this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
+ this.panel1.AutoScroll = true;
this.panel1.BackColor = System.Drawing.Color.Silver;
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel1.Controls.Add(this.btn_reset_port);
+ this.panel1.Controls.Add(this.lbl_msg);
+ this.panel1.Controls.Add(this.lbl_ver);
this.panel1.Controls.Add(this.lbl_market_place);
+ this.panel1.Controls.Add(this.txt_weight);
+ this.panel1.Controls.Add(this.lbl_weight);
+ this.panel1.Controls.Add(this.pb_blue);
this.panel1.Controls.Add(this.lbl_error);
+ this.panel1.Controls.Add(this.lbl_hold_weight);
+ this.panel1.Controls.Add(this.pb_red);
+ this.panel1.Controls.Add(this.btn_post_data);
this.panel1.Controls.Add(this.lbl_fnsku);
this.panel1.Controls.Add(this.lbl_ship_from);
this.panel1.Controls.Add(this.lblBarcode);
this.panel1.Controls.Add(this.txt_barcode);
this.panel1.Controls.Add(this.lbl_ScanDateTime);
- this.panel1.Location = new System.Drawing.Point(12, 518);
+ this.panel1.Controls.Add(this.lbl_netWeight);
+ this.panel1.Controls.Add(this.lbl_detail);
+ this.panel1.Controls.Add(this.lbl_sku);
+ this.panel1.Controls.Add(this.lbl_color);
+ this.panel1.Controls.Add(this.lbl_size);
+ this.panel1.Location = new System.Drawing.Point(9, 462);
this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1219, 248);
+ this.panel1.Size = new System.Drawing.Size(1218, 276);
this.panel1.TabIndex = 50;
this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
//
+ // lbl_ver
+ //
+ this.lbl_ver.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.lbl_ver.AutoSize = true;
+ this.lbl_ver.Location = new System.Drawing.Point(1114, 252);
+ this.lbl_ver.Name = "lbl_ver";
+ this.lbl_ver.Size = new System.Drawing.Size(53, 13);
+ this.lbl_ver.TabIndex = 57;
+ this.lbl_ver.Text = "Version-";
+ //
// lbl_market_place
//
this.lbl_market_place.AutoSize = true;
- this.lbl_market_place.Location = new System.Drawing.Point(507, 55);
+ this.lbl_market_place.Location = new System.Drawing.Point(587, 41);
this.lbl_market_place.Name = "lbl_market_place";
this.lbl_market_place.Size = new System.Drawing.Size(11, 13);
this.lbl_market_place.TabIndex = 43;
@@ -580,7 +614,7 @@ namespace AVS
this.lbl_error.BackColor = System.Drawing.Color.White;
this.lbl_error.Font = new System.Drawing.Font("Arial Narrow", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.lbl_error.ForeColor = System.Drawing.Color.Red;
- this.lbl_error.Location = new System.Drawing.Point(761, 430);
+ this.lbl_error.Location = new System.Drawing.Point(761, 541);
this.lbl_error.Name = "lbl_error";
this.lbl_error.Size = new System.Drawing.Size(73, 33);
this.lbl_error.TabIndex = 42;
@@ -592,9 +626,9 @@ namespace AVS
this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
+ this.panel2.AutoScroll = true;
this.panel2.BackColor = System.Drawing.Color.Silver;
this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel2.Controls.Add(this.btn_delete);
this.panel2.Controls.Add(this.lbl_marketplace);
this.panel2.Controls.Add(this.cb_marketplace);
this.panel2.Controls.Add(this.txt_search);
@@ -604,20 +638,10 @@ namespace AVS
this.panel2.Controls.Add(this.btn_upload);
this.panel2.Location = new System.Drawing.Point(12, 71);
this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(812, 432);
+ this.panel2.Size = new System.Drawing.Size(812, 385);
this.panel2.TabIndex = 51;
this.panel2.Paint += new System.Windows.Forms.PaintEventHandler(this.panel2_Paint);
//
- // btn_delete
- //
- this.btn_delete.Location = new System.Drawing.Point(733, 402);
- this.btn_delete.Name = "btn_delete";
- this.btn_delete.Size = new System.Drawing.Size(75, 23);
- this.btn_delete.TabIndex = 50;
- this.btn_delete.Text = "Delete";
- this.btn_delete.UseVisualStyleBackColor = true;
- this.btn_delete.Click += new System.EventHandler(this.btn_delete_Click);
- //
// lbl_marketplace
//
this.lbl_marketplace.AutoSize = true;
@@ -629,6 +653,9 @@ namespace AVS
//
// cb_marketplace
//
+ this.cb_marketplace.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.cb_marketplace.FormattingEnabled = true;
this.cb_marketplace.Location = new System.Drawing.Point(622, 24);
this.cb_marketplace.Name = "cb_marketplace";
@@ -637,6 +664,9 @@ namespace AVS
//
// txt_search
//
+ this.txt_search.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.txt_search.BackColor = System.Drawing.Color.White;
this.txt_search.Depth = 0;
this.txt_search.Hint = "Search here";
@@ -652,21 +682,20 @@ namespace AVS
this.txt_search.UseSystemPasswordChar = false;
this.txt_search.TextChanged += new System.EventHandler(this.txt_search_TextChanged);
//
- // txt_seal_no
+ // btn_delete
//
- this.txt_seal_no.Depth = 0;
- this.txt_seal_no.Hint = "SEAL NO";
- this.txt_seal_no.Location = new System.Drawing.Point(8, 372);
- this.txt_seal_no.MouseState = MaterialSkin.MouseState.HOVER;
- this.txt_seal_no.Name = "txt_seal_no";
- this.txt_seal_no.PasswordChar = '\0';
- this.txt_seal_no.SelectedText = "";
- this.txt_seal_no.SelectionLength = 0;
- this.txt_seal_no.SelectionStart = 0;
- this.txt_seal_no.Size = new System.Drawing.Size(163, 23);
- this.txt_seal_no.TabIndex = 48;
- this.txt_seal_no.UseSystemPasswordChar = false;
- this.txt_seal_no.Visible = false;
+ this.btn_delete.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.btn_delete.AutoSize = true;
+ this.btn_delete.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.btn_delete.Location = new System.Drawing.Point(3, 359);
+ this.btn_delete.Name = "btn_delete";
+ this.btn_delete.Size = new System.Drawing.Size(54, 23);
+ this.btn_delete.TabIndex = 50;
+ this.btn_delete.Text = "Delete";
+ this.btn_delete.UseVisualStyleBackColor = true;
+ this.btn_delete.Click += new System.EventHandler(this.btn_delete_Click);
//
// lbl_boxCount
//
@@ -681,22 +710,6 @@ namespace AVS
this.lbl_boxCount.TabIndex = 28;
this.lbl_boxCount.Text = "Box count : 0";
//
- // txt_vehicle_no
- //
- this.txt_vehicle_no.Depth = 0;
- this.txt_vehicle_no.Hint = "VEHICLE NO";
- this.txt_vehicle_no.Location = new System.Drawing.Point(8, 343);
- this.txt_vehicle_no.MouseState = MaterialSkin.MouseState.HOVER;
- this.txt_vehicle_no.Name = "txt_vehicle_no";
- this.txt_vehicle_no.PasswordChar = '\0';
- this.txt_vehicle_no.SelectedText = "";
- this.txt_vehicle_no.SelectionLength = 0;
- this.txt_vehicle_no.SelectionStart = 0;
- this.txt_vehicle_no.Size = new System.Drawing.Size(163, 23);
- this.txt_vehicle_no.TabIndex = 49;
- this.txt_vehicle_no.UseSystemPasswordChar = false;
- this.txt_vehicle_no.Visible = false;
- //
// lbl_item_box
//
this.lbl_item_box.AutoSize = true;
@@ -717,7 +730,7 @@ namespace AVS
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.Font = new System.Drawing.Font("Arial Narrow", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point);
this.label1.ForeColor = System.Drawing.SystemColors.ControlText;
- this.label1.Location = new System.Drawing.Point(416, 614);
+ this.label1.Location = new System.Drawing.Point(416, 678);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(0, 20);
this.label1.TabIndex = 18;
@@ -742,71 +755,92 @@ namespace AVS
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.panel3.BackColor = System.Drawing.Color.Silver;
- this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.panel3.Controls.Add(this.btn_delete);
+ this.panel3.Controls.Add(this.btn_save_tol);
+ this.panel3.Controls.Add(this.btn_reset_port);
+ this.panel3.Controls.Add(this.lbl_weightTolerance);
+ this.panel3.Controls.Add(this.txt_weight_tol);
+ this.panel3.Controls.Add(this.btn_refresh);
this.panel3.Controls.Add(this.lbl_counter);
this.panel3.Controls.Add(this.lbl_item_box);
this.panel3.Controls.Add(this.lbl_boxCount);
this.panel3.Controls.Add(this.label1);
- this.panel3.Controls.Add(this.txt_vehicle_no);
- this.panel3.Controls.Add(this.txt_seal_no);
- this.panel3.Location = new System.Drawing.Point(836, 71);
+ this.panel3.Location = new System.Drawing.Point(825, 71);
this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(391, 432);
+ this.panel3.Size = new System.Drawing.Size(402, 385);
this.panel3.TabIndex = 52;
this.panel3.Paint += new System.Windows.Forms.PaintEventHandler(this.panel3_Paint);
//
+ // btn_save_tol
+ //
+ this.btn_save_tol.Location = new System.Drawing.Point(251, 128);
+ this.btn_save_tol.Name = "btn_save_tol";
+ this.btn_save_tol.Size = new System.Drawing.Size(75, 23);
+ this.btn_save_tol.TabIndex = 53;
+ this.btn_save_tol.Text = "Save";
+ this.btn_save_tol.UseVisualStyleBackColor = true;
+ this.btn_save_tol.Click += new System.EventHandler(this.btn_save_tol_Click);
+ //
+ // lbl_weightTolerance
+ //
+ this.lbl_weightTolerance.AutoSize = true;
+ this.lbl_weightTolerance.Location = new System.Drawing.Point(35, 134);
+ this.lbl_weightTolerance.Name = "lbl_weightTolerance";
+ this.lbl_weightTolerance.Size = new System.Drawing.Size(108, 13);
+ this.lbl_weightTolerance.TabIndex = 52;
+ this.lbl_weightTolerance.Text = "Weight Tolerance";
+ //
+ // txt_weight_tol
+ //
+ this.txt_weight_tol.Location = new System.Drawing.Point(148, 130);
+ this.txt_weight_tol.Name = "txt_weight_tol";
+ this.txt_weight_tol.Size = new System.Drawing.Size(100, 20);
+ this.txt_weight_tol.TabIndex = 51;
+ this.txt_weight_tol.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txt_weight_tol_KeyPress);
+ //
+ // btn_refresh
+ //
+ this.btn_refresh.BackColor = System.Drawing.Color.DarkGreen;
+ this.btn_refresh.FlatAppearance.BorderSize = 0;
+ this.btn_refresh.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btn_refresh.ForeColor = System.Drawing.Color.White;
+ this.btn_refresh.Location = new System.Drawing.Point(312, 101);
+ this.btn_refresh.Name = "btn_refresh";
+ this.btn_refresh.Size = new System.Drawing.Size(75, 23);
+ this.btn_refresh.TabIndex = 50;
+ this.btn_refresh.Text = "Refresh";
+ this.btn_refresh.UseVisualStyleBackColor = false;
+ this.btn_refresh.Click += new System.EventHandler(this.btn_refresh_Click);
+ //
// userTextBox
//
- this.userTextBox.Anchor = System.Windows.Forms.AnchorStyles.Right;
+ this.userTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
this.userTextBox.AutoSize = true;
this.userTextBox.BackColor = System.Drawing.Color.Transparent;
this.userTextBox.Font = new System.Drawing.Font("Algerian", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.userTextBox.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
- this.userTextBox.Location = new System.Drawing.Point(957, 33);
+ this.userTextBox.Location = new System.Drawing.Point(957, 35);
this.userTextBox.Name = "userTextBox";
this.userTextBox.Size = new System.Drawing.Size(16, 21);
this.userTextBox.TabIndex = 54;
this.userTextBox.Text = "-";
//
- // lbl_ver
- //
- this.lbl_ver.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.lbl_ver.AutoSize = true;
- this.lbl_ver.Location = new System.Drawing.Point(1151, 829);
- this.lbl_ver.Name = "lbl_ver";
- this.lbl_ver.Size = new System.Drawing.Size(53, 13);
- this.lbl_ver.TabIndex = 57;
- this.lbl_ver.Text = "Version-";
- //
// MainForm
//
- this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1243, 856);
- this.Controls.Add(this.lbl_ver);
- this.Controls.Add(this.lbl_msg);
- this.Controls.Add(this.pb_blue);
- this.Controls.Add(this.pb_red);
- this.Controls.Add(this.lbl_weight);
- this.Controls.Add(this.txt_weight);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
+ this.AutoScroll = true;
+ this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.ClientSize = new System.Drawing.Size(1243, 750);
this.Controls.Add(this.userTextBox);
- this.Controls.Add(this.btn_post_data);
this.Controls.Add(this.lb_sysIp);
this.Controls.Add(this.lbl_username);
this.Controls.Add(this.btn_minimize);
- this.Controls.Add(this.lbl_hold_weight);
this.Controls.Add(this.btn_logout);
this.Controls.Add(this.btn_close);
- this.Controls.Add(this.panel_blue);
this.Controls.Add(this.lbl_title);
- this.Controls.Add(this.lbl_color);
- this.Controls.Add(this.lbl_detail);
- this.Controls.Add(this.lbl_size);
this.Controls.Add(this.lbl_ship_to);
- this.Controls.Add(this.lbl_netWeight);
- this.Controls.Add(this.lbl_sku);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Controls.Add(this.panel3);
@@ -835,11 +869,8 @@ namespace AVS
private System.Windows.Forms.Label lblBarcode;
private System.Windows.Forms.Label lbl_fnsku;
private System.Windows.Forms.Label lbl_title;
- private System.Windows.Forms.Panel panel_blue;
private System.Windows.Forms.PictureBox pb_red;
private System.Windows.Forms.PictureBox pb_blue;
- private System.Windows.Forms.Timer timer_weighing;
- private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.DataGridView dataGridView;
private MaterialSkin.Controls.MaterialSingleLineTextField txt_sku;
private System.Windows.Forms.Label lb_sysIp;
@@ -854,7 +885,6 @@ namespace AVS
private System.Windows.Forms.Button btn_update;
private System.Windows.Forms.Label lbl_ship_from;
private System.Windows.Forms.Label lbl_ship_to;
- private System.Windows.Forms.ImageList imageList1;
private System.Windows.Forms.Button btn_close;
private System.Windows.Forms.Button btn_logout;
private System.Windows.Forms.Button btn_minimize;
@@ -863,9 +893,7 @@ namespace AVS
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Panel panel2;
private MaterialSkin.Controls.MaterialSingleLineTextField txt_search;
- private MaterialSkin.Controls.MaterialSingleLineTextField txt_seal_no;
private System.Windows.Forms.Label lbl_boxCount;
- private MaterialSkin.Controls.MaterialSingleLineTextField txt_vehicle_no;
private System.Windows.Forms.Label lbl_item_box;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label lbl_counter;
@@ -880,6 +908,10 @@ namespace AVS
private System.Windows.Forms.Label lbl_market_place;
private System.Windows.Forms.Button btn_reset_port;
private System.Windows.Forms.Label lbl_ver;
+ private System.Windows.Forms.Button btn_refresh;
+ private System.Windows.Forms.Button btn_save_tol;
+ private System.Windows.Forms.Label lbl_weightTolerance;
+ private System.Windows.Forms.TextBox txt_weight_tol;
}
}
diff --git a/MainForm.cs b/MainForm.cs
index f8e9b32..8da4e11 100644
--- a/MainForm.cs
+++ b/MainForm.cs
@@ -118,6 +118,7 @@ namespace AVS
private System.Threading.Timer _timer;
+ WeightTolerance WeightTolerance = new WeightTolerance();
//[STAThread]
public SoundPlayer soundPlayer = new SoundPlayer();
@@ -201,6 +202,7 @@ namespace AVS
}
+
private void txt_barcode_KeyPress(object sender, KeyPressEventArgs e)
{
@@ -244,7 +246,7 @@ namespace AVS
}
- //FOR CARTON ----------------------------------------------
+ //FOR ONLY CARTON ----------------------------------------------
if (global_cb_carton == true)
{
@@ -265,11 +267,11 @@ namespace AVS
part2 = barcodeParts[1]; // "241106052682"
// You can use these parts as needed. For example:
- _ = VerifyBarcodeEndpoint(part1, "CONT", "", cb_marketplace.Text);
+ _ = VerifyBarcodeCarton(part1, "CONT", "", cb_marketplace.Text);
}
else
{
- //_ = VerifyBarcodeEndpoint(barcode, "CONT", "");
+
MessageBox.Show("Incorrect model no");
this.Enabled = true;
return;
@@ -277,6 +279,7 @@ namespace AVS
}
+ //FOR UINT AND CARTON
else
{
@@ -293,9 +296,55 @@ namespace AVS
else
{
- //_ = VerifyBarcodeEndpoint(txt_barcode.Text.Trim(), "FNSKU", "");
- VerifyBarcodeOffline(txt_barcode.Text.Trim());
+ if (userTextBox.Text.Contains("SITE05") || userTextBox.Text.Contains("SITE06"))
+ {
+ // Check for weight tolerance (+-5 %)
+ double lowerLimit = 0;
+ double upperLimit = 0;
+ if (double.TryParse(txt_weight_tol.Text, out double tolWeight) &&
+ double.TryParse(lbl_hold_weight.Text, out double actualWeight))
+ {
+ //For pillow Site05 (+-3 %)
+
+ if (userTextBox.Text.Contains("SITE05"))
+ {
+ lowerLimit = tolWeight * 0.97;
+ upperLimit = tolWeight * 1.03;
+ }
+ else
+ {
+ lowerLimit = tolWeight * 0.95;
+ upperLimit = tolWeight * 1.05;
+
+ }
+
+ if (actualWeight < lowerLimit || actualWeight > upperLimit)
+ {
+ PlayAlertSound();
+ OpenLoginForm(false, "Weight Tolerance");
+ txt_barcode.Text = "";
+ this.Enabled = true;
+
+ }
+ else
+ {
+ VerifyBarcodeOffline(txt_barcode.Text.Trim());
+ }
+ }
+ else
+ {
+ // Optional: handle invalid input
+ MessageBox.Show("Invalid weight tolerance.");
+ this.Enabled = true;
+ }
+ }
+
+ //For Site02 without tolerance
+ else
+ {
+ VerifyBarcodeOffline(txt_barcode.Text.Trim());
+ }
}
}
else
@@ -389,7 +438,7 @@ namespace AVS
InsertDailyLog(barcode, true, false);
PlayAlertSound();
- OpenLoginForm(false);
+ OpenLoginForm(false,null);
txt_barcode.Text = "";
@@ -499,7 +548,7 @@ namespace AVS
// You can access response.StatusCode and response.ReasonPhrase for details
}
}
- public async Task VerifyBarcodeEndpoint(string barcode, string type, string command, string marketPlace)
+ public async Task VerifyBarcodeCarton(string barcode, string type, string command, string marketPlace)
{
try
{
@@ -537,35 +586,7 @@ namespace AVS
}
}
- else
- {
- lbl_error.Visible = false;
- using (HttpClient client = new HttpClient())
- {
- client.Timeout = TimeSpan.FromMinutes(5);
- string parameter = $"{barcode}&type={type}";
-
- var response = await client.GetAsync($"{SERVER_URL}{parameter}");
- string responseString = await response.Content.ReadAsStringAsync();
-
- if (responseString.Equals("Invalid FNSKU"))
- {
- HandleInvalidFNSKU(command);
- }
- else
- {
- //Thread.Sleep(800);
- HandleValidFNSKU(responseString, command);
- }
-
- txt_barcode.Text = "";
-
- this.Enabled = true;
- txt_barcode.Focus();
-
- }
- }
}
catch (Exception ex)
{
@@ -749,7 +770,7 @@ namespace AVS
else
{
PlayAlertSound();
- OpenLoginForm(false);
+ OpenLoginForm(false,null);
}
}
@@ -795,7 +816,7 @@ namespace AVS
if (liteDbClass.checkCarton(part1, part2) == true)
{
PlayAlertSound();
- OpenLoginForm(true);
+ OpenLoginForm(true,null);
}
else
@@ -912,11 +933,11 @@ namespace AVS
}
}
}
- private void OpenLoginForm(bool val)
+ private void OpenLoginForm(bool val,string value)
{
this.Hide(); // Hide the MainForm
- LoginForm = new LoginForm(this, val);
+ LoginForm = new LoginForm(this, val, value);
LoginForm.Show();
}
private void OpenCartonForm(int id)
@@ -952,33 +973,6 @@ namespace AVS
lbl_netWeight.Visible = true;
}
- //public string DetectComPort()
- //{
- // string comPortName = "COM1"; // Replace with the COM port you want to read from
- // int baudRate = 9600; // Set to match your device's baud rate
- // using (SerialPort serialPort = new SerialPort(comPortName, baudRate))
- // {
- // serialPort.Open();
- // serialPort.ReadTimeout = 5000;
- // while (true)
- // {
- // try
- // {
- // string data = serialPort.ReadLine();
- // Console.WriteLine("Received data: " + data);
- // pb_blue.Visible = true;
- // pb_red.Visible = false;
- // }
- // catch (TimeoutException)
- // {
- // pb_blue.Visible = false;
- // pb_red.Visible = true;
- // Console.WriteLine("No data received");
- // }
- // }
- // }
- //}
-
public void CartonControls()
{
lbl_counter.Visible = false;
@@ -1046,7 +1040,7 @@ namespace AVS
return false;
}
- public void checkAVSuser()
+ public void CheckAVSuser()
{
// Define the root directory and the file name
@@ -1063,6 +1057,20 @@ namespace AVS
// Display the site ID in the TextBox
userTextBox.Text = user;
+ if (userTextBox.Text.Contains("SITE05") || userTextBox.Text.Contains("SITE06"))
+ {
+ btn_save_tol.Visible = true;
+ lbl_weightTolerance.Visible = true;
+ txt_weight_tol.Visible = true;
+
+ }
+ else
+ {
+ btn_save_tol.Visible = false;
+ lbl_weightTolerance.Visible = false;
+ txt_weight_tol.Visible = false;
+ }
+
}
else
{
@@ -1097,7 +1105,7 @@ namespace AVS
//timer_weighing.Start();
//timer_weighing_Tick(null, null);
StartReading();
- checkAVSuser();
+ CheckAVSuser();
// fillMarketPlaces();
Softwareversion = Assembly.GetExecutingAssembly().GetName().Version.ToString();
lbl_ver.Text = "Version-" + Softwareversion;
@@ -1200,7 +1208,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();
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))
{
@@ -1213,7 +1221,7 @@ namespace AVS
}
- //_ = VerifyBarcodeEndpoint(log.SKU, "SKU", "forSKU");
+
}
Resetvalues();
}
@@ -1273,7 +1281,7 @@ namespace AVS
File.Delete(filePath);
this.Close();
- LoginForm form = new LoginForm(null, false);
+ LoginForm form = new LoginForm(null, false,null);
form.Show();
}
@@ -1519,7 +1527,7 @@ namespace AVS
}
// Run the update process in another thread
- _ = RunUpdateProcessAsync();
+ _ = Task.Delay(500).ContinueWith(async _ => await RunUpdateProcessAsync());
}
@@ -1562,7 +1570,6 @@ namespace AVS
}
private string GetCompatiblePort(string[] availablePorts)
{
- // Start by assuming no compatible port is found
string compatiblePort = null;
foreach (string portName in availablePorts)
@@ -1570,15 +1577,27 @@ namespace AVS
string portDescription = GetPortDescription(portName);
Debug.WriteLine($"Port: {portName}, Description: {portDescription}");
+ // Prioritize Prolific and CH340 first
if (portDescription.Contains("Prolific USB-to-Serial Comm Port") || portDescription.Contains("USB-SERIAL CH340"))
{
- compatiblePort = portName; // Store the found compatible port
- break; // Exit the loop once a compatible port is found
+ compatiblePort = portName;
+ break;
}
}
- // Update UI based on the result of the port search
- //UpdateUIForPortSelection(compatiblePort);
+ // If still no compatible port, check for COM1 as a fallback
+ if (compatiblePort == null)
+ {
+ foreach (string portName in availablePorts)
+ {
+ string portDescription = GetPortDescription(portName);
+ if (portDescription.Contains("Communications Port (COM1)"))
+ {
+ compatiblePort = portName;
+ break;
+ }
+ }
+ }
return compatiblePort;
}
@@ -1729,6 +1748,8 @@ 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
@@ -1952,7 +1973,105 @@ namespace AVS
}
}
+ private void btn_refresh_Click(object sender, EventArgs e)
+ {
+ //if (dataGridView.SelectedRows.Count == 0)
+ //{
+ // MessageBox.Show("Please select a row");
+ // return;
+ //}
+ var selectedRow = dataGridView.Rows[dataGridView.SelectedCells[0].RowIndex];
+ var marketPlace = selectedRow.Cells["MARKET_PLACE"].Value?.ToString();
+
+ if (string.IsNullOrWhiteSpace(marketPlace))
+ {
+ MessageBox.Show("Please select market place first.");
+ return;
+ }
+
+ SKULog.MARKET_PLACE = marketPlace;
+ lbl_market_place.Text = marketPlace;
+
+ txt_sku.Text = SKULog.SKU;
+
+ var cells = selectedRow.Cells;
+ SKULog.FNSKU = cells["FNSKU"].Value?.ToString();
+ SKULog.ModelNo = cells["ModelNo"].Value?.ToString();
+ SKULog.NetWeightKg = Convert.ToDouble(cells["NetWeightKg"].Value?.ToString());
+ SKULog.Size = cells["Size"].Value?.ToString();
+ SKULog.Colour = cells["Colour"].Value?.ToString();
+ SKULog.Title = cells["Title"].Value?.ToString();
+
+ if (Int16.TryParse(cells["itemsPerBox"].Value?.ToString(), out Int16 itemPerBox))
+ {
+ SKULog.ItemsPerBox = itemPerBox;
+ lbl_item_box.Text = $"Item per box: {itemPerBox}";
+
+ var itemCount = liteDbClass.FillCounts(SKULog.FNSKU, marketPlace);
+ lbl_counter.Text = $"Item count : {itemCount}";
+
+ if (Int16.TryParse(itemCount.ToString(), out Int16 countt))
+ {
+ var boxCount = countt / itemPerBox;
+ lbl_boxCount.Text = $"Box count : {boxCount}";
+ count = countt;
+ boxcount = boxCount;
+ }
+ }
+ }
+
+ private void btn_save_tol_Click(object sender, EventArgs e)
+ {
+ var selectedRow = dataGridView.Rows[dataGridView.SelectedCells[0].RowIndex];
+ if(fnsku == "")
+ {
+ MessageBox.Show("Please select row");
+ return;
+ }
+
+ if (txt_weight_tol.Text.Length > 0 && txt_weight_tol.Text != 0.ToString())
+ {
+
+ SKULog.FNSKU = fnsku;
+ 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);
+
+ if (result == true)
+ {
+ MessageBox.Show("Weight Tolerance saved successfully.");
+ }
+ else
+ {
+ MessageBox.Show("Weight Tolerance not saved.");
+ }
+
+ }
+ else
+ {
+ MessageBox.Show("Please enter weight tolerance.");
+ }
+ txt_weight_tol.Text = "";
+ }
+
+ private void txt_weight_tol_KeyPress(object sender, KeyPressEventArgs e)
+ {
+ TextBox txt = sender as TextBox;
+
+ // Allow control keys (like backspace), digits, and one dot (.)
+ if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar) && e.KeyChar != '.')
+ {
+ e.Handled = true;
+ }
+
+ // Only allow one dot
+ if (e.KeyChar == '.' && txt.Text.Contains("."))
+ {
+ e.Handled = true;
+ }
+ }
}
}
diff --git a/MainForm.resx b/MainForm.resx
index 06a5fcc..a3b05d3 100644
--- a/MainForm.resx
+++ b/MainForm.resx
@@ -57,15 +57,6 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 17, 17
-
-
- 152, 17
-
-
- 292, 17
-
25
diff --git a/Program.cs b/Program.cs
index 400f251..9dd6374 100644
--- a/Program.cs
+++ b/Program.cs
@@ -71,7 +71,7 @@ namespace AVS
else
{
- Application.Run(new LoginForm(null,false));
+ Application.Run(new LoginForm(null,false,null));
}
diff --git a/Properties/PublishProfiles/ClickOnceProfile.pubxml b/Properties/PublishProfiles/ClickOnceProfile.pubxml
index 959136c..cfa05d8 100644
--- a/Properties/PublishProfiles/ClickOnceProfile.pubxml
+++ b/Properties/PublishProfiles/ClickOnceProfile.pubxml
@@ -34,8 +34,19 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
- True
+ true
.NET Desktop Runtime 3.1.32 (x64)
+
+
+
+
+
+
+ Include
+ true
+ File
+
+
\ No newline at end of file
diff --git a/Properties/PublishProfiles/ClickOnceProfile.pubxml.user b/Properties/PublishProfiles/ClickOnceProfile.pubxml.user
index 08c0a9d..8b091d9 100644
--- a/Properties/PublishProfiles/ClickOnceProfile.pubxml.user
+++ b/Properties/PublishProfiles/ClickOnceProfile.pubxml.user
@@ -4,7 +4,6 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
-->
- True|2025-02-20T07:06:50.5256566Z;True|2025-02-20T12:04:47.9811232+05:00;True|2025-02-20T10:32:10.1630807+05:00;True|2025-02-19T16:15:25.9652099+05:00;True|2025-02-19T11:49:48.6682011+05:00;True|2025-02-14T17:26:14.3396292+05:00;True|2025-02-14T15:19:10.9203072+05:00;True|2025-02-14T14:56:45.1511366+05:00;True|2025-02-14T11:28:26.1564993+05:00;True|2025-02-13T15:35:07.9451265+05:00;True|2025-02-13T15:29:09.6509368+05:00;True|2025-02-13T15:15:42.9625389+05:00;True|2025-02-13T12:17:29.1198751+05:00;True|2025-02-07T10:32:29.7309449+05:00;True|2025-02-07T10:27:55.4280510+05:00;True|2025-02-07T10:21:49.7222635+05:00;True|2025-02-06T15:41:41.2223957+05:00;True|2025-02-06T13:03:45.4378887+05:00;True|2025-02-06T12:47:23.0466564+05:00;True|2025-02-06T12:07:59.3347451+05:00;True|2025-02-06T11:13:58.9226036+05:00;True|2025-02-06T10:56:53.5700768+05:00;True|2025-01-22T18:06:10.2021515+05:00;True|2025-01-20T17:03:46.3339359+05:00;True|2025-01-17T16:05:43.4268668+05:00;True|2025-01-17T15:29:15.3040623+05:00;True|2025-01-17T14:43:18.0168523+05:00;True|2025-01-17T12:10:42.9600907+05:00;True|2025-01-16T15:41:00.8488244+05:00;True|2025-01-15T16:56:17.6142392+05:00;True|2025-01-15T16:33:55.6417349+05:00;True|2025-01-15T13:21:45.4638138+05:00;True|2025-01-15T13:15:20.5641887+05:00;True|2025-01-15T12:40:01.2419621+05:00;True|2025-01-15T12:03:30.8084697+05:00;True|2025-01-14T14:28:18.3366894+05:00;True|2025-01-14T14:26:26.2462065+05:00;True|2025-01-14T14:15:07.2883239+05:00;True|2025-01-13T12:30:23.8416299+05:00;True|2025-01-13T11:42:39.1224890+05:00;True|2025-01-03T12:33:10.2793698+05:00;True|2024-12-18T15:18:14.4395717+05:00;True|2024-12-18T12:54:56.8084778+05:00;True|2024-12-13T15:44:24.4352978+05:00;True|2024-12-05T10:51:18.0390128+05:00;True|2024-11-19T15:15:29.2333962+05:00;False|2024-11-19T15:14:41.4128664+05:00;False|2024-11-19T15:14:36.3176067+05:00;True|2024-11-19T12:46:09.5293823+05:00;True|2024-11-15T15:47:24.5856469+05:00;True|2024-11-15T10:37:27.3010142+05:00;True|2024-11-14T16:04:59.4907408+05:00;True|2024-11-14T11:36:56.6431970+05:00;True|2024-11-14T11:34:49.6598132+05:00;True|2024-11-14T11:28:45.2501074+05:00;True|2024-11-14T11:26:24.2442493+05:00;True|2024-11-14T11:23:19.7352473+05:00;True|2024-11-14T11:14:58.0824649+05:00;True|2024-11-14T11:11:54.9014794+05:00;True|2024-11-13T15:09:33.1039388+05:00;True|2024-11-11T15:27:08.4922899+05:00;True|2024-11-11T11:11:44.1076640+05:00;True|2024-11-08T16:55:19.8477794+05:00;True|2024-11-07T13:00:42.6710690+05:00;True|2024-11-06T15:51:05.5447288+05:00;True|2024-10-24T12:42:25.3699824+05:00;True|2024-10-24T11:23:10.1903366+05:00;True|2024-10-16T16:14:16.3746546+05:00;True|2024-10-16T15:50:04.4963422+05:00;True|2024-10-16T13:05:44.8782830+05:00;True|2024-10-16T13:01:07.1428555+05:00;True|2024-10-14T16:14:19.8020734+05:00;True|2024-09-14T10:16:00.4694353+05:00;True|2024-09-10T11:51:34.4061980+05:00;True|2024-09-09T13:16:17.8966236+05:00;True|2024-09-06T16:06:27.3649451+05:00;True|2024-09-06T16:04:47.1924045+05:00;True|2024-09-06T15:57:13.6901243+05:00;True|2024-09-06T12:32:36.9615856+05:00;True|2024-09-04T15:57:14.4892617+05:00;
-
+ True|2025-04-25T07:28:18.3725903Z;True|2025-04-25T12:27:54.3223053+05:00;
\ No newline at end of file
diff --git a/Resource.Designer.cs b/Resource.Designer.cs
index 50afd11..cbead55 100644
--- a/Resource.Designer.cs
+++ b/Resource.Designer.cs
@@ -120,6 +120,16 @@ namespace AVS {
}
}
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap refresh {
+ get {
+ object obj = ResourceManager.GetObject("refresh", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
diff --git a/Resource.resx b/Resource.resx
index 3744b14..8280129 100644
--- a/Resource.resx
+++ b/Resource.resx
@@ -124,8 +124,8 @@
Resources\close-icon-13577.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- Resources\pngwing.com.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ bin\Debug\netcoreapp3.1\submit-btn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
bin\Debug\netcoreapp3.1\pass.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
@@ -139,13 +139,16 @@
bin\Debug\netcoreapp3.1\logout.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- bin\Debug\netcoreapp3.1\blue.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
bin\Debug\netcoreapp3.1\user.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- bin\Debug\netcoreapp3.1\submit-btn.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ bin\Debug\netcoreapp3.1\blue.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\pngwing.com.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ Resources\refresh.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
\ No newline at end of file
diff --git a/Resources/refresh.png b/Resources/refresh.png
new file mode 100644
index 0000000..9ad4c17
Binary files /dev/null and b/Resources/refresh.png differ
diff --git a/WeightTolerance.cs b/WeightTolerance.cs
new file mode 100644
index 0000000..b477a07
--- /dev/null
+++ b/WeightTolerance.cs
@@ -0,0 +1,129 @@
+using MySql.Data.MySqlClient;
+using System;
+using System.Collections.Generic;
+using System.Data.SQLite;
+using System.Drawing;
+using System.Text;
+using System.Windows.Forms;
+
+namespace AVS
+{
+ internal class WeightTolerance
+ {
+
+
+ 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();
+ //MessageBox.Show("MySQL connection opened successfully", "Connection Status", MessageBoxButtons.OK, MessageBoxIcon.Information);
+ Console.WriteLine("Mysql connection opened successfully");
+ return connection;
+ }
+ catch (Exception ex)
+ {
+
+ Console.WriteLine($"Error opening SQLite connection: {ex.Message}");
+
+ return null;
+ }
+ }
+
+ public void CloseConnection()
+ {
+ try
+ {
+ connection = new MySqlConnection(connectionString);
+ // Close the Mysql connection
+ connection?.Close();
+ Console.WriteLine("Mysql connection closed successfully");
+ }
+ catch (Exception ex)
+ {
+ Console.WriteLine($"Error closing SQLite connection: {ex.Message}");
+ }
+ }
+
+ public double GetWeightTolerance(string fnsku, string marketPlace)
+ {
+ 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;
+ }
+
+
+ }
+}
diff --git a/bin/Debug/netcoreapp3.1/AVS.dll b/bin/Debug/netcoreapp3.1/AVS.dll
index 3eb25ae..7757f9f 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.pdb b/bin/Debug/netcoreapp3.1/AVS.pdb
index 2d63c86..59b2385 100644
Binary files a/bin/Debug/netcoreapp3.1/AVS.pdb and b/bin/Debug/netcoreapp3.1/AVS.pdb differ
diff --git a/bin/Release/netcoreapp3.1/AVS.dll b/bin/Release/netcoreapp3.1/AVS.dll
index 1a44b1a..dae002a 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.pdb b/bin/Release/netcoreapp3.1/AVS.pdb
index ab10b53..177bf1e 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/AVS.runtimeconfig.json b/bin/Release/netcoreapp3.1/AVS.runtimeconfig.json
index 8f97ce4..4932b40 100644
--- a/bin/Release/netcoreapp3.1/AVS.runtimeconfig.json
+++ b/bin/Release/netcoreapp3.1/AVS.runtimeconfig.json
@@ -4,9 +4,6 @@
"framework": {
"name": "Microsoft.WindowsDesktop.App",
"version": "3.1.0"
- },
- "configProperties": {
- "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
}
}
}
\ No newline at end of file
diff --git a/bin/Release/netcoreapp3.1/win-x64/AVS.application b/bin/Release/netcoreapp3.1/win-x64/AVS.application
index ef6cd04..1c906d2 100644
--- a/bin/Release/netcoreapp3.1/win-x64/AVS.application
+++ b/bin/Release/netcoreapp3.1/win-x64/AVS.application
@@ -14,7 +14,7 @@
- KvPXDue8jpizVW3pVfuUQZBI//1BsNryaaCTGnLB8PY=
+ U646R5VvTUg8+SGcUCwQINDLr6DcH11tKWUJKn6ZQwI=
diff --git a/bin/Release/netcoreapp3.1/win-x64/AVS.dll b/bin/Release/netcoreapp3.1/win-x64/AVS.dll
index ef9502b..05e83df 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 e5e718c..5123c53 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 @@
-
+
- rGL1YG5MTxsEqJYYgNVqsSMqfphKY7EHUL5m+0JkZHg=
+ DP08gYRmtxcj9ODAGI/o7B8M9suw+HOulaMYfkptXXc=
\ No newline at end of file
diff --git a/bin/Release/netcoreapp3.1/win-x64/AVS.pdb b/bin/Release/netcoreapp3.1/win-x64/AVS.pdb
index 6c73fb4..242fe98 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/AVS.runtimeconfig.json b/bin/Release/netcoreapp3.1/win-x64/AVS.runtimeconfig.json
index 8f97ce4..4932b40 100644
--- a/bin/Release/netcoreapp3.1/win-x64/AVS.runtimeconfig.json
+++ b/bin/Release/netcoreapp3.1/win-x64/AVS.runtimeconfig.json
@@ -4,9 +4,6 @@
"framework": {
"name": "Microsoft.WindowsDesktop.App",
"version": "3.1.0"
- },
- "configProperties": {
- "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
}
}
}
\ No newline at end of file
diff --git a/bin/publish/AVS.application b/bin/publish/AVS.application
index d8dee16..26e02cd 100644
--- a/bin/publish/AVS.application
+++ b/bin/publish/AVS.application
@@ -14,7 +14,7 @@
- KvPXDue8jpizVW3pVfuUQZBI//1BsNryaaCTGnLB8PY=
+ U646R5VvTUg8+SGcUCwQINDLr6DcH11tKWUJKn6ZQwI=
diff --git a/bin/publish/AVS.exe b/bin/publish/AVS.exe
index 97bf78e..c774647 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 6c73fb4..242fe98 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 e5e718c..5123c53 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 @@
-
+
- rGL1YG5MTxsEqJYYgNVqsSMqfphKY7EHUL5m+0JkZHg=
+ DP08gYRmtxcj9ODAGI/o7B8M9suw+HOulaMYfkptXXc=
\ 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 97bf78e..c774647 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 ebf46de..4c5fcbd 100644
--- a/obj/AVS.csproj.nuget.dgspec.json
+++ b/obj/AVS.csproj.nuget.dgspec.json
@@ -90,8 +90,7 @@
"net47",
"net471",
"net472",
- "net48",
- "net481"
+ "net48"
],
"assetTargetFallback": true,
"warn": true,
@@ -103,7 +102,7 @@
"privateAssets": "none"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.403\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.416\\RuntimeIdentifierGraph.json"
}
}
}
diff --git a/obj/AVS.csproj.nuget.g.props b/obj/AVS.csproj.nuget.g.props
index d24f39d..bb86c56 100644
--- a/obj/AVS.csproj.nuget.g.props
+++ b/obj/AVS.csproj.nuget.g.props
@@ -7,13 +7,16 @@
$(UserProfile)\.nuget\packages\
C:\Users\muhammad.faique\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\
PackageReference
- 6.7.0
+ 5.11.6
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
diff --git a/obj/AVS.csproj.nuget.g.targets b/obj/AVS.csproj.nuget.g.targets
index 357db68..d4769b1 100644
--- a/obj/AVS.csproj.nuget.g.targets
+++ b/obj/AVS.csproj.nuget.g.targets
@@ -1,5 +1,8 @@

+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
diff --git a/obj/Debug/AVS.1.0.0.nuspec b/obj/Debug/AVS.1.0.0.nuspec
index 05bbd27..117524f 100644
--- a/obj/Debug/AVS.1.0.0.nuspec
+++ b/obj/Debug/AVS.1.0.0.nuspec
@@ -8,11 +8,11 @@
-
+
diff --git a/obj/Debug/netcoreapp3.1/AVS.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/netcoreapp3.1/AVS.GeneratedMSBuildEditorConfig.editorconfig
index 041a237..30eafd2 100644
--- a/obj/Debug/netcoreapp3.1/AVS.GeneratedMSBuildEditorConfig.editorconfig
+++ b/obj/Debug/netcoreapp3.1/AVS.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,9 +1,3 @@
is_global = true
-build_property.ApplicationManifest =
-build_property.StartupObject =
-build_property.ApplicationDefaultFont =
-build_property.ApplicationHighDpiMode =
-build_property.ApplicationUseCompatibleTextRendering =
-build_property.ApplicationVisualStyles =
build_property.RootNamespace = AVS
build_property.ProjectDir = D:\Projects\AVS\
diff --git a/obj/Debug/netcoreapp3.1/AVS.Resource.resources b/obj/Debug/netcoreapp3.1/AVS.Resource.resources
index d4a8090..c326dec 100644
Binary files a/obj/Debug/netcoreapp3.1/AVS.Resource.resources and b/obj/Debug/netcoreapp3.1/AVS.Resource.resources differ
diff --git a/obj/Debug/netcoreapp3.1/AVS.assets.cache b/obj/Debug/netcoreapp3.1/AVS.assets.cache
index 7387070..e0a36e4 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 97c42be..0c983e2 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 0d7152c..3a2c994 100644
--- a/obj/Debug/netcoreapp3.1/AVS.csproj.CoreCompileInputs.cache
+++ b/obj/Debug/netcoreapp3.1/AVS.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-91363e811efde127f82e334f6fa11b537055a0b6
+952bfb2735d05ec9b79c014d31e167b0141dec43
diff --git a/obj/Debug/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt b/obj/Debug/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt
index 5df398d..451ed08 100644
--- a/obj/Debug/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt
+++ b/obj/Debug/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt
@@ -252,11 +252,6 @@ D:\Projects\AVS - Updated\obj\Debug\netcoreapp3.1\AVS.dll
D:\Projects\AVS - Updated\obj\Debug\netcoreapp3.1\AVS.pdb
D:\Projects\AVS - Updated\obj\Debug\netcoreapp3.1\AVS.genruntimeconfig.cache
D:\Projects\AVS - Updated\obj\Debug\netcoreapp3.1\AVS.csproj.AssemblyReference.cache
-D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.csproj.AssemblyReference.cache
-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
-D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.csproj.GenerateResource.cache
D:\Projects\AVS\bin\Debug\netcoreapp3.1\AVS.exe
D:\Projects\AVS\bin\Debug\netcoreapp3.1\AVS.deps.json
D:\Projects\AVS\bin\Debug\netcoreapp3.1\AVS.runtimeconfig.json
@@ -319,7 +314,12 @@ 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\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
D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.Resource.resources
+D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.csproj.GenerateResource.cache
D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.GeneratedMSBuildEditorConfig.editorconfig
D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.AssemblyInfoInputs.cache
D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.AssemblyInfo.cs
diff --git a/obj/Debug/netcoreapp3.1/AVS.csproj.GenerateResource.cache b/obj/Debug/netcoreapp3.1/AVS.csproj.GenerateResource.cache
index bc03fca..67112b7 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.dll b/obj/Debug/netcoreapp3.1/AVS.dll
index 3eb25ae..7757f9f 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 2d63c86..59b2385 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/TempPE/Resource.Designer.cs.dll b/obj/Debug/netcoreapp3.1/TempPE/Resource.Designer.cs.dll
index ed11353..b876b52 100644
Binary files a/obj/Debug/netcoreapp3.1/TempPE/Resource.Designer.cs.dll and b/obj/Debug/netcoreapp3.1/TempPE/Resource.Designer.cs.dll differ
diff --git a/obj/Release/netcoreapp3.1/AVS.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/netcoreapp3.1/AVS.GeneratedMSBuildEditorConfig.editorconfig
index 041a237..30eafd2 100644
--- a/obj/Release/netcoreapp3.1/AVS.GeneratedMSBuildEditorConfig.editorconfig
+++ b/obj/Release/netcoreapp3.1/AVS.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,9 +1,3 @@
is_global = true
-build_property.ApplicationManifest =
-build_property.StartupObject =
-build_property.ApplicationDefaultFont =
-build_property.ApplicationHighDpiMode =
-build_property.ApplicationUseCompatibleTextRendering =
-build_property.ApplicationVisualStyles =
build_property.RootNamespace = AVS
build_property.ProjectDir = D:\Projects\AVS\
diff --git a/obj/Release/netcoreapp3.1/AVS.Resource.resources b/obj/Release/netcoreapp3.1/AVS.Resource.resources
index d4a8090..c326dec 100644
Binary files a/obj/Release/netcoreapp3.1/AVS.Resource.resources and b/obj/Release/netcoreapp3.1/AVS.Resource.resources differ
diff --git a/obj/Release/netcoreapp3.1/AVS.assets.cache b/obj/Release/netcoreapp3.1/AVS.assets.cache
index 134bc67..95ef341 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.AssemblyReference.cache b/obj/Release/netcoreapp3.1/AVS.csproj.AssemblyReference.cache
index 97c42be..f5e894a 100644
Binary files a/obj/Release/netcoreapp3.1/AVS.csproj.AssemblyReference.cache and b/obj/Release/netcoreapp3.1/AVS.csproj.AssemblyReference.cache differ
diff --git a/obj/Release/netcoreapp3.1/AVS.csproj.CoreCompileInputs.cache b/obj/Release/netcoreapp3.1/AVS.csproj.CoreCompileInputs.cache
index 08e79a0..e5e60d6 100644
--- a/obj/Release/netcoreapp3.1/AVS.csproj.CoreCompileInputs.cache
+++ b/obj/Release/netcoreapp3.1/AVS.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-d45e18d858abd9e4612315496809a1942bddeff8
+aeadd1f78e98d696c5ed90229fd22a9940ff8add
diff --git a/obj/Release/netcoreapp3.1/AVS.csproj.GenerateResource.cache b/obj/Release/netcoreapp3.1/AVS.csproj.GenerateResource.cache
index b44f1d3..4165373 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.dll b/obj/Release/netcoreapp3.1/AVS.dll
index 1a44b1a..dae002a 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.genruntimeconfig.cache b/obj/Release/netcoreapp3.1/AVS.genruntimeconfig.cache
index 4212b6e..183759c 100644
--- a/obj/Release/netcoreapp3.1/AVS.genruntimeconfig.cache
+++ b/obj/Release/netcoreapp3.1/AVS.genruntimeconfig.cache
@@ -1 +1 @@
-3b7286f61495c7d2a729b2ca4204b37093b9b260
+aab138238c877ec8b9e7be57a7513929e0c4ed07
diff --git a/obj/Release/netcoreapp3.1/AVS.pdb b/obj/Release/netcoreapp3.1/AVS.pdb
index ab10b53..177bf1e 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/TempPE/Resource.Designer.cs.dll b/obj/Release/netcoreapp3.1/TempPE/Resource.Designer.cs.dll
index ed11353..b876b52 100644
Binary files a/obj/Release/netcoreapp3.1/TempPE/Resource.Designer.cs.dll and b/obj/Release/netcoreapp3.1/TempPE/Resource.Designer.cs.dll differ
diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/netcoreapp3.1/win-x64/AVS.GeneratedMSBuildEditorConfig.editorconfig
index 041a237..30eafd2 100644
--- a/obj/Release/netcoreapp3.1/win-x64/AVS.GeneratedMSBuildEditorConfig.editorconfig
+++ b/obj/Release/netcoreapp3.1/win-x64/AVS.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,9 +1,3 @@
is_global = true
-build_property.ApplicationManifest =
-build_property.StartupObject =
-build_property.ApplicationDefaultFont =
-build_property.ApplicationHighDpiMode =
-build_property.ApplicationUseCompatibleTextRendering =
-build_property.ApplicationVisualStyles =
build_property.RootNamespace = AVS
build_property.ProjectDir = D:\Projects\AVS\
diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.Resource.resources b/obj/Release/netcoreapp3.1/win-x64/AVS.Resource.resources
index d4a8090..c326dec 100644
Binary files a/obj/Release/netcoreapp3.1/win-x64/AVS.Resource.resources and b/obj/Release/netcoreapp3.1/win-x64/AVS.Resource.resources differ
diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.application b/obj/Release/netcoreapp3.1/win-x64/AVS.application
index ef6cd04..1c906d2 100644
--- a/obj/Release/netcoreapp3.1/win-x64/AVS.application
+++ b/obj/Release/netcoreapp3.1/win-x64/AVS.application
@@ -14,7 +14,7 @@
- KvPXDue8jpizVW3pVfuUQZBI//1BsNryaaCTGnLB8PY=
+ U646R5VvTUg8+SGcUCwQINDLr6DcH11tKWUJKn6ZQwI=
diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.assets.cache b/obj/Release/netcoreapp3.1/win-x64/AVS.assets.cache
index 52a8e1a..ce9b3fd 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 cbdbc07..baf4338 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 @@
-7594bf74b6bcd0f943fb968eb5879569aac00f22
+dc1595f7db13d7405649004d6441fae661f0186b
diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.csproj.GenerateResource.cache b/obj/Release/netcoreapp3.1/win-x64/AVS.csproj.GenerateResource.cache
index b44f1d3..bb455f9 100644
Binary files a/obj/Release/netcoreapp3.1/win-x64/AVS.csproj.GenerateResource.cache and b/obj/Release/netcoreapp3.1/win-x64/AVS.csproj.GenerateResource.cache differ
diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.dll b/obj/Release/netcoreapp3.1/win-x64/AVS.dll
index ef9502b..05e83df 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 e5e718c..5123c53 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 @@
-
+
- rGL1YG5MTxsEqJYYgNVqsSMqfphKY7EHUL5m+0JkZHg=
+ DP08gYRmtxcj9ODAGI/o7B8M9suw+HOulaMYfkptXXc=
\ No newline at end of file
diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.genruntimeconfig.cache b/obj/Release/netcoreapp3.1/win-x64/AVS.genruntimeconfig.cache
index 843e81c..f4f08a3 100644
--- a/obj/Release/netcoreapp3.1/win-x64/AVS.genruntimeconfig.cache
+++ b/obj/Release/netcoreapp3.1/win-x64/AVS.genruntimeconfig.cache
@@ -1 +1 @@
-a67c786e42c74a558a9892c7f40ca3f3ffa94154
+c0b3ad061c7f74cb84a4f0b38d13b59a87dfef53
diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.pdb b/obj/Release/netcoreapp3.1/win-x64/AVS.pdb
index 6c73fb4..242fe98 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/project.assets.json b/obj/project.assets.json
index 7dccc38..12022c7 100644
--- a/obj/project.assets.json
+++ b/obj/project.assets.json
@@ -12,20 +12,12 @@
"System.Data.SqlClient": "4.8.1"
},
"compile": {
- "lib/netstandard2.1/EntityFramework.SqlServer.dll": {
- "related": ".xml"
- },
- "lib/netstandard2.1/EntityFramework.dll": {
- "related": ".SqlServer.xml;.xml"
- }
+ "lib/netstandard2.1/EntityFramework.SqlServer.dll": {},
+ "lib/netstandard2.1/EntityFramework.dll": {}
},
"runtime": {
- "lib/netstandard2.1/EntityFramework.SqlServer.dll": {
- "related": ".xml"
- },
- "lib/netstandard2.1/EntityFramework.dll": {
- "related": ".SqlServer.xml;.xml"
- }
+ "lib/netstandard2.1/EntityFramework.SqlServer.dll": {},
+ "lib/netstandard2.1/EntityFramework.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.0/EntityFramework.props": {},
@@ -39,14 +31,10 @@
"System.Runtime.CompilerServices.Unsafe": "4.5.2"
},
"compile": {
- "lib/netstandard2.0/Google.Protobuf.dll": {
- "related": ".pdb;.xml"
- }
+ "lib/netstandard2.0/Google.Protobuf.dll": {}
},
"runtime": {
- "lib/netstandard2.0/Google.Protobuf.dll": {
- "related": ".pdb;.xml"
- }
+ "lib/netstandard2.0/Google.Protobuf.dll": {}
}
},
"K4os.Compression.LZ4/1.3.5": {
@@ -55,14 +43,10 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.1/K4os.Compression.LZ4.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Compression.LZ4.dll": {}
},
"runtime": {
- "lib/netstandard2.1/K4os.Compression.LZ4.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Compression.LZ4.dll": {}
}
},
"K4os.Compression.LZ4.Streams/1.3.5": {
@@ -73,14 +57,10 @@
"System.IO.Pipelines": "6.0.3"
},
"compile": {
- "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {}
},
"runtime": {
- "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {}
}
},
"K4os.Hash.xxHash/1.0.8": {
@@ -89,14 +69,10 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.1/K4os.Hash.xxHash.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Hash.xxHash.dll": {}
},
"runtime": {
- "lib/netstandard2.1/K4os.Hash.xxHash.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Hash.xxHash.dll": {}
}
},
"MaterialSkin/0.2.1": {
@@ -111,14 +87,10 @@
"Microsoft.Bcl.AsyncInterfaces/8.0.0": {
"type": "package",
"compile": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
},
"runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
}
},
"Microsoft.CSharp/4.7.0": {
@@ -136,14 +108,10 @@
"NETStandard.Library": "1.6.1"
},
"compile": {
- "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
+ "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
+ "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
"Microsoft.Management.Infrastructure/3.0.0": {
@@ -233,9 +201,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Microsoft.Win32.Registry/4.7.0": {
@@ -245,14 +211,10 @@
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
- "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {
- "related": ".xml"
- }
+ "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {}
},
"runtime": {
- "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
@@ -271,14 +233,10 @@
"Microsoft.NETCore.Platforms": "3.1.0"
},
"compile": {
- "ref/netstandard2.0/_._": {
- "related": ".xml"
- }
+ "ref/netstandard2.0/_._": {}
},
"runtime": {
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
@@ -305,14 +263,10 @@
"ZstdSharp.Port": "0.7.1"
},
"compile": {
- "lib/netstandard2.1/MySql.Data.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/MySql.Data.dll": {}
},
"runtime": {
- "lib/netstandard2.1/MySql.Data.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/MySql.Data.dll": {}
},
"runtimeTargets": {
"runtimes/win-x64/native/comerr64.dll": {
@@ -389,27 +343,19 @@
"Newtonsoft.Json/13.0.3": {
"type": "package",
"compile": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
},
"runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
}
},
"Portable.BouncyCastle/1.9.0": {
"type": "package",
"compile": {
- "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
},
"runtime": {
- "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
}
},
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
@@ -687,14 +633,10 @@
"System.Threading.ThreadPool": "4.3.0"
},
"compile": {
- "lib/netstandard1.5/RJCP.SerialPortStream.dll": {
- "related": ".pdb;.xml"
- }
+ "lib/netstandard1.5/RJCP.SerialPortStream.dll": {}
},
"runtime": {
- "lib/netstandard1.5/RJCP.SerialPortStream.dll": {
- "related": ".pdb;.xml"
- }
+ "lib/netstandard1.5/RJCP.SerialPortStream.dll": {}
}
},
"SharpCompress/0.38.0": {
@@ -705,27 +647,19 @@
"ZstdSharp.Port": "0.8.1"
},
"compile": {
- "lib/netstandard2.1/SharpCompress.dll": {
- "related": ".pdb"
- }
+ "lib/netstandard2.1/SharpCompress.dll": {}
},
"runtime": {
- "lib/netstandard2.1/SharpCompress.dll": {
- "related": ".pdb"
- }
+ "lib/netstandard2.1/SharpCompress.dll": {}
}
},
"Stub.System.Data.SQLite.Core.NetStandard/1.0.118": {
"type": "package",
"compile": {
- "lib/netstandard2.1/System.Data.SQLite.dll": {
- "related": ".dll.altconfig;.xml"
- }
+ "lib/netstandard2.1/System.Data.SQLite.dll": {}
},
"runtime": {
- "lib/netstandard2.1/System.Data.SQLite.dll": {
- "related": ".dll.altconfig;.xml"
- }
+ "lib/netstandard2.1/System.Data.SQLite.dll": {}
},
"runtimeTargets": {
"runtimes/linux-x64/native/SQLite.Interop.dll": {
@@ -752,9 +686,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.AppContext.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.6/System.AppContext.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.AppContext.dll": {}
@@ -772,14 +704,10 @@
"System.CodeDom/9.0.0": {
"type": "package",
"compile": {
- "lib/netstandard2.0/System.CodeDom.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.CodeDom.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.CodeDom.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.CodeDom.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.CodeDom.targets": {}
@@ -793,9 +721,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Collections.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Collections.dll": {}
}
},
"System.Collections.Concurrent/4.3.0": {
@@ -813,9 +739,7 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Collections.Concurrent.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
@@ -834,14 +758,10 @@
"System.Threading": "4.3.0"
},
"compile": {
- "lib/netstandard1.0/_._": {
- "related": ".xml"
- }
+ "lib/netstandard1.0/_._": {}
},
"runtime": {
- "lib/netstandard1.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
+ "lib/netstandard1.0/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.3.0": {
@@ -855,9 +775,7 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
@@ -875,9 +793,7 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Collections.Specialized.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Collections.Specialized.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
@@ -886,14 +802,10 @@
"System.ComponentModel.Annotations/4.7.0": {
"type": "package",
"compile": {
- "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
- "related": ".xml"
- }
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
- "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
}
},
"System.Configuration.ConfigurationManager/4.7.0": {
@@ -903,14 +815,10 @@
"System.Security.Permissions": "4.7.0"
},
"compile": {
- "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
+ "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
}
},
"System.Console/4.3.0": {
@@ -923,9 +831,7 @@
"System.Text.Encoding": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Console.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Console.dll": {}
}
},
"System.Data.SqlClient/4.8.1": {
@@ -936,14 +842,10 @@
"runtime.native.System.Data.SqlClient.sni": "4.7.0"
},
"compile": {
- "ref/netcoreapp2.1/System.Data.SqlClient.dll": {
- "related": ".xml"
- }
+ "ref/netcoreapp2.1/System.Data.SqlClient.dll": {}
},
"runtime": {
- "lib/netcoreapp2.1/System.Data.SqlClient.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp2.1/System.Data.SqlClient.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
@@ -989,9 +891,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
}
},
"System.Diagnostics.DiagnosticSource/7.0.2": {
@@ -1001,14 +901,10 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets": {}
@@ -1028,9 +924,7 @@
"System.Runtime.InteropServices": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
@@ -1051,9 +945,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
}
},
"System.Diagnostics.TraceSource/4.3.0": {
@@ -1070,9 +962,7 @@
"runtime.native.System": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
@@ -1093,9 +983,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
}
},
"System.Drawing.Common/4.7.0": {
@@ -1105,9 +993,7 @@
"Microsoft.Win32.SystemEvents": "4.7.0"
},
"compile": {
- "ref/netcoreapp3.0/_._": {
- "related": ".xml"
- }
+ "ref/netcoreapp3.0/_._": {}
},
"runtime": {
"lib/netstandard2.0/System.Drawing.Common.dll": {}
@@ -1131,9 +1017,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Globalization.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Globalization.dll": {}
}
},
"System.Globalization.Calendars/4.3.0": {
@@ -1145,9 +1029,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Globalization.Calendars.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.3.0": {
@@ -1161,9 +1043,7 @@
"System.Runtime.InteropServices": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/_._": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
@@ -1186,9 +1066,7 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.IO.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.IO.dll": {}
}
},
"System.IO.Compression/4.3.0": {
@@ -1211,9 +1089,7 @@
"runtime.native.System.IO.Compression": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.Compression.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.IO.Compression.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
@@ -1240,9 +1116,7 @@
"System.Text.Encoding": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
@@ -1261,9 +1135,7 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.FileSystem.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.3.0": {
@@ -1272,9 +1144,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
@@ -1283,14 +1153,10 @@
"System.IO.Pipelines/6.0.3": {
"type": "package",
"compile": {
- "lib/netcoreapp3.1/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.1/System.IO.Pipelines.dll": {}
},
"runtime": {
- "lib/netcoreapp3.1/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.1/System.IO.Pipelines.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
@@ -1302,14 +1168,10 @@
"runtime.native.System.IO.Ports": "7.0.0"
},
"compile": {
- "lib/netstandard2.0/System.IO.Ports.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.IO.Ports.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.IO.Ports.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.IO.Ports.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.IO.Ports.targets": {}
@@ -1325,9 +1187,7 @@
"System.Runtime.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Linq.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.6/System.Linq.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.Linq.dll": {}
@@ -1355,9 +1215,7 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Linq.Expressions.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.6/System.Linq.Expressions.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.Linq.Expressions.dll": {}
@@ -1369,14 +1227,10 @@
"System.CodeDom": "9.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Management.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Management.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Management.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Management.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.Management.targets": {}
@@ -1422,9 +1276,7 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.Http.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Net.Http.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
@@ -1446,9 +1298,7 @@
"System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.Primitives.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Net.Primitives.dll": {}
}
},
"System.Net.Sockets/4.3.0": {
@@ -1462,9 +1312,7 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.Sockets.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Numerics.Vectors/4.5.0": {
@@ -1486,9 +1334,7 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.ObjectModel.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.ObjectModel.dll": {}
@@ -1504,9 +1350,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Reflection.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.Reflection.dll": {}
}
},
"System.Reflection.Emit/4.3.0": {
@@ -1519,9 +1363,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.1/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.Emit.dll": {}
@@ -1535,9 +1377,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
@@ -1552,9 +1392,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
@@ -1569,9 +1407,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Reflection.Extensions.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
}
},
"System.Reflection.Metadata/1.4.1": {
@@ -1595,14 +1431,10 @@
"System.Threading": "4.3.0"
},
"compile": {
- "lib/netstandard1.1/_._": {
- "related": ".xml"
- }
+ "lib/netstandard1.1/_._": {}
},
"runtime": {
- "lib/netstandard1.1/System.Reflection.Metadata.dll": {
- "related": ".xml"
- }
+ "lib/netstandard1.1/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.3.0": {
@@ -1613,9 +1445,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Reflection.Primitives.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
}
},
"System.Reflection.TypeExtensions/4.3.0": {
@@ -1625,9 +1455,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/_._": {}
},
"runtime": {
"lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
@@ -1643,9 +1471,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
}
},
"System.Runtime/4.3.0": {
@@ -1655,22 +1481,16 @@
"Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.Runtime.dll": {}
}
},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"type": "package",
"compile": {
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"runtime": {
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
@@ -1684,9 +1504,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.Extensions.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
}
},
"System.Runtime.Handles/4.3.0": {
@@ -1697,9 +1515,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Runtime.Handles.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.3.0": {
@@ -1752,9 +1568,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.Loader.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {}
},
"runtime": {
"lib/netstandard1.5/System.Runtime.Loader.dll": {}
@@ -1769,9 +1583,7 @@
"System.Runtime.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.1/System.Runtime.Numerics.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
@@ -1784,14 +1596,10 @@
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
- "ref/netstandard2.0/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
+ "ref/netstandard2.0/System.Security.AccessControl.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Security.AccessControl.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
@@ -1913,9 +1721,7 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
@@ -1979,14 +1785,10 @@
"System.Security.Cryptography.ProtectedData/4.7.0": {
"type": "package",
"compile": {
- "ref/netstandard2.0/_._": {
- "related": ".xml"
- }
+ "ref/netstandard2.0/_._": {}
},
"runtime": {
- "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
@@ -2025,9 +1827,7 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
@@ -2047,27 +1847,19 @@
"System.Windows.Extensions": "4.7.0"
},
"compile": {
- "ref/netcoreapp3.0/System.Security.Permissions.dll": {
- "related": ".xml"
- }
+ "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
},
"runtime": {
- "lib/netcoreapp3.0/System.Security.Permissions.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
}
},
"System.Security.Principal.Windows/4.7.0": {
"type": "package",
"compile": {
- "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
@@ -2088,9 +1880,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Text.Encoding.dll": {}
}
},
"System.Text.Encoding.CodePages/8.0.0": {
@@ -2100,14 +1890,10 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets": {}
@@ -2122,9 +1908,7 @@
"System.Text.Encoding": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
}
},
"System.Text.Encodings.Web/7.0.0": {
@@ -2135,14 +1919,10 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
@@ -2160,14 +1940,10 @@
"System.Threading.Tasks.Extensions": "4.5.4"
},
"compile": {
- "lib/netstandard2.0/System.Text.Json.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Json.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Text.Json.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Json.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
@@ -2192,9 +1968,7 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Threading.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Threading.dll": {}
@@ -2209,9 +1983,7 @@
"System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.Overlapped.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Threading.Overlapped.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": {
@@ -2232,9 +2004,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.Tasks.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.5.4": {
@@ -2252,9 +2022,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.Thread.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Threading.Thread.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Threading.Thread.dll": {}
@@ -2267,9 +2035,7 @@
"System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
@@ -2283,9 +2049,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.2/System.Threading.Timer.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.2/System.Threading.Timer.dll": {}
}
},
"System.Windows.Extensions/4.7.0": {
@@ -2294,14 +2058,10 @@
"System.Drawing.Common": "4.7.0"
},
"compile": {
- "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
- "related": ".xml"
- }
+ "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
},
"runtime": {
- "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
@@ -2330,9 +2090,7 @@
"System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
@@ -2355,9 +2113,7 @@
"System.Xml.ReaderWriter": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Xml.XDocument.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XDocument.dll": {}
@@ -7749,8 +7505,7 @@
"net47",
"net471",
"net472",
- "net48",
- "net481"
+ "net48"
],
"assetTargetFallback": true,
"warn": true,
@@ -7762,7 +7517,7 @@
"privateAssets": "none"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.403\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.416\\RuntimeIdentifierGraph.json"
}
}
},
@@ -7771,7 +7526,7 @@
"code": "NU1701",
"level": "Warning",
"warningLevel": 1,
- "message": "Package 'MaterialSkin 0.2.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework '.NETCoreApp,Version=v3.1'. This package may not be fully compatible with your project.",
+ "message": "Package 'MaterialSkin 0.2.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework '.NETCoreApp,Version=v3.1'. This package may not be fully compatible with your project.",
"libraryId": "MaterialSkin",
"targetGraphs": [
".NETCoreApp,Version=v3.1"
diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache
index 56ba83c..bf8b4a6 100644
--- a/obj/project.nuget.cache
+++ b/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "Yc6dAPaG2caIYjP2rH8CkdLo7Q2RCH5D4KXVlbGQzwhGQNvw+YAiWs3KRaa+ey6NjPYbK0E2IXLn0sugPsnCdg==",
+ "dgSpecHash": "YYOUHTMF43todL+JSqfRwQxi+NvVF+beryQ2sRL2AJFuJN/+wF8uv6ohQuSMHaoiT94MLRwGxDHb8VJAPFWUwg==",
"success": true,
"projectFilePath": "D:\\Projects\\AVS\\AVS.csproj",
"expectedPackageFiles": [
@@ -146,7 +146,7 @@
"code": "NU1701",
"level": "Warning",
"warningLevel": 1,
- "message": "Package 'MaterialSkin 0.2.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework '.NETCoreApp,Version=v3.1'. This package may not be fully compatible with your project.",
+ "message": "Package 'MaterialSkin 0.2.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework '.NETCoreApp,Version=v3.1'. This package may not be fully compatible with your project.",
"libraryId": "MaterialSkin",
"targetGraphs": [
".NETCoreApp,Version=v3.1"
diff --git a/obj/publish/win-x64/AVS.csproj.nuget.dgspec.json b/obj/publish/win-x64/AVS.csproj.nuget.dgspec.json
index b95817a..e05558c 100644
--- a/obj/publish/win-x64/AVS.csproj.nuget.dgspec.json
+++ b/obj/publish/win-x64/AVS.csproj.nuget.dgspec.json
@@ -90,8 +90,7 @@
"net47",
"net471",
"net472",
- "net48",
- "net481"
+ "net48"
],
"assetTargetFallback": true,
"warn": true,
@@ -103,7 +102,7 @@
"privateAssets": "none"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.403\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.416\\RuntimeIdentifierGraph.json"
}
},
"runtimes": {
diff --git a/obj/publish/win-x64/AVS.csproj.nuget.g.props b/obj/publish/win-x64/AVS.csproj.nuget.g.props
index d24f39d..bb86c56 100644
--- a/obj/publish/win-x64/AVS.csproj.nuget.g.props
+++ b/obj/publish/win-x64/AVS.csproj.nuget.g.props
@@ -7,13 +7,16 @@
$(UserProfile)\.nuget\packages\
C:\Users\muhammad.faique\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\
PackageReference
- 6.7.0
+ 5.11.6
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
diff --git a/obj/publish/win-x64/AVS.csproj.nuget.g.targets b/obj/publish/win-x64/AVS.csproj.nuget.g.targets
index 357db68..d4769b1 100644
--- a/obj/publish/win-x64/AVS.csproj.nuget.g.targets
+++ b/obj/publish/win-x64/AVS.csproj.nuget.g.targets
@@ -1,5 +1,8 @@

+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
diff --git a/obj/publish/win-x64/project.assets.json b/obj/publish/win-x64/project.assets.json
index 9e7919f..a8a8994 100644
--- a/obj/publish/win-x64/project.assets.json
+++ b/obj/publish/win-x64/project.assets.json
@@ -12,20 +12,12 @@
"System.Data.SqlClient": "4.8.1"
},
"compile": {
- "lib/netstandard2.1/EntityFramework.SqlServer.dll": {
- "related": ".xml"
- },
- "lib/netstandard2.1/EntityFramework.dll": {
- "related": ".SqlServer.xml;.xml"
- }
+ "lib/netstandard2.1/EntityFramework.SqlServer.dll": {},
+ "lib/netstandard2.1/EntityFramework.dll": {}
},
"runtime": {
- "lib/netstandard2.1/EntityFramework.SqlServer.dll": {
- "related": ".xml"
- },
- "lib/netstandard2.1/EntityFramework.dll": {
- "related": ".SqlServer.xml;.xml"
- }
+ "lib/netstandard2.1/EntityFramework.SqlServer.dll": {},
+ "lib/netstandard2.1/EntityFramework.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.0/EntityFramework.props": {},
@@ -39,14 +31,10 @@
"System.Runtime.CompilerServices.Unsafe": "4.5.2"
},
"compile": {
- "lib/netstandard2.0/Google.Protobuf.dll": {
- "related": ".pdb;.xml"
- }
+ "lib/netstandard2.0/Google.Protobuf.dll": {}
},
"runtime": {
- "lib/netstandard2.0/Google.Protobuf.dll": {
- "related": ".pdb;.xml"
- }
+ "lib/netstandard2.0/Google.Protobuf.dll": {}
}
},
"K4os.Compression.LZ4/1.3.5": {
@@ -55,14 +43,10 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.1/K4os.Compression.LZ4.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Compression.LZ4.dll": {}
},
"runtime": {
- "lib/netstandard2.1/K4os.Compression.LZ4.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Compression.LZ4.dll": {}
}
},
"K4os.Compression.LZ4.Streams/1.3.5": {
@@ -73,14 +57,10 @@
"System.IO.Pipelines": "6.0.3"
},
"compile": {
- "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {}
},
"runtime": {
- "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {}
}
},
"K4os.Hash.xxHash/1.0.8": {
@@ -89,14 +69,10 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.1/K4os.Hash.xxHash.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Hash.xxHash.dll": {}
},
"runtime": {
- "lib/netstandard2.1/K4os.Hash.xxHash.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Hash.xxHash.dll": {}
}
},
"MaterialSkin/0.2.1": {
@@ -111,14 +87,10 @@
"Microsoft.Bcl.AsyncInterfaces/8.0.0": {
"type": "package",
"compile": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
},
"runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
}
},
"Microsoft.CSharp/4.7.0": {
@@ -136,14 +108,10 @@
"NETStandard.Library": "1.6.1"
},
"compile": {
- "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
+ "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
+ "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
"Microsoft.Management.Infrastructure/3.0.0": {
@@ -233,9 +201,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Microsoft.Win32.Registry/4.7.0": {
@@ -245,14 +211,10 @@
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
- "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {
- "related": ".xml"
- }
+ "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {}
},
"runtime": {
- "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
@@ -271,14 +233,10 @@
"Microsoft.NETCore.Platforms": "3.1.0"
},
"compile": {
- "ref/netstandard2.0/_._": {
- "related": ".xml"
- }
+ "ref/netstandard2.0/_._": {}
},
"runtime": {
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
@@ -305,14 +263,10 @@
"ZstdSharp.Port": "0.7.1"
},
"compile": {
- "lib/netstandard2.1/MySql.Data.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/MySql.Data.dll": {}
},
"runtime": {
- "lib/netstandard2.1/MySql.Data.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/MySql.Data.dll": {}
},
"runtimeTargets": {
"runtimes/win-x64/native/comerr64.dll": {
@@ -389,27 +343,19 @@
"Newtonsoft.Json/13.0.3": {
"type": "package",
"compile": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
},
"runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
}
},
"Portable.BouncyCastle/1.9.0": {
"type": "package",
"compile": {
- "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
},
"runtime": {
- "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
}
},
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
@@ -687,14 +633,10 @@
"System.Threading.ThreadPool": "4.3.0"
},
"compile": {
- "lib/netstandard1.5/RJCP.SerialPortStream.dll": {
- "related": ".pdb;.xml"
- }
+ "lib/netstandard1.5/RJCP.SerialPortStream.dll": {}
},
"runtime": {
- "lib/netstandard1.5/RJCP.SerialPortStream.dll": {
- "related": ".pdb;.xml"
- }
+ "lib/netstandard1.5/RJCP.SerialPortStream.dll": {}
}
},
"SharpCompress/0.38.0": {
@@ -705,27 +647,19 @@
"ZstdSharp.Port": "0.8.1"
},
"compile": {
- "lib/netstandard2.1/SharpCompress.dll": {
- "related": ".pdb"
- }
+ "lib/netstandard2.1/SharpCompress.dll": {}
},
"runtime": {
- "lib/netstandard2.1/SharpCompress.dll": {
- "related": ".pdb"
- }
+ "lib/netstandard2.1/SharpCompress.dll": {}
}
},
"Stub.System.Data.SQLite.Core.NetStandard/1.0.118": {
"type": "package",
"compile": {
- "lib/netstandard2.1/System.Data.SQLite.dll": {
- "related": ".dll.altconfig;.xml"
- }
+ "lib/netstandard2.1/System.Data.SQLite.dll": {}
},
"runtime": {
- "lib/netstandard2.1/System.Data.SQLite.dll": {
- "related": ".dll.altconfig;.xml"
- }
+ "lib/netstandard2.1/System.Data.SQLite.dll": {}
},
"runtimeTargets": {
"runtimes/linux-x64/native/SQLite.Interop.dll": {
@@ -752,9 +686,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.AppContext.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.6/System.AppContext.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.AppContext.dll": {}
@@ -772,14 +704,10 @@
"System.CodeDom/9.0.0": {
"type": "package",
"compile": {
- "lib/netstandard2.0/System.CodeDom.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.CodeDom.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.CodeDom.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.CodeDom.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.CodeDom.targets": {}
@@ -793,9 +721,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Collections.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Collections.dll": {}
}
},
"System.Collections.Concurrent/4.3.0": {
@@ -813,9 +739,7 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Collections.Concurrent.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
@@ -834,14 +758,10 @@
"System.Threading": "4.3.0"
},
"compile": {
- "lib/netstandard1.0/_._": {
- "related": ".xml"
- }
+ "lib/netstandard1.0/_._": {}
},
"runtime": {
- "lib/netstandard1.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
+ "lib/netstandard1.0/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.3.0": {
@@ -855,9 +775,7 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
@@ -875,9 +793,7 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Collections.Specialized.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Collections.Specialized.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
@@ -886,14 +802,10 @@
"System.ComponentModel.Annotations/4.7.0": {
"type": "package",
"compile": {
- "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
- "related": ".xml"
- }
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
- "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
}
},
"System.Configuration.ConfigurationManager/4.7.0": {
@@ -903,14 +815,10 @@
"System.Security.Permissions": "4.7.0"
},
"compile": {
- "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
+ "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
}
},
"System.Console/4.3.0": {
@@ -923,9 +831,7 @@
"System.Text.Encoding": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Console.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Console.dll": {}
}
},
"System.Data.SqlClient/4.8.1": {
@@ -936,14 +842,10 @@
"runtime.native.System.Data.SqlClient.sni": "4.7.0"
},
"compile": {
- "ref/netcoreapp2.1/System.Data.SqlClient.dll": {
- "related": ".xml"
- }
+ "ref/netcoreapp2.1/System.Data.SqlClient.dll": {}
},
"runtime": {
- "lib/netcoreapp2.1/System.Data.SqlClient.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp2.1/System.Data.SqlClient.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
@@ -989,9 +891,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
}
},
"System.Diagnostics.DiagnosticSource/7.0.2": {
@@ -1001,14 +901,10 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets": {}
@@ -1028,9 +924,7 @@
"System.Runtime.InteropServices": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
@@ -1051,9 +945,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
}
},
"System.Diagnostics.TraceSource/4.3.0": {
@@ -1070,9 +962,7 @@
"runtime.native.System": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
@@ -1093,9 +983,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
}
},
"System.Drawing.Common/4.7.0": {
@@ -1105,9 +993,7 @@
"Microsoft.Win32.SystemEvents": "4.7.0"
},
"compile": {
- "ref/netcoreapp3.0/_._": {
- "related": ".xml"
- }
+ "ref/netcoreapp3.0/_._": {}
},
"runtime": {
"lib/netstandard2.0/System.Drawing.Common.dll": {}
@@ -1131,9 +1017,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Globalization.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Globalization.dll": {}
}
},
"System.Globalization.Calendars/4.3.0": {
@@ -1145,9 +1029,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Globalization.Calendars.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.3.0": {
@@ -1161,9 +1043,7 @@
"System.Runtime.InteropServices": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/_._": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
@@ -1186,9 +1066,7 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.IO.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.IO.dll": {}
}
},
"System.IO.Compression/4.3.0": {
@@ -1211,9 +1089,7 @@
"runtime.native.System.IO.Compression": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.Compression.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.IO.Compression.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
@@ -1240,9 +1116,7 @@
"System.Text.Encoding": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
@@ -1261,9 +1135,7 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.FileSystem.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.3.0": {
@@ -1272,9 +1144,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
@@ -1283,14 +1153,10 @@
"System.IO.Pipelines/6.0.3": {
"type": "package",
"compile": {
- "lib/netcoreapp3.1/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.1/System.IO.Pipelines.dll": {}
},
"runtime": {
- "lib/netcoreapp3.1/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.1/System.IO.Pipelines.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
@@ -1302,14 +1168,10 @@
"runtime.native.System.IO.Ports": "7.0.0"
},
"compile": {
- "lib/netstandard2.0/System.IO.Ports.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.IO.Ports.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.IO.Ports.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.IO.Ports.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.IO.Ports.targets": {}
@@ -1325,9 +1187,7 @@
"System.Runtime.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Linq.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.6/System.Linq.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.Linq.dll": {}
@@ -1355,9 +1215,7 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Linq.Expressions.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.6/System.Linq.Expressions.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.Linq.Expressions.dll": {}
@@ -1369,14 +1227,10 @@
"System.CodeDom": "9.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Management.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Management.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Management.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Management.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.Management.targets": {}
@@ -1422,9 +1276,7 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.Http.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Net.Http.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
@@ -1446,9 +1298,7 @@
"System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.Primitives.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Net.Primitives.dll": {}
}
},
"System.Net.Sockets/4.3.0": {
@@ -1462,9 +1312,7 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.Sockets.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Numerics.Vectors/4.5.0": {
@@ -1486,9 +1334,7 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.ObjectModel.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.ObjectModel.dll": {}
@@ -1504,9 +1350,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Reflection.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.Reflection.dll": {}
}
},
"System.Reflection.Emit/4.3.0": {
@@ -1519,9 +1363,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.1/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.Emit.dll": {}
@@ -1535,9 +1377,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
@@ -1552,9 +1392,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
@@ -1569,9 +1407,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Reflection.Extensions.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
}
},
"System.Reflection.Metadata/1.4.1": {
@@ -1595,14 +1431,10 @@
"System.Threading": "4.3.0"
},
"compile": {
- "lib/netstandard1.1/_._": {
- "related": ".xml"
- }
+ "lib/netstandard1.1/_._": {}
},
"runtime": {
- "lib/netstandard1.1/System.Reflection.Metadata.dll": {
- "related": ".xml"
- }
+ "lib/netstandard1.1/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.3.0": {
@@ -1613,9 +1445,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Reflection.Primitives.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
}
},
"System.Reflection.TypeExtensions/4.3.0": {
@@ -1625,9 +1455,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/_._": {}
},
"runtime": {
"lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
@@ -1643,9 +1471,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
}
},
"System.Runtime/4.3.0": {
@@ -1655,22 +1481,16 @@
"Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.Runtime.dll": {}
}
},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"type": "package",
"compile": {
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"runtime": {
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
@@ -1684,9 +1504,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.Extensions.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
}
},
"System.Runtime.Handles/4.3.0": {
@@ -1697,9 +1515,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Runtime.Handles.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.3.0": {
@@ -1752,9 +1568,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.Loader.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {}
},
"runtime": {
"lib/netstandard1.5/System.Runtime.Loader.dll": {}
@@ -1769,9 +1583,7 @@
"System.Runtime.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.1/System.Runtime.Numerics.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
@@ -1784,14 +1596,10 @@
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
- "ref/netstandard2.0/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
+ "ref/netstandard2.0/System.Security.AccessControl.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Security.AccessControl.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
@@ -1913,9 +1721,7 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
@@ -1979,14 +1785,10 @@
"System.Security.Cryptography.ProtectedData/4.7.0": {
"type": "package",
"compile": {
- "ref/netstandard2.0/_._": {
- "related": ".xml"
- }
+ "ref/netstandard2.0/_._": {}
},
"runtime": {
- "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
@@ -2025,9 +1827,7 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
@@ -2047,27 +1847,19 @@
"System.Windows.Extensions": "4.7.0"
},
"compile": {
- "ref/netcoreapp3.0/System.Security.Permissions.dll": {
- "related": ".xml"
- }
+ "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
},
"runtime": {
- "lib/netcoreapp3.0/System.Security.Permissions.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
}
},
"System.Security.Principal.Windows/4.7.0": {
"type": "package",
"compile": {
- "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
@@ -2088,9 +1880,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Text.Encoding.dll": {}
}
},
"System.Text.Encoding.CodePages/8.0.0": {
@@ -2100,14 +1890,10 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets": {}
@@ -2122,9 +1908,7 @@
"System.Text.Encoding": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
}
},
"System.Text.Encodings.Web/7.0.0": {
@@ -2135,14 +1919,10 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
@@ -2160,14 +1940,10 @@
"System.Threading.Tasks.Extensions": "4.5.4"
},
"compile": {
- "lib/netstandard2.0/System.Text.Json.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Json.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Text.Json.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Json.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
@@ -2192,9 +1968,7 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Threading.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Threading.dll": {}
@@ -2209,9 +1983,7 @@
"System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.Overlapped.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Threading.Overlapped.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": {
@@ -2232,9 +2004,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.Tasks.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.5.4": {
@@ -2252,9 +2022,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.Thread.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Threading.Thread.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Threading.Thread.dll": {}
@@ -2267,9 +2035,7 @@
"System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
@@ -2283,9 +2049,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.2/System.Threading.Timer.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.2/System.Threading.Timer.dll": {}
}
},
"System.Windows.Extensions/4.7.0": {
@@ -2294,14 +2058,10 @@
"System.Drawing.Common": "4.7.0"
},
"compile": {
- "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
- "related": ".xml"
- }
+ "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
},
"runtime": {
- "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
@@ -2330,9 +2090,7 @@
"System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
@@ -2355,9 +2113,7 @@
"System.Xml.ReaderWriter": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Xml.XDocument.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XDocument.dll": {}
@@ -2384,20 +2140,12 @@
"System.Data.SqlClient": "4.8.1"
},
"compile": {
- "lib/netstandard2.1/EntityFramework.SqlServer.dll": {
- "related": ".xml"
- },
- "lib/netstandard2.1/EntityFramework.dll": {
- "related": ".SqlServer.xml;.xml"
- }
+ "lib/netstandard2.1/EntityFramework.SqlServer.dll": {},
+ "lib/netstandard2.1/EntityFramework.dll": {}
},
"runtime": {
- "lib/netstandard2.1/EntityFramework.SqlServer.dll": {
- "related": ".xml"
- },
- "lib/netstandard2.1/EntityFramework.dll": {
- "related": ".SqlServer.xml;.xml"
- }
+ "lib/netstandard2.1/EntityFramework.SqlServer.dll": {},
+ "lib/netstandard2.1/EntityFramework.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.0/EntityFramework.props": {},
@@ -2411,14 +2159,10 @@
"System.Runtime.CompilerServices.Unsafe": "4.5.2"
},
"compile": {
- "lib/netstandard2.0/Google.Protobuf.dll": {
- "related": ".pdb;.xml"
- }
+ "lib/netstandard2.0/Google.Protobuf.dll": {}
},
"runtime": {
- "lib/netstandard2.0/Google.Protobuf.dll": {
- "related": ".pdb;.xml"
- }
+ "lib/netstandard2.0/Google.Protobuf.dll": {}
}
},
"K4os.Compression.LZ4/1.3.5": {
@@ -2427,14 +2171,10 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.1/K4os.Compression.LZ4.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Compression.LZ4.dll": {}
},
"runtime": {
- "lib/netstandard2.1/K4os.Compression.LZ4.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Compression.LZ4.dll": {}
}
},
"K4os.Compression.LZ4.Streams/1.3.5": {
@@ -2445,14 +2185,10 @@
"System.IO.Pipelines": "6.0.3"
},
"compile": {
- "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {}
},
"runtime": {
- "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {}
}
},
"K4os.Hash.xxHash/1.0.8": {
@@ -2461,14 +2197,10 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.1/K4os.Hash.xxHash.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Hash.xxHash.dll": {}
},
"runtime": {
- "lib/netstandard2.1/K4os.Hash.xxHash.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/K4os.Hash.xxHash.dll": {}
}
},
"MaterialSkin/0.2.1": {
@@ -2483,14 +2215,10 @@
"Microsoft.Bcl.AsyncInterfaces/8.0.0": {
"type": "package",
"compile": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
},
"runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
}
},
"Microsoft.CSharp/4.7.0": {
@@ -2508,14 +2236,10 @@
"NETStandard.Library": "1.6.1"
},
"compile": {
- "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
+ "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
+ "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
"Microsoft.Management.Infrastructure/3.0.0": {
@@ -2569,9 +2293,7 @@
"runtime.win.Microsoft.Win32.Primitives": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
"Microsoft.Win32.Registry/4.7.0": {
@@ -2581,14 +2303,10 @@
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
- "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {
- "related": ".xml"
- }
+ "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {}
},
"runtime": {
- "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
- "related": ".xml"
- }
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
}
},
"Microsoft.Win32.SystemEvents/4.7.0": {
@@ -2597,14 +2315,10 @@
"Microsoft.NETCore.Platforms": "3.1.0"
},
"compile": {
- "ref/netstandard2.0/_._": {
- "related": ".xml"
- }
+ "ref/netstandard2.0/_._": {}
},
"runtime": {
- "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
- "related": ".xml"
- }
+ "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {}
}
},
"MySql.Data/8.1.0": {
@@ -2625,14 +2339,10 @@
"ZstdSharp.Port": "0.7.1"
},
"compile": {
- "lib/netstandard2.1/MySql.Data.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/MySql.Data.dll": {}
},
"runtime": {
- "lib/netstandard2.1/MySql.Data.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/MySql.Data.dll": {}
},
"native": {
"runtimes/win-x64/native/comerr64.dll": {},
@@ -2694,27 +2404,19 @@
"Newtonsoft.Json/13.0.3": {
"type": "package",
"compile": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
},
"runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {}
}
},
"Portable.BouncyCastle/1.9.0": {
"type": "package",
"compile": {
- "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
},
"runtime": {
- "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
}
},
"runtime.any.System.Collections/4.3.0": {
@@ -3170,14 +2872,10 @@
"System.Threading.ThreadPool": "4.3.0"
},
"compile": {
- "lib/netstandard1.5/RJCP.SerialPortStream.dll": {
- "related": ".pdb;.xml"
- }
+ "lib/netstandard1.5/RJCP.SerialPortStream.dll": {}
},
"runtime": {
- "lib/netstandard1.5/RJCP.SerialPortStream.dll": {
- "related": ".pdb;.xml"
- }
+ "lib/netstandard1.5/RJCP.SerialPortStream.dll": {}
}
},
"SharpCompress/0.38.0": {
@@ -3188,27 +2886,19 @@
"ZstdSharp.Port": "0.8.1"
},
"compile": {
- "lib/netstandard2.1/SharpCompress.dll": {
- "related": ".pdb"
- }
+ "lib/netstandard2.1/SharpCompress.dll": {}
},
"runtime": {
- "lib/netstandard2.1/SharpCompress.dll": {
- "related": ".pdb"
- }
+ "lib/netstandard2.1/SharpCompress.dll": {}
}
},
"Stub.System.Data.SQLite.Core.NetStandard/1.0.118": {
"type": "package",
"compile": {
- "lib/netstandard2.1/System.Data.SQLite.dll": {
- "related": ".dll.altconfig;.xml"
- }
+ "lib/netstandard2.1/System.Data.SQLite.dll": {}
},
"runtime": {
- "lib/netstandard2.1/System.Data.SQLite.dll": {
- "related": ".dll.altconfig;.xml"
- }
+ "lib/netstandard2.1/System.Data.SQLite.dll": {}
},
"native": {
"runtimes/win-x64/native/SQLite.Interop.dll": {}
@@ -3220,9 +2910,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.AppContext.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.6/System.AppContext.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.AppContext.dll": {}
@@ -3240,14 +2928,10 @@
"System.CodeDom/9.0.0": {
"type": "package",
"compile": {
- "lib/netstandard2.0/System.CodeDom.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.CodeDom.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.CodeDom.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.CodeDom.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.CodeDom.targets": {}
@@ -3262,9 +2946,7 @@
"runtime.any.System.Collections": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Collections.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Collections.dll": {}
}
},
"System.Collections.Concurrent/4.3.0": {
@@ -3282,9 +2964,7 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Collections.Concurrent.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
@@ -3303,14 +2983,10 @@
"System.Threading": "4.3.0"
},
"compile": {
- "lib/netstandard1.0/_._": {
- "related": ".xml"
- }
+ "lib/netstandard1.0/_._": {}
},
"runtime": {
- "lib/netstandard1.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
+ "lib/netstandard1.0/System.Collections.Immutable.dll": {}
}
},
"System.Collections.NonGeneric/4.3.0": {
@@ -3324,9 +3000,7 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
@@ -3344,9 +3018,7 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Collections.Specialized.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Collections.Specialized.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
@@ -3355,14 +3027,10 @@
"System.ComponentModel.Annotations/4.7.0": {
"type": "package",
"compile": {
- "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
- "related": ".xml"
- }
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
},
"runtime": {
- "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
}
},
"System.Configuration.ConfigurationManager/4.7.0": {
@@ -3372,14 +3040,10 @@
"System.Security.Permissions": "4.7.0"
},
"compile": {
- "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
+ "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
}
},
"System.Console/4.3.0": {
@@ -3393,9 +3057,7 @@
"runtime.win.System.Console": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Console.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Console.dll": {}
}
},
"System.Data.SqlClient/4.8.1": {
@@ -3406,14 +3068,10 @@
"runtime.native.System.Data.SqlClient.sni": "4.7.0"
},
"compile": {
- "ref/netcoreapp2.1/System.Data.SqlClient.dll": {
- "related": ".xml"
- }
+ "ref/netcoreapp2.1/System.Data.SqlClient.dll": {}
},
"runtime": {
- "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
- "related": ".xml"
- }
+ "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {}
}
},
"System.Data.SQLite/1.0.118": {
@@ -3450,9 +3108,7 @@
"runtime.win.System.Diagnostics.Debug": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
}
},
"System.Diagnostics.DiagnosticSource/7.0.2": {
@@ -3462,14 +3118,10 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets": {}
@@ -3489,9 +3141,7 @@
"System.Runtime.InteropServices": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {}
@@ -3506,9 +3156,7 @@
"runtime.any.System.Diagnostics.Tools": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
}
},
"System.Diagnostics.TraceSource/4.3.0": {
@@ -3525,9 +3173,7 @@
"runtime.native.System": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
@@ -3542,9 +3188,7 @@
"runtime.any.System.Diagnostics.Tracing": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
}
},
"System.Drawing.Common/4.7.0": {
@@ -3554,14 +3198,10 @@
"Microsoft.Win32.SystemEvents": "4.7.0"
},
"compile": {
- "ref/netcoreapp3.0/_._": {
- "related": ".xml"
- }
+ "ref/netcoreapp3.0/_._": {}
},
"runtime": {
- "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
- "related": ".xml"
- }
+ "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {}
}
},
"System.Globalization/4.3.0": {
@@ -3573,9 +3213,7 @@
"runtime.any.System.Globalization": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Globalization.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Globalization.dll": {}
}
},
"System.Globalization.Calendars/4.3.0": {
@@ -3588,9 +3226,7 @@
"runtime.any.System.Globalization.Calendars": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Globalization.Calendars.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
"System.Globalization.Extensions/4.3.0": {
@@ -3604,9 +3240,7 @@
"System.Runtime.InteropServices": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/_._": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
@@ -3623,9 +3257,7 @@
"runtime.any.System.IO": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.IO.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.IO.dll": {}
}
},
"System.IO.Compression/4.3.0": {
@@ -3648,9 +3280,7 @@
"runtime.native.System.IO.Compression": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.Compression.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.IO.Compression.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
@@ -3670,9 +3300,7 @@
"System.Text.Encoding": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
@@ -3692,9 +3320,7 @@
"runtime.win.System.IO.FileSystem": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.FileSystem.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.3.0": {
@@ -3703,9 +3329,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
@@ -3714,14 +3338,10 @@
"System.IO.Pipelines/6.0.3": {
"type": "package",
"compile": {
- "lib/netcoreapp3.1/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.1/System.IO.Pipelines.dll": {}
},
"runtime": {
- "lib/netcoreapp3.1/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.1/System.IO.Pipelines.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
@@ -3733,14 +3353,10 @@
"runtime.native.System.IO.Ports": "7.0.0"
},
"compile": {
- "lib/netstandard2.0/System.IO.Ports.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.IO.Ports.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.IO.Ports.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.IO.Ports.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.IO.Ports.targets": {}
@@ -3756,9 +3372,7 @@
"System.Runtime.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Linq.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.6/System.Linq.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.Linq.dll": {}
@@ -3786,9 +3400,7 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Linq.Expressions.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.6/System.Linq.Expressions.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.Linq.Expressions.dll": {}
@@ -3800,14 +3412,10 @@
"System.CodeDom": "9.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Management.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Management.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Management.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Management.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.Management.targets": {}
@@ -3853,9 +3461,7 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.Http.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Net.Http.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {}
@@ -3880,9 +3486,7 @@
"runtime.native.System": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.NameResolution.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Net.NameResolution.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {}
@@ -3898,9 +3502,7 @@
"runtime.win.System.Net.Primitives": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.Primitives.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Net.Primitives.dll": {}
}
},
"System.Net.Sockets/4.3.0": {
@@ -3915,9 +3517,7 @@
"runtime.win.System.Net.Sockets": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.Sockets.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
"System.Numerics.Vectors/4.5.0": {
@@ -3939,9 +3539,7 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.ObjectModel.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.ObjectModel.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.ObjectModel.dll": {}
@@ -3968,9 +3566,7 @@
"runtime.any.System.Reflection": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Reflection.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.Reflection.dll": {}
}
},
"System.Reflection.Emit/4.3.0": {
@@ -3983,9 +3579,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.1/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.1/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.Emit.dll": {}
@@ -3999,9 +3593,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
@@ -4016,9 +3608,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/_._": {}
},
"runtime": {
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
@@ -4034,9 +3624,7 @@
"runtime.any.System.Reflection.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Reflection.Extensions.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
}
},
"System.Reflection.Metadata/1.4.1": {
@@ -4060,14 +3648,10 @@
"System.Threading": "4.3.0"
},
"compile": {
- "lib/netstandard1.1/_._": {
- "related": ".xml"
- }
+ "lib/netstandard1.1/_._": {}
},
"runtime": {
- "lib/netstandard1.1/System.Reflection.Metadata.dll": {
- "related": ".xml"
- }
+ "lib/netstandard1.1/System.Reflection.Metadata.dll": {}
}
},
"System.Reflection.Primitives/4.3.0": {
@@ -4079,9 +3663,7 @@
"runtime.any.System.Reflection.Primitives": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Reflection.Primitives.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
}
},
"System.Reflection.TypeExtensions/4.3.0": {
@@ -4091,9 +3673,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/_._": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/_._": {}
},
"runtime": {
"lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
@@ -4110,9 +3690,7 @@
"runtime.any.System.Resources.ResourceManager": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
}
},
"System.Runtime/4.3.0": {
@@ -4123,22 +3701,16 @@
"runtime.any.System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.Runtime.dll": {}
}
},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"type": "package",
"compile": {
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"runtime": {
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
@@ -4153,9 +3725,7 @@
"runtime.win.System.Runtime.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.Extensions.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
}
},
"System.Runtime.Handles/4.3.0": {
@@ -4167,9 +3737,7 @@
"runtime.any.System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Runtime.Handles.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
"System.Runtime.InteropServices/4.3.0": {
@@ -4213,9 +3781,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.Loader.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {}
},
"runtime": {
"lib/netstandard1.5/System.Runtime.Loader.dll": {}
@@ -4230,9 +3796,7 @@
"System.Runtime.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.1/System.Runtime.Numerics.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
@@ -4245,14 +3809,10 @@
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
- "ref/netstandard2.0/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
+ "ref/netstandard2.0/System.Security.AccessControl.dll": {}
},
"runtime": {
- "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.3.0": {
@@ -4343,9 +3903,7 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
@@ -4396,14 +3954,10 @@
"System.Security.Cryptography.ProtectedData/4.7.0": {
"type": "package",
"compile": {
- "ref/netstandard2.0/_._": {
- "related": ".xml"
- }
+ "ref/netstandard2.0/_._": {}
},
"runtime": {
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.3.0": {
@@ -4436,9 +3990,7 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {}
@@ -4451,27 +4003,19 @@
"System.Windows.Extensions": "4.7.0"
},
"compile": {
- "ref/netcoreapp3.0/System.Security.Permissions.dll": {
- "related": ".xml"
- }
+ "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
},
"runtime": {
- "lib/netcoreapp3.0/System.Security.Permissions.dll": {
- "related": ".xml"
- }
+ "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
}
},
"System.Security.Principal.Windows/4.7.0": {
"type": "package",
"compile": {
- "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
},
"runtime": {
- "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {}
}
},
"System.Text.Encoding/4.3.0": {
@@ -4483,9 +4027,7 @@
"runtime.any.System.Text.Encoding": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Text.Encoding.dll": {}
}
},
"System.Text.Encoding.CodePages/8.0.0": {
@@ -4495,14 +4037,10 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets": {}
@@ -4518,9 +4056,7 @@
"runtime.any.System.Text.Encoding.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
}
},
"System.Text.Encodings.Web/7.0.0": {
@@ -4531,14 +4067,10 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
@@ -4556,14 +4088,10 @@
"System.Threading.Tasks.Extensions": "4.5.4"
},
"compile": {
- "lib/netstandard2.0/System.Text.Json.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Json.dll": {}
},
"runtime": {
- "lib/netstandard2.0/System.Text.Json.dll": {
- "related": ".xml"
- }
+ "lib/netstandard2.0/System.Text.Json.dll": {}
},
"build": {
"buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
@@ -4588,9 +4116,7 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Threading.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Threading.dll": {}
@@ -4605,9 +4131,7 @@
"System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.Overlapped.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Threading.Overlapped.dll": {}
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {}
@@ -4622,9 +4146,7 @@
"runtime.any.System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.Tasks.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {}
}
},
"System.Threading.Tasks.Extensions/4.5.4": {
@@ -4642,9 +4164,7 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.Thread.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Threading.Thread.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Threading.Thread.dll": {}
@@ -4657,9 +4177,7 @@
"System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
@@ -4674,9 +4192,7 @@
"runtime.any.System.Threading.Timer": "4.3.0"
},
"compile": {
- "ref/netstandard1.2/System.Threading.Timer.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.2/System.Threading.Timer.dll": {}
}
},
"System.Windows.Extensions/4.7.0": {
@@ -4685,14 +4201,10 @@
"System.Drawing.Common": "4.7.0"
},
"compile": {
- "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
- "related": ".xml"
- }
+ "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
},
"runtime": {
- "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
- "related": ".xml"
- }
+ "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
}
},
"System.Xml.ReaderWriter/4.3.0": {
@@ -4715,9 +4227,7 @@
"System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
@@ -4740,9 +4250,7 @@
"System.Xml.ReaderWriter": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Xml.XDocument.dll": {
- "related": ".xml"
- }
+ "ref/netstandard1.3/System.Xml.XDocument.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Xml.XDocument.dll": {}
@@ -10765,8 +10273,7 @@
"net47",
"net471",
"net472",
- "net48",
- "net481"
+ "net48"
],
"assetTargetFallback": true,
"warn": true,
@@ -10778,7 +10285,7 @@
"privateAssets": "none"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.403\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.416\\RuntimeIdentifierGraph.json"
}
},
"runtimes": {
@@ -10792,7 +10299,7 @@
"code": "NU1701",
"level": "Warning",
"warningLevel": 1,
- "message": "Package 'MaterialSkin 0.2.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework '.NETCoreApp,Version=v3.1'. This package may not be fully compatible with your project.",
+ "message": "Package 'MaterialSkin 0.2.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework '.NETCoreApp,Version=v3.1'. This package may not be fully compatible with your project.",
"libraryId": "MaterialSkin",
"targetGraphs": [
".NETCoreApp,Version=v3.1"
diff --git a/obj/publish/win-x64/project.nuget.cache b/obj/publish/win-x64/project.nuget.cache
index 4db1890..15cb581 100644
--- a/obj/publish/win-x64/project.nuget.cache
+++ b/obj/publish/win-x64/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "z9dARiX7gAMH87wvbJEYWPlzkPiG8Ii8CE1TihTWIoUox3OQLEcdyjc4UuP4xQZA4LthJsdNgvMx/EJjvaXpVQ==",
+ "dgSpecHash": "jBSJscXO+TNxuecCqFdshhaP01Ii6sz33UUw18GyB9gX+k+cUv5HKmCurihppOkqUlFNM3UyYHMzFa5ROPf07A==",
"success": true,
"projectFilePath": "D:\\Projects\\AVS\\AVS.csproj",
"expectedPackageFiles": [
@@ -172,7 +172,7 @@
"code": "NU1701",
"level": "Warning",
"warningLevel": 1,
- "message": "Package 'MaterialSkin 0.2.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework '.NETCoreApp,Version=v3.1'. This package may not be fully compatible with your project.",
+ "message": "Package 'MaterialSkin 0.2.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework '.NETCoreApp,Version=v3.1'. This package may not be fully compatible with your project.",
"libraryId": "MaterialSkin",
"targetGraphs": [
".NETCoreApp,Version=v3.1"