diff --git a/.vs/AVS/DesignTimeBuild/.dtbcache.v2 b/.vs/AVS/DesignTimeBuild/.dtbcache.v2
index 681395e..6d2ee8a 100644
Binary files a/.vs/AVS/DesignTimeBuild/.dtbcache.v2 and b/.vs/AVS/DesignTimeBuild/.dtbcache.v2 differ
diff --git a/.vs/AVS/v16/.suo b/.vs/AVS/v16/.suo
index 4b60e23..f282ad3 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 962ea28..ad69d88 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 7629d6c..a7a385c 100644
Binary files a/.vs/AVS/v17/.suo and b/.vs/AVS/v17/.suo differ
diff --git a/.vs/Documents/FileContentIndex/994bc5a0-d171-4d83-ba3a-d60db20d9eef.vsidx b/.vs/Documents/FileContentIndex/994bc5a0-d171-4d83-ba3a-d60db20d9eef.vsidx
deleted file mode 100644
index a2dcd65..0000000
Binary files a/.vs/Documents/FileContentIndex/994bc5a0-d171-4d83-ba3a-d60db20d9eef.vsidx and /dev/null differ
diff --git a/.vs/Documents/FileContentIndex/read.lock b/.vs/Documents/FileContentIndex/read.lock
deleted file mode 100644
index e69de29..0000000
diff --git a/.vs/Documents/v17/.wsuo b/.vs/Documents/v17/.wsuo
deleted file mode 100644
index 2174f3f..0000000
Binary files a/.vs/Documents/v17/.wsuo and /dev/null differ
diff --git a/.vs/Documents/v17/TestStore/0/000.testlog b/.vs/Documents/v17/TestStore/0/000.testlog
deleted file mode 100644
index 6bbf10e..0000000
Binary files a/.vs/Documents/v17/TestStore/0/000.testlog and /dev/null differ
diff --git a/.vs/Documents/v17/TestStore/0/testlog.manifest b/.vs/Documents/v17/TestStore/0/testlog.manifest
deleted file mode 100644
index e92ede2..0000000
Binary files a/.vs/Documents/v17/TestStore/0/testlog.manifest and /dev/null differ
diff --git a/.vs/ProjectEvaluation/avs.metadata.v7.bin b/.vs/ProjectEvaluation/avs.metadata.v7.bin
index 095af4c..10eb6e9 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 1728023..81f960c 100644
Binary files a/.vs/ProjectEvaluation/avs.projects.v7.bin and b/.vs/ProjectEvaluation/avs.projects.v7.bin differ
diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json
deleted file mode 100644
index accbff5..0000000
--- a/.vs/VSWorkspaceState.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "ExpandedNodes": [
- "",
- "\\My Music"
- ],
- "SelectedNode": "\\MainForm.cs",
- "PreviewInSolutionExplorer": false
-}
\ No newline at end of file
diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite
deleted file mode 100644
index 2ebaa94..0000000
Binary files a/.vs/slnx.sqlite and /dev/null differ
diff --git a/AVS.csproj b/AVS.csproj
index 94ec706..1713437 100644
--- a/AVS.csproj
+++ b/AVS.csproj
@@ -5,7 +5,7 @@
netcoreapp3.1
true
1.0.0.0
- 1.0.0.0
+ 1.0.0.1
@@ -40,7 +40,6 @@
-
diff --git a/MainForm.Designer.cs b/MainForm.Designer.cs
index 4f4d78a..60e2cb3 100644
--- a/MainForm.Designer.cs
+++ b/MainForm.Designer.cs
@@ -275,7 +275,7 @@ namespace AVS
this.btn_reset_port.TabIndex = 57;
this.btn_reset_port.Text = "RESET PORT";
this.btn_reset_port.UseVisualStyleBackColor = false;
- this.btn_reset_port.Visible = true;
+ this.btn_reset_port.Visible = false;
this.btn_reset_port.Click += new System.EventHandler(this.btn_reset_port_Click);
//
// openFileDialog1
diff --git a/MainForm.cs b/MainForm.cs
index 7ac21ef..f8e9b32 100644
--- a/MainForm.cs
+++ b/MainForm.cs
@@ -201,36 +201,6 @@ namespace AVS
}
- //public void fillMarketPlaces()
- //{
- // string connectionString = "Server=utopia-2.c5qech8o9lgg.us-east-1.rds.amazonaws.com;Database=item_verification_system;User Id=itemVerification;Password=itemVerification01;";
-
- // using (MySqlConnection connection = new MySqlConnection(connectionString))
- // {
- // try
- // {
- // connection.Open();
-
- // string query = "SELECT value FROM marketplaces"; // Update this to match your actual table and column
- // MySqlCommand cmd = new MySqlCommand(query, connection);
- // MySqlDataAdapter adapter = new MySqlDataAdapter(cmd);
- // DataTable dt = new DataTable();
- // adapter.Fill(dt);
- // // Create a new row for the '--select--' option
- // DataRow newRow = dt.NewRow();
- // newRow["value"] = "--Select--";
- // dt.Rows.InsertAt(newRow, 0); // Insert at the 0 index
- // cb_marketplace.DisplayMember = "value"; // Column name that will be displayed
- // cb_marketplace.DataSource = dt;
- // connection.Close();
- // }
- // catch (Exception ex)
- // {
- // //MessageBox.Show("An error occurred: " + ex.Message);
- // }
- // }
- // MessageBox.Show("Market place done");
- //}
private void txt_barcode_KeyPress(object sender, KeyPressEventArgs e)
{
@@ -1433,49 +1403,11 @@ namespace AVS
MessageBox.Show(exc.Message);
}
}
- //public async Task CheckVersionAsync()
- //{
- // SoftwareVersionUtility softwareVersionUtility = new SoftwareVersionUtility();
- // //Read version from SVN
- // SVNversion = await softwareVersionUtility.CheckVersion();
- // //Assmbly version in properties
- // Softwareversion = Assembly.GetExecutingAssembly().GetName().Version.ToString();
- // if (SVNversion != Softwareversion)
- // {
- // }
- //}
private async Task ReadFromSerialPort()
{
-
- //try
- //{
- // if (!_operationLock.Wait(0))
- // {
- // // Another operation is already running
- // Debug.WriteLine("CheckVersionAsync is already locked.");
- // return;
- // }
-
- // try
- // {
- // // Call CheckVersionAsync only once
- // //await Updater.CheckVersionAsync();
- // }
- // finally
- // {
- // // _operationLock.Release();
- // }
- //}
- //catch (Exception ex)
- //{
- // Debug.WriteLine($"Error during version check: {ex.Message}");
- //}
-
- //--------- For updater end
-
// Get a compatible port
string portName = GetCompatiblePort(SerialPortStream.GetPortNames());
@@ -1585,39 +1517,18 @@ namespace AVS
_serialPort?.Dispose();
_serialPort = null;
}
+
+ // Run the update process in another thread
+ _ = RunUpdateProcessAsync();
+
}
- //public void ForNewWeightScale(string data)
- //{
- // // Split the data into segments based on the "=" delimiter
- // string[] segments = data.Split('=');
- // foreach (string segment in segments)
- // {
- // // Trim any trailing or leading '.' and whitespace
- // string numericPart = segment.Trim('.').Trim();
-
- // // Check if the segment contains a valid numeric part
- // if (!string.IsNullOrEmpty(numericPart) && long.TryParse(numericPart, out long numericValue))
- // {
- // // Dynamically process the numeric value based on site or conditions
- // double processedWeight = numericValue; // Default as raw numeric value
+ private async Task RunUpdateProcessAsync()
+ {
+ await Updater.CheckVersionAsync();
+ }
- // // Example dynamic rule for SITE-05 (reverse the number)
- // string reversedString = new string(numericPart.Reverse().ToArray());
- // if (long.TryParse(reversedString, out long reversedValue))
- // {
- // processedWeight = reversedValue; // Use reversed value dynamically
- // }
-
- // UpdateUI(processedWeight, isDataReceived: true);
- // }
- // else
- // {
-
- // }
- // }
- //}
public void StopReading()
{
_timer?.Change(Timeout.Infinite, 0); // Stop the timer when needed
@@ -1959,8 +1870,8 @@ namespace AVS
public static void DisableDevice(string deviceInstanceId)
{
-
-
+
+
IntPtr deviceInfoSet = SetupDiGetClassDevs(IntPtr.Zero, deviceInstanceId, IntPtr.Zero, DIGCF_PRESENT);
if (deviceInfoSet == IntPtr.Zero)
{
diff --git a/Properties/PublishProfiles/ClickOnceProfile.pubxml.user b/Properties/PublishProfiles/ClickOnceProfile.pubxml.user
index ebb93fa..08c0a9d 100644
--- a/Properties/PublishProfiles/ClickOnceProfile.pubxml.user
+++ b/Properties/PublishProfiles/ClickOnceProfile.pubxml.user
@@ -4,6 +4,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
-->
- True|2025-02-07T05:32:29.7309449Z;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-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;
+
\ No newline at end of file
diff --git a/Updater.cs b/Updater.cs
index a7d1218..a79d11b 100644
--- a/Updater.cs
+++ b/Updater.cs
@@ -24,6 +24,7 @@ namespace AVS
// If versions are different, trigger the update
if (SVNversion != Softwareversion)
{
+
DialogResult dialogResult = MessageBox.Show("A new version is available. Do you want to update now?",
"Update Available", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
@@ -32,6 +33,13 @@ namespace AVS
// Start the update process
await StartUpdateProcessAsync();
}
+ else
+ {
+ // retries update if user does not want to update in 5 minutes
+ await Task.Delay(TimeSpan.FromSeconds(300));
+ await StartUpdateProcessAsync();
+ }
+
}
}
@@ -39,45 +47,23 @@ namespace AVS
{
try
{
- string updaterPath = @"\\FileServer\eData\AVS\AVSUpdater.exe";
-
- // Copy the updater executable to a temporary location
- //if (!File.Exists(updaterPath))
- //{
- // using (Stream resourceStream = Assembly.GetExecutingAssembly()
- // .GetManifestResourceStream("AVS.Resources.AVSUpdater.exe"))
- // {
- // if (resourceStream != null)
- // {
- // using (FileStream fileStream = new FileStream(updaterPath, FileMode.Create, FileAccess.Write))
- // {
- // await resourceStream.CopyToAsync(fileStream);
- // }
- // }
- // else
- // {
- // MessageBox.Show("Updater resource not found.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
- // return;
- // }
- // }
- //}
-
- //string sourcePath = @"\\FileServer\eData\AVS";
- //string destinationPath = @"C:\Users\Public\Documents\AVS";
+ string updaterPath = "C:\\Users\\Public\\Documents\\AVS\\AVSUpdater.exe";
+
// Start the updater process
ProcessStartInfo processStartInfo = new ProcessStartInfo
{
FileName = updaterPath,
//Arguments = $"\"{sourcePath}\" \"{destinationPath}\"",
UseShellExecute = false,
- CreateNoWindow = true,
+ //CreateNoWindow = true,
};
Process.Start(processStartInfo);
// Close the current application
- await Task.Delay(3000); // Delay to allow the updater to initialize
+ //await Task.Delay(1000); // Delay to allow the updater to initialize
+
Environment.Exit(0);
}
catch (Exception ex)
diff --git a/bin/Debug/AVS.1.0.0.nupkg b/bin/Debug/AVS.1.0.0.nupkg
deleted file mode 100644
index 7bd51ba..0000000
Binary files a/bin/Debug/AVS.1.0.0.nupkg and /dev/null differ
diff --git a/bin/Debug/netcoreapp3.1/AVS.deps.json b/bin/Debug/netcoreapp3.1/AVS.deps.json
index 11ebba1..150d8da 100644
--- a/bin/Debug/netcoreapp3.1/AVS.deps.json
+++ b/bin/Debug/netcoreapp3.1/AVS.deps.json
@@ -9,7 +9,6 @@
"AVS/1.0.0": {
"dependencies": {
"MaterialSkin": "0.2.1",
- "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
"Microsoft.Management.Infrastructure": "3.0.0",
"MySql.Data": "8.1.0",
"Newtonsoft.Json": "13.0.3",
diff --git a/bin/Debug/netcoreapp3.1/AVS.dll b/bin/Debug/netcoreapp3.1/AVS.dll
index 060034a..3eb25ae 100644
Binary files a/bin/Debug/netcoreapp3.1/AVS.dll and b/bin/Debug/netcoreapp3.1/AVS.dll differ
diff --git a/bin/Debug/netcoreapp3.1/AVS.exe b/bin/Debug/netcoreapp3.1/AVS.exe
index cc449b3..407cfb0 100644
Binary files a/bin/Debug/netcoreapp3.1/AVS.exe and b/bin/Debug/netcoreapp3.1/AVS.exe differ
diff --git a/bin/Debug/netcoreapp3.1/AVS.pdb b/bin/Debug/netcoreapp3.1/AVS.pdb
index 14f18e3..2d63c86 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.deps.json b/bin/Release/netcoreapp3.1/AVS.deps.json
index 11ebba1..150d8da 100644
--- a/bin/Release/netcoreapp3.1/AVS.deps.json
+++ b/bin/Release/netcoreapp3.1/AVS.deps.json
@@ -9,7 +9,6 @@
"AVS/1.0.0": {
"dependencies": {
"MaterialSkin": "0.2.1",
- "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
"Microsoft.Management.Infrastructure": "3.0.0",
"MySql.Data": "8.1.0",
"Newtonsoft.Json": "13.0.3",
diff --git a/bin/Release/netcoreapp3.1/AVS.dll b/bin/Release/netcoreapp3.1/AVS.dll
index 4506c02..1a44b1a 100644
Binary files a/bin/Release/netcoreapp3.1/AVS.dll and b/bin/Release/netcoreapp3.1/AVS.dll differ
diff --git a/bin/Release/netcoreapp3.1/AVS.exe b/bin/Release/netcoreapp3.1/AVS.exe
index cc449b3..407cfb0 100644
Binary files a/bin/Release/netcoreapp3.1/AVS.exe and b/bin/Release/netcoreapp3.1/AVS.exe differ
diff --git a/bin/Release/netcoreapp3.1/AVS.pdb b/bin/Release/netcoreapp3.1/AVS.pdb
index 26533ac..ab10b53 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 4932b40..8f97ce4 100644
--- a/bin/Release/netcoreapp3.1/AVS.runtimeconfig.json
+++ b/bin/Release/netcoreapp3.1/AVS.runtimeconfig.json
@@ -4,6 +4,9 @@
"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/credentials.txt b/bin/Release/netcoreapp3.1/credentials.txt
deleted file mode 100644
index ac9b255..0000000
--- a/bin/Release/netcoreapp3.1/credentials.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-muhammad.faique
-Faique12345`
-False
diff --git a/bin/Release/netcoreapp3.1/win-x64/AVS.application b/bin/Release/netcoreapp3.1/win-x64/AVS.application
index 70cf157..ef6cd04 100644
--- a/bin/Release/netcoreapp3.1/win-x64/AVS.application
+++ b/bin/Release/netcoreapp3.1/win-x64/AVS.application
@@ -14,7 +14,7 @@
- E7u2IgGBKTU5/op9j5dbYhwlJsYKGxKdzTIbINPHATI=
+ KvPXDue8jpizVW3pVfuUQZBI//1BsNryaaCTGnLB8PY=
diff --git a/bin/Release/netcoreapp3.1/win-x64/AVS.deps.json b/bin/Release/netcoreapp3.1/win-x64/AVS.deps.json
index cba7552..7618489 100644
--- a/bin/Release/netcoreapp3.1/win-x64/AVS.deps.json
+++ b/bin/Release/netcoreapp3.1/win-x64/AVS.deps.json
@@ -10,7 +10,6 @@
"AVS/1.0.0": {
"dependencies": {
"MaterialSkin": "0.2.1",
- "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
"Microsoft.Management.Infrastructure": "3.0.0",
"MySql.Data": "8.1.0",
"Newtonsoft.Json": "13.0.3",
diff --git a/bin/Release/netcoreapp3.1/win-x64/AVS.dll b/bin/Release/netcoreapp3.1/win-x64/AVS.dll
index 02e96f5..ef9502b 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 d857fe2..e5e718c 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 @@
-
+
- zenZpxCWN4UnTWL3o4kaqnxkBDEsElf1oT+KWnKHg+c=
+ rGL1YG5MTxsEqJYYgNVqsSMqfphKY7EHUL5m+0JkZHg=
\ No newline at end of file
diff --git a/bin/Release/netcoreapp3.1/win-x64/AVS.exe b/bin/Release/netcoreapp3.1/win-x64/AVS.exe
index 33ab745..0f24046 100644
Binary files a/bin/Release/netcoreapp3.1/win-x64/AVS.exe and b/bin/Release/netcoreapp3.1/win-x64/AVS.exe differ
diff --git a/bin/Release/netcoreapp3.1/win-x64/AVS.pdb b/bin/Release/netcoreapp3.1/win-x64/AVS.pdb
index 7671a96..6c73fb4 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 4932b40..8f97ce4 100644
--- a/bin/Release/netcoreapp3.1/win-x64/AVS.runtimeconfig.json
+++ b/bin/Release/netcoreapp3.1/win-x64/AVS.runtimeconfig.json
@@ -4,6 +4,9 @@
"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 cccf043..d8dee16 100644
--- a/bin/publish/AVS.application
+++ b/bin/publish/AVS.application
@@ -14,7 +14,7 @@
- E7u2IgGBKTU5/op9j5dbYhwlJsYKGxKdzTIbINPHATI=
+ KvPXDue8jpizVW3pVfuUQZBI//1BsNryaaCTGnLB8PY=
diff --git a/bin/publish/AVS.exe b/bin/publish/AVS.exe
index c64c857..97bf78e 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 7671a96..6c73fb4 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 d857fe2..e5e718c 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 @@
-
+
- zenZpxCWN4UnTWL3o4kaqnxkBDEsElf1oT+KWnKHg+c=
+ rGL1YG5MTxsEqJYYgNVqsSMqfphKY7EHUL5m+0JkZHg=
\ 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 c64c857..97bf78e 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/bin/publish/alert-alaram.wav b/bin/publish/alert-alaram.wav
deleted file mode 100644
index 8605fd7..0000000
Binary files a/bin/publish/alert-alaram.wav and /dev/null differ
diff --git a/obj/AVS.csproj.nuget.dgspec.json b/obj/AVS.csproj.nuget.dgspec.json
index 450676c..ebf46de 100644
--- a/obj/AVS.csproj.nuget.dgspec.json
+++ b/obj/AVS.csproj.nuget.dgspec.json
@@ -51,10 +51,6 @@
"target": "Package",
"version": "[0.2.1, )"
},
- "Microsoft.Bcl.AsyncInterfaces": {
- "target": "Package",
- "version": "[8.0.0, )"
- },
"Microsoft.Management.Infrastructure": {
"target": "Package",
"version": "[3.0.0, )"
diff --git a/obj/Debug/netcoreapp3.1/AVS.AssemblyInfo.cs b/obj/Debug/netcoreapp3.1/AVS.AssemblyInfo.cs
index 6ca4bdc..3a2eec3 100644
--- a/obj/Debug/netcoreapp3.1/AVS.AssemblyInfo.cs
+++ b/obj/Debug/netcoreapp3.1/AVS.AssemblyInfo.cs
@@ -17,7 +17,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("AVS")]
[assembly: System.Reflection.AssemblyTitleAttribute("AVS")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.1")]
// Generated by the MSBuild WriteCodeFragment class.
diff --git a/obj/Debug/netcoreapp3.1/AVS.AssemblyInfoInputs.cache b/obj/Debug/netcoreapp3.1/AVS.AssemblyInfoInputs.cache
index bf9d702..3fddba0 100644
--- a/obj/Debug/netcoreapp3.1/AVS.AssemblyInfoInputs.cache
+++ b/obj/Debug/netcoreapp3.1/AVS.AssemblyInfoInputs.cache
@@ -1 +1 @@
-291043d55245687b908cc2e155f00e7d7ce7d786
+780de65e10ea97828cb41077d81ed225b0f971cd
diff --git a/obj/Debug/netcoreapp3.1/AVS.assets.cache b/obj/Debug/netcoreapp3.1/AVS.assets.cache
index 832ba2e..7387070 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.CopyComplete b/obj/Debug/netcoreapp3.1/AVS.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/obj/Debug/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt b/obj/Debug/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt
index 974cad6..5df398d 100644
--- a/obj/Debug/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt
+++ b/obj/Debug/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt
@@ -252,6 +252,11 @@ 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
@@ -271,6 +276,7 @@ D:\Projects\AVS\bin\Debug\netcoreapp3.1\MySql.Data.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\BouncyCastle.Crypto.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\RJCP.SerialPortStream.dll
+D:\Projects\AVS\bin\Debug\netcoreapp3.1\SharpCompress.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Data.SQLite.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.CodeDom.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Data.SqlClient.dll
@@ -280,6 +286,7 @@ D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.IO.Pipelines.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.IO.Ports.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Management.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Runtime.CompilerServices.Unsafe.dll
+D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Text.Encoding.CodePages.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Text.Encodings.Web.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Text.Json.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\ZstdSharp.dll
@@ -312,11 +319,7 @@ 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.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
@@ -325,6 +328,3 @@ D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.csproj.CopyComplete
D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.dll
D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.pdb
D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.genruntimeconfig.cache
-D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.csproj.AssemblyReference.cache
-D:\Projects\AVS\bin\Debug\netcoreapp3.1\SharpCompress.dll
-D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Text.Encoding.CodePages.dll
diff --git a/obj/Debug/netcoreapp3.1/AVS.csproj.GenerateResource.cache b/obj/Debug/netcoreapp3.1/AVS.csproj.GenerateResource.cache
index ec80afe..bc03fca 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 060034a..3eb25ae 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 14f18e3..2d63c86 100644
Binary files a/obj/Debug/netcoreapp3.1/AVS.pdb and b/obj/Debug/netcoreapp3.1/AVS.pdb differ
diff --git a/obj/Debug/netcoreapp3.1/apphost.exe b/obj/Debug/netcoreapp3.1/apphost.exe
index cc449b3..407cfb0 100644
Binary files a/obj/Debug/netcoreapp3.1/apphost.exe and b/obj/Debug/netcoreapp3.1/apphost.exe differ
diff --git a/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
index 1b9b2f8..ad8dfe1 100644
--- a/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
+++ b/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
@@ -1,4 +1,4 @@
//
using System;
using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = ".NET Core 3.1")]
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
diff --git a/obj/Release/netcoreapp3.1/AVS.AssemblyInfo.cs b/obj/Release/netcoreapp3.1/AVS.AssemblyInfo.cs
index 74d60b5..1955800 100644
--- a/obj/Release/netcoreapp3.1/AVS.AssemblyInfo.cs
+++ b/obj/Release/netcoreapp3.1/AVS.AssemblyInfo.cs
@@ -17,7 +17,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("AVS")]
[assembly: System.Reflection.AssemblyTitleAttribute("AVS")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.1")]
// Generated by the MSBuild WriteCodeFragment class.
diff --git a/obj/Release/netcoreapp3.1/AVS.AssemblyInfoInputs.cache b/obj/Release/netcoreapp3.1/AVS.AssemblyInfoInputs.cache
index 5d5bb70..954df83 100644
--- a/obj/Release/netcoreapp3.1/AVS.AssemblyInfoInputs.cache
+++ b/obj/Release/netcoreapp3.1/AVS.AssemblyInfoInputs.cache
@@ -1 +1 @@
-b04062d20f973a31fb68dd402e5212ae74047012
+f4d77af5f12cec2bb8275fa2c9d3d3a25ea5c62e
diff --git a/obj/Release/netcoreapp3.1/AVS.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/netcoreapp3.1/AVS.GeneratedMSBuildEditorConfig.editorconfig
index 30eafd2..041a237 100644
--- a/obj/Release/netcoreapp3.1/AVS.GeneratedMSBuildEditorConfig.editorconfig
+++ b/obj/Release/netcoreapp3.1/AVS.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,3 +1,9 @@
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.assets.cache b/obj/Release/netcoreapp3.1/AVS.assets.cache
index e7a3df9..134bc67 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 fde1eb6..97c42be 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.FileListAbsolute.txt b/obj/Release/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt
index 3293a42..e0a02e3 100644
--- a/obj/Release/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt
+++ b/obj/Release/netcoreapp3.1/AVS.csproj.FileListAbsolute.txt
@@ -17,13 +17,17 @@ D:\Projects\AVS\bin\Release\netcoreapp3.1\MySql.Data.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\Newtonsoft.Json.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\BouncyCastle.Crypto.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\RJCP.SerialPortStream.dll
+D:\Projects\AVS\bin\Release\netcoreapp3.1\SharpCompress.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Data.SQLite.dll
+D:\Projects\AVS\bin\Release\netcoreapp3.1\System.CodeDom.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Data.SqlClient.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Data.SQLite.EF6.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\System.IO.Pipelines.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\System.IO.Ports.dll
+D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Management.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Runtime.CompilerServices.Unsafe.dll
+D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Text.Encoding.CodePages.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Text.Encodings.Web.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Text.Json.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\ZstdSharp.dll
@@ -56,6 +60,7 @@ D:\Projects\AVS\bin\Release\netcoreapp3.1\runtimes\win-x64\native\SQLite.Interop
D:\Projects\AVS\bin\Release\netcoreapp3.1\runtimes\win-x86\native\SQLite.Interop.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll
+D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.csproj.AssemblyReference.cache
D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.CartonForm.resources
D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.LoginForm.resources
D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.MainForm.resources
@@ -69,8 +74,3 @@ D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.csproj.CopyComplete
D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.dll
D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.pdb
D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.genruntimeconfig.cache
-D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.csproj.AssemblyReference.cache
-D:\Projects\AVS\bin\Release\netcoreapp3.1\System.CodeDom.dll
-D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Management.dll
-D:\Projects\AVS\bin\Release\netcoreapp3.1\SharpCompress.dll
-D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Text.Encoding.CodePages.dll
diff --git a/obj/Release/netcoreapp3.1/AVS.csproj.GenerateResource.cache b/obj/Release/netcoreapp3.1/AVS.csproj.GenerateResource.cache
index 3bea1e6..b44f1d3 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 4506c02..1a44b1a 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 183759c..4212b6e 100644
--- a/obj/Release/netcoreapp3.1/AVS.genruntimeconfig.cache
+++ b/obj/Release/netcoreapp3.1/AVS.genruntimeconfig.cache
@@ -1 +1 @@
-aab138238c877ec8b9e7be57a7513929e0c4ed07
+3b7286f61495c7d2a729b2ca4204b37093b9b260
diff --git a/obj/Release/netcoreapp3.1/AVS.pdb b/obj/Release/netcoreapp3.1/AVS.pdb
index 26533ac..ab10b53 100644
Binary files a/obj/Release/netcoreapp3.1/AVS.pdb and b/obj/Release/netcoreapp3.1/AVS.pdb differ
diff --git a/obj/Release/netcoreapp3.1/apphost.exe b/obj/Release/netcoreapp3.1/apphost.exe
index cc449b3..407cfb0 100644
Binary files a/obj/Release/netcoreapp3.1/apphost.exe and b/obj/Release/netcoreapp3.1/apphost.exe differ
diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfo.cs b/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfo.cs
index 74d60b5..1955800 100644
--- a/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfo.cs
+++ b/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfo.cs
@@ -17,7 +17,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("AVS")]
[assembly: System.Reflection.AssemblyTitleAttribute("AVS")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.1")]
// Generated by the MSBuild WriteCodeFragment class.
diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfoInputs.cache b/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfoInputs.cache
index 5d5bb70..954df83 100644
--- a/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfoInputs.cache
+++ b/obj/Release/netcoreapp3.1/win-x64/AVS.AssemblyInfoInputs.cache
@@ -1 +1 @@
-b04062d20f973a31fb68dd402e5212ae74047012
+f4d77af5f12cec2bb8275fa2c9d3d3a25ea5c62e
diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/netcoreapp3.1/win-x64/AVS.GeneratedMSBuildEditorConfig.editorconfig
index 30eafd2..041a237 100644
--- a/obj/Release/netcoreapp3.1/win-x64/AVS.GeneratedMSBuildEditorConfig.editorconfig
+++ b/obj/Release/netcoreapp3.1/win-x64/AVS.GeneratedMSBuildEditorConfig.editorconfig
@@ -1,3 +1,9 @@
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.application b/obj/Release/netcoreapp3.1/win-x64/AVS.application
index 70cf157..ef6cd04 100644
--- a/obj/Release/netcoreapp3.1/win-x64/AVS.application
+++ b/obj/Release/netcoreapp3.1/win-x64/AVS.application
@@ -14,7 +14,7 @@
- E7u2IgGBKTU5/op9j5dbYhwlJsYKGxKdzTIbINPHATI=
+ KvPXDue8jpizVW3pVfuUQZBI//1BsNryaaCTGnLB8PY=
diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.assets.cache b/obj/Release/netcoreapp3.1/win-x64/AVS.assets.cache
index b4731bf..52a8e1a 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.FileListAbsolute.txt b/obj/Release/netcoreapp3.1/win-x64/AVS.csproj.FileListAbsolute.txt
index d08b3ec..51c0f9f 100644
--- a/obj/Release/netcoreapp3.1/win-x64/AVS.csproj.FileListAbsolute.txt
+++ b/obj/Release/netcoreapp3.1/win-x64/AVS.csproj.FileListAbsolute.txt
@@ -21,13 +21,17 @@ D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\MySql.Data.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\Newtonsoft.Json.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\BouncyCastle.Crypto.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\RJCP.SerialPortStream.dll
+D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\SharpCompress.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Data.SQLite.dll
+D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.CodeDom.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Data.SqlClient.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Data.SQLite.EF6.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Diagnostics.DiagnosticSource.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.IO.Pipelines.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.IO.Ports.dll
+D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Management.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Runtime.CompilerServices.Unsafe.dll
+D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Text.Encoding.CodePages.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Text.Encodings.Web.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Text.Json.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\ZstdSharp.dll
@@ -54,7 +58,4 @@ D:\Projects\AVS\obj\Release\netcoreapp3.1\win-x64\AVS.application
D:\Projects\AVS\obj\Release\netcoreapp3.1\win-x64\AVS.csproj.CopyComplete
D:\Projects\AVS\obj\Release\netcoreapp3.1\win-x64\AVS.dll
D:\Projects\AVS\obj\Release\netcoreapp3.1\win-x64\AVS.pdb
-D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.CodeDom.dll
-D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Management.dll
-D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\SharpCompress.dll
-D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.Text.Encoding.CodePages.dll
+D:\Projects\AVS\obj\Release\netcoreapp3.1\win-x64\AVS.csproj.AssemblyReference.cache
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 5ba2129..b44f1d3 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 02e96f5..ef9502b 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 d857fe2..e5e718c 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 @@
-
+
- zenZpxCWN4UnTWL3o4kaqnxkBDEsElf1oT+KWnKHg+c=
+ rGL1YG5MTxsEqJYYgNVqsSMqfphKY7EHUL5m+0JkZHg=
\ 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 f4f08a3..843e81c 100644
--- a/obj/Release/netcoreapp3.1/win-x64/AVS.genruntimeconfig.cache
+++ b/obj/Release/netcoreapp3.1/win-x64/AVS.genruntimeconfig.cache
@@ -1 +1 @@
-c0b3ad061c7f74cb84a4f0b38d13b59a87dfef53
+a67c786e42c74a558a9892c7f40ca3f3ffa94154
diff --git a/obj/Release/netcoreapp3.1/win-x64/AVS.pdb b/obj/Release/netcoreapp3.1/win-x64/AVS.pdb
index 7671a96..6c73fb4 100644
Binary files a/obj/Release/netcoreapp3.1/win-x64/AVS.pdb and b/obj/Release/netcoreapp3.1/win-x64/AVS.pdb differ
diff --git a/obj/Release/netcoreapp3.1/win-x64/apphost.exe b/obj/Release/netcoreapp3.1/win-x64/apphost.exe
index 33ab745..0f24046 100644
Binary files a/obj/Release/netcoreapp3.1/win-x64/apphost.exe and b/obj/Release/netcoreapp3.1/win-x64/apphost.exe differ
diff --git a/obj/project.assets.json b/obj/project.assets.json
index 3c59c21..7dccc38 100644
--- a/obj/project.assets.json
+++ b/obj/project.assets.json
@@ -7648,7 +7648,6 @@
"projectFileDependencyGroups": {
".NETCoreApp,Version=v3.1": [
"MaterialSkin >= 0.2.1",
- "Microsoft.Bcl.AsyncInterfaces >= 8.0.0",
"Microsoft.Management.Infrastructure >= 3.0.0",
"MySql.Data >= 8.1.0",
"Newtonsoft.Json >= 13.0.3",
@@ -7711,10 +7710,6 @@
"target": "Package",
"version": "[0.2.1, )"
},
- "Microsoft.Bcl.AsyncInterfaces": {
- "target": "Package",
- "version": "[8.0.0, )"
- },
"Microsoft.Management.Infrastructure": {
"target": "Package",
"version": "[3.0.0, )"
diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache
index cfd5bea..56ba83c 100644
--- a/obj/project.nuget.cache
+++ b/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "QNbNTGu+h1/KOiKWOwagV0AD91N3ZDiiXBDwzgQZ492TlU57m4gvbddfIzuVmuKTrrxSf/B1N8DKBvqOKZCKaA==",
+ "dgSpecHash": "Yc6dAPaG2caIYjP2rH8CkdLo7Q2RCH5D4KXVlbGQzwhGQNvw+YAiWs3KRaa+ey6NjPYbK0E2IXLn0sugPsnCdg==",
"success": true,
"projectFilePath": "D:\\Projects\\AVS\\AVS.csproj",
"expectedPackageFiles": [
diff --git a/obj/publish/win-x64/AVS.csproj.nuget.dgspec.json b/obj/publish/win-x64/AVS.csproj.nuget.dgspec.json
index 13d66fe..b95817a 100644
--- a/obj/publish/win-x64/AVS.csproj.nuget.dgspec.json
+++ b/obj/publish/win-x64/AVS.csproj.nuget.dgspec.json
@@ -51,10 +51,6 @@
"target": "Package",
"version": "[0.2.1, )"
},
- "Microsoft.Bcl.AsyncInterfaces": {
- "target": "Package",
- "version": "[8.0.0, )"
- },
"Microsoft.Management.Infrastructure": {
"target": "Package",
"version": "[3.0.0, )"
@@ -94,7 +90,8 @@
"net47",
"net471",
"net472",
- "net48"
+ "net48",
+ "net481"
],
"assetTargetFallback": true,
"warn": true,
@@ -106,7 +103,7 @@
"privateAssets": "none"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.416\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.403\\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 bb86c56..d24f39d 100644
--- a/obj/publish/win-x64/AVS.csproj.nuget.g.props
+++ b/obj/publish/win-x64/AVS.csproj.nuget.g.props
@@ -7,16 +7,13 @@
$(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
- 5.11.6
+ 6.7.0
-
- $(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 d4769b1..357db68 100644
--- a/obj/publish/win-x64/AVS.csproj.nuget.g.targets
+++ b/obj/publish/win-x64/AVS.csproj.nuget.g.targets
@@ -1,8 +1,5 @@
-
- $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
-
diff --git a/obj/publish/win-x64/project.assets.json b/obj/publish/win-x64/project.assets.json
index b684b08..9e7919f 100644
--- a/obj/publish/win-x64/project.assets.json
+++ b/obj/publish/win-x64/project.assets.json
@@ -12,12 +12,20 @@
"System.Data.SqlClient": "4.8.1"
},
"compile": {
- "lib/netstandard2.1/EntityFramework.SqlServer.dll": {},
- "lib/netstandard2.1/EntityFramework.dll": {}
+ "lib/netstandard2.1/EntityFramework.SqlServer.dll": {
+ "related": ".xml"
+ },
+ "lib/netstandard2.1/EntityFramework.dll": {
+ "related": ".SqlServer.xml;.xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/EntityFramework.SqlServer.dll": {},
- "lib/netstandard2.1/EntityFramework.dll": {}
+ "lib/netstandard2.1/EntityFramework.SqlServer.dll": {
+ "related": ".xml"
+ },
+ "lib/netstandard2.1/EntityFramework.dll": {
+ "related": ".SqlServer.xml;.xml"
+ }
},
"build": {
"buildTransitive/netcoreapp3.0/EntityFramework.props": {},
@@ -31,10 +39,14 @@
"System.Runtime.CompilerServices.Unsafe": "4.5.2"
},
"compile": {
- "lib/netstandard2.0/Google.Protobuf.dll": {}
+ "lib/netstandard2.0/Google.Protobuf.dll": {
+ "related": ".pdb;.xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/Google.Protobuf.dll": {}
+ "lib/netstandard2.0/Google.Protobuf.dll": {
+ "related": ".pdb;.xml"
+ }
}
},
"K4os.Compression.LZ4/1.3.5": {
@@ -43,10 +55,14 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.1/K4os.Compression.LZ4.dll": {}
+ "lib/netstandard2.1/K4os.Compression.LZ4.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/K4os.Compression.LZ4.dll": {}
+ "lib/netstandard2.1/K4os.Compression.LZ4.dll": {
+ "related": ".xml"
+ }
}
},
"K4os.Compression.LZ4.Streams/1.3.5": {
@@ -57,10 +73,14 @@
"System.IO.Pipelines": "6.0.3"
},
"compile": {
- "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {}
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {}
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
+ "related": ".xml"
+ }
}
},
"K4os.Hash.xxHash/1.0.8": {
@@ -69,10 +89,14 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.1/K4os.Hash.xxHash.dll": {}
+ "lib/netstandard2.1/K4os.Hash.xxHash.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/K4os.Hash.xxHash.dll": {}
+ "lib/netstandard2.1/K4os.Hash.xxHash.dll": {
+ "related": ".xml"
+ }
}
},
"MaterialSkin/0.2.1": {
@@ -87,10 +111,14 @@
"Microsoft.Bcl.AsyncInterfaces/8.0.0": {
"type": "package",
"compile": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "related": ".xml"
+ }
}
},
"Microsoft.CSharp/4.7.0": {
@@ -108,10 +136,14 @@
"NETStandard.Library": "1.6.1"
},
"compile": {
- "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
}
},
"Microsoft.Management.Infrastructure/3.0.0": {
@@ -201,7 +233,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
+ "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
+ "related": ".xml"
+ }
}
},
"Microsoft.Win32.Registry/4.7.0": {
@@ -211,10 +245,14 @@
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
- "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {}
+ "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
@@ -233,10 +271,14 @@
"Microsoft.NETCore.Platforms": "3.1.0"
},
"compile": {
- "ref/netstandard2.0/_._": {}
+ "ref/netstandard2.0/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
+ "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
@@ -263,10 +305,14 @@
"ZstdSharp.Port": "0.7.1"
},
"compile": {
- "lib/netstandard2.1/MySql.Data.dll": {}
+ "lib/netstandard2.1/MySql.Data.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/MySql.Data.dll": {}
+ "lib/netstandard2.1/MySql.Data.dll": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/win-x64/native/comerr64.dll": {
@@ -343,19 +389,27 @@
"Newtonsoft.Json/13.0.3": {
"type": "package",
"compile": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "related": ".xml"
+ }
}
},
"Portable.BouncyCastle/1.9.0": {
"type": "package",
"compile": {
- "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
+ "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
+ "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
+ "related": ".xml"
+ }
}
},
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
@@ -633,10 +687,14 @@
"System.Threading.ThreadPool": "4.3.0"
},
"compile": {
- "lib/netstandard1.5/RJCP.SerialPortStream.dll": {}
+ "lib/netstandard1.5/RJCP.SerialPortStream.dll": {
+ "related": ".pdb;.xml"
+ }
},
"runtime": {
- "lib/netstandard1.5/RJCP.SerialPortStream.dll": {}
+ "lib/netstandard1.5/RJCP.SerialPortStream.dll": {
+ "related": ".pdb;.xml"
+ }
}
},
"SharpCompress/0.38.0": {
@@ -647,19 +705,27 @@
"ZstdSharp.Port": "0.8.1"
},
"compile": {
- "lib/netstandard2.1/SharpCompress.dll": {}
+ "lib/netstandard2.1/SharpCompress.dll": {
+ "related": ".pdb"
+ }
},
"runtime": {
- "lib/netstandard2.1/SharpCompress.dll": {}
+ "lib/netstandard2.1/SharpCompress.dll": {
+ "related": ".pdb"
+ }
}
},
"Stub.System.Data.SQLite.Core.NetStandard/1.0.118": {
"type": "package",
"compile": {
- "lib/netstandard2.1/System.Data.SQLite.dll": {}
+ "lib/netstandard2.1/System.Data.SQLite.dll": {
+ "related": ".dll.altconfig;.xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/System.Data.SQLite.dll": {}
+ "lib/netstandard2.1/System.Data.SQLite.dll": {
+ "related": ".dll.altconfig;.xml"
+ }
},
"runtimeTargets": {
"runtimes/linux-x64/native/SQLite.Interop.dll": {
@@ -686,7 +752,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.AppContext.dll": {}
+ "ref/netstandard1.6/System.AppContext.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.6/System.AppContext.dll": {}
@@ -704,10 +772,14 @@
"System.CodeDom/9.0.0": {
"type": "package",
"compile": {
- "lib/netstandard2.0/System.CodeDom.dll": {}
+ "lib/netstandard2.0/System.CodeDom.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.CodeDom.dll": {}
+ "lib/netstandard2.0/System.CodeDom.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp2.0/System.CodeDom.targets": {}
@@ -721,7 +793,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Collections.dll": {}
+ "ref/netstandard1.3/System.Collections.dll": {
+ "related": ".xml"
+ }
}
},
"System.Collections.Concurrent/4.3.0": {
@@ -739,7 +813,9 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
+ "ref/netstandard1.3/System.Collections.Concurrent.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
@@ -758,10 +834,14 @@
"System.Threading": "4.3.0"
},
"compile": {
- "lib/netstandard1.0/_._": {}
+ "lib/netstandard1.0/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard1.0/System.Collections.Immutable.dll": {}
+ "lib/netstandard1.0/System.Collections.Immutable.dll": {
+ "related": ".xml"
+ }
}
},
"System.Collections.NonGeneric/4.3.0": {
@@ -775,7 +855,9 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/_._": {}
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
@@ -793,7 +875,9 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Collections.Specialized.dll": {}
+ "ref/netstandard1.3/System.Collections.Specialized.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
@@ -802,10 +886,14 @@
"System.ComponentModel.Annotations/4.7.0": {
"type": "package",
"compile": {
- "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
+ "related": ".xml"
+ }
}
},
"System.Configuration.ConfigurationManager/4.7.0": {
@@ -815,10 +903,14 @@
"System.Security.Permissions": "4.7.0"
},
"compile": {
- "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
+ "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
}
},
"System.Console/4.3.0": {
@@ -831,7 +923,9 @@
"System.Text.Encoding": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Console.dll": {}
+ "ref/netstandard1.3/System.Console.dll": {
+ "related": ".xml"
+ }
}
},
"System.Data.SqlClient/4.8.1": {
@@ -842,10 +936,14 @@
"runtime.native.System.Data.SqlClient.sni": "4.7.0"
},
"compile": {
- "ref/netcoreapp2.1/System.Data.SqlClient.dll": {}
+ "ref/netcoreapp2.1/System.Data.SqlClient.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netcoreapp2.1/System.Data.SqlClient.dll": {}
+ "lib/netcoreapp2.1/System.Data.SqlClient.dll": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
@@ -891,7 +989,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
+ "related": ".xml"
+ }
}
},
"System.Diagnostics.DiagnosticSource/7.0.2": {
@@ -901,10 +1001,14 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {}
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {}
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets": {}
@@ -924,7 +1028,9 @@
"System.Runtime.InteropServices": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {}
+ "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
@@ -945,7 +1051,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
+ "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
+ "related": ".xml"
+ }
}
},
"System.Diagnostics.TraceSource/4.3.0": {
@@ -962,7 +1070,9 @@
"runtime.native.System": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
+ "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
@@ -983,7 +1093,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
+ "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
+ "related": ".xml"
+ }
}
},
"System.Drawing.Common/4.7.0": {
@@ -993,7 +1105,9 @@
"Microsoft.Win32.SystemEvents": "4.7.0"
},
"compile": {
- "ref/netcoreapp3.0/_._": {}
+ "ref/netcoreapp3.0/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard2.0/System.Drawing.Common.dll": {}
@@ -1017,7 +1131,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Globalization.dll": {}
+ "ref/netstandard1.3/System.Globalization.dll": {
+ "related": ".xml"
+ }
}
},
"System.Globalization.Calendars/4.3.0": {
@@ -1029,7 +1145,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
+ "ref/netstandard1.3/System.Globalization.Calendars.dll": {
+ "related": ".xml"
+ }
}
},
"System.Globalization.Extensions/4.3.0": {
@@ -1043,7 +1161,9 @@
"System.Runtime.InteropServices": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/_._": {}
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
@@ -1066,7 +1186,9 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.IO.dll": {}
+ "ref/netstandard1.5/System.IO.dll": {
+ "related": ".xml"
+ }
}
},
"System.IO.Compression/4.3.0": {
@@ -1089,7 +1211,9 @@
"runtime.native.System.IO.Compression": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.Compression.dll": {}
+ "ref/netstandard1.3/System.IO.Compression.dll": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
@@ -1116,7 +1240,9 @@
"System.Text.Encoding": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
+ "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
@@ -1135,7 +1261,9 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.FileSystem.dll": {}
+ "ref/netstandard1.3/System.IO.FileSystem.dll": {
+ "related": ".xml"
+ }
}
},
"System.IO.FileSystem.Primitives/4.3.0": {
@@ -1144,7 +1272,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
@@ -1153,10 +1283,14 @@
"System.IO.Pipelines/6.0.3": {
"type": "package",
"compile": {
- "lib/netcoreapp3.1/System.IO.Pipelines.dll": {}
+ "lib/netcoreapp3.1/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netcoreapp3.1/System.IO.Pipelines.dll": {}
+ "lib/netcoreapp3.1/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
@@ -1168,10 +1302,14 @@
"runtime.native.System.IO.Ports": "7.0.0"
},
"compile": {
- "lib/netstandard2.0/System.IO.Ports.dll": {}
+ "lib/netstandard2.0/System.IO.Ports.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.IO.Ports.dll": {}
+ "lib/netstandard2.0/System.IO.Ports.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp2.0/System.IO.Ports.targets": {}
@@ -1187,7 +1325,9 @@
"System.Runtime.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Linq.dll": {}
+ "ref/netstandard1.6/System.Linq.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.6/System.Linq.dll": {}
@@ -1215,7 +1355,9 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Linq.Expressions.dll": {}
+ "ref/netstandard1.6/System.Linq.Expressions.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.6/System.Linq.Expressions.dll": {}
@@ -1227,10 +1369,14 @@
"System.CodeDom": "9.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Management.dll": {}
+ "lib/netstandard2.0/System.Management.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.Management.dll": {}
+ "lib/netstandard2.0/System.Management.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp2.0/System.Management.targets": {}
@@ -1276,7 +1422,9 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.Http.dll": {}
+ "ref/netstandard1.3/System.Net.Http.dll": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
@@ -1298,7 +1446,9 @@
"System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.Primitives.dll": {}
+ "ref/netstandard1.3/System.Net.Primitives.dll": {
+ "related": ".xml"
+ }
}
},
"System.Net.Sockets/4.3.0": {
@@ -1312,7 +1462,9 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.Sockets.dll": {}
+ "ref/netstandard1.3/System.Net.Sockets.dll": {
+ "related": ".xml"
+ }
}
},
"System.Numerics.Vectors/4.5.0": {
@@ -1334,7 +1486,9 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.ObjectModel.dll": {}
+ "ref/netstandard1.3/System.ObjectModel.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.ObjectModel.dll": {}
@@ -1350,7 +1504,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Reflection.dll": {}
+ "ref/netstandard1.5/System.Reflection.dll": {
+ "related": ".xml"
+ }
}
},
"System.Reflection.Emit/4.3.0": {
@@ -1363,7 +1519,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.1/_._": {}
+ "ref/netstandard1.1/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Reflection.Emit.dll": {}
@@ -1377,7 +1535,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/_._": {}
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
@@ -1392,7 +1552,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/_._": {}
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
@@ -1407,7 +1569,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
+ "ref/netstandard1.0/System.Reflection.Extensions.dll": {
+ "related": ".xml"
+ }
}
},
"System.Reflection.Metadata/1.4.1": {
@@ -1431,10 +1595,14 @@
"System.Threading": "4.3.0"
},
"compile": {
- "lib/netstandard1.1/_._": {}
+ "lib/netstandard1.1/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard1.1/System.Reflection.Metadata.dll": {}
+ "lib/netstandard1.1/System.Reflection.Metadata.dll": {
+ "related": ".xml"
+ }
}
},
"System.Reflection.Primitives/4.3.0": {
@@ -1445,7 +1613,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {
+ "related": ".xml"
+ }
}
},
"System.Reflection.TypeExtensions/4.3.0": {
@@ -1455,7 +1625,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/_._": {}
+ "ref/netstandard1.5/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
@@ -1471,7 +1643,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
+ "related": ".xml"
+ }
}
},
"System.Runtime/4.3.0": {
@@ -1481,16 +1655,22 @@
"Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.dll": {}
+ "ref/netstandard1.5/System.Runtime.dll": {
+ "related": ".xml"
+ }
}
},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"type": "package",
"compile": {
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
@@ -1504,7 +1684,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
+ "ref/netstandard1.5/System.Runtime.Extensions.dll": {
+ "related": ".xml"
+ }
}
},
"System.Runtime.Handles/4.3.0": {
@@ -1515,7 +1697,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Runtime.Handles.dll": {}
+ "ref/netstandard1.3/System.Runtime.Handles.dll": {
+ "related": ".xml"
+ }
}
},
"System.Runtime.InteropServices/4.3.0": {
@@ -1568,7 +1752,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.Loader.dll": {}
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.5/System.Runtime.Loader.dll": {}
@@ -1583,7 +1769,9 @@
"System.Runtime.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
+ "ref/netstandard1.1/System.Runtime.Numerics.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
@@ -1596,10 +1784,14 @@
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
- "ref/netstandard2.0/System.Security.AccessControl.dll": {}
+ "ref/netstandard2.0/System.Security.AccessControl.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.Security.AccessControl.dll": {}
+ "lib/netstandard2.0/System.Security.AccessControl.dll": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
@@ -1721,7 +1913,9 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
+ "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
@@ -1785,10 +1979,14 @@
"System.Security.Cryptography.ProtectedData/4.7.0": {
"type": "package",
"compile": {
- "ref/netstandard2.0/_._": {}
+ "ref/netstandard2.0/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
@@ -1827,7 +2025,9 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
+ "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
@@ -1847,19 +2047,27 @@
"System.Windows.Extensions": "4.7.0"
},
"compile": {
- "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
+ "ref/netcoreapp3.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
+ "lib/netcoreapp3.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
}
},
"System.Security.Principal.Windows/4.7.0": {
"type": "package",
"compile": {
- "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
@@ -1880,7 +2088,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {}
+ "ref/netstandard1.3/System.Text.Encoding.dll": {
+ "related": ".xml"
+ }
}
},
"System.Text.Encoding.CodePages/8.0.0": {
@@ -1890,10 +2100,14 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets": {}
@@ -1908,7 +2122,9 @@
"System.Text.Encoding": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
+ "related": ".xml"
+ }
}
},
"System.Text.Encodings.Web/7.0.0": {
@@ -1919,10 +2135,14 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
@@ -1940,10 +2160,14 @@
"System.Threading.Tasks.Extensions": "4.5.4"
},
"compile": {
- "lib/netstandard2.0/System.Text.Json.dll": {}
+ "lib/netstandard2.0/System.Text.Json.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.Text.Json.dll": {}
+ "lib/netstandard2.0/System.Text.Json.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
@@ -1968,7 +2192,9 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.dll": {}
+ "ref/netstandard1.3/System.Threading.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Threading.dll": {}
@@ -1983,7 +2209,9 @@
"System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.Overlapped.dll": {}
+ "ref/netstandard1.3/System.Threading.Overlapped.dll": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": {
@@ -2004,7 +2232,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.Tasks.dll": {}
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {
+ "related": ".xml"
+ }
}
},
"System.Threading.Tasks.Extensions/4.5.4": {
@@ -2022,7 +2252,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.Thread.dll": {}
+ "ref/netstandard1.3/System.Threading.Thread.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Threading.Thread.dll": {}
@@ -2035,7 +2267,9 @@
"System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
+ "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
@@ -2049,7 +2283,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.2/System.Threading.Timer.dll": {}
+ "ref/netstandard1.2/System.Threading.Timer.dll": {
+ "related": ".xml"
+ }
}
},
"System.Windows.Extensions/4.7.0": {
@@ -2058,10 +2294,14 @@
"System.Drawing.Common": "4.7.0"
},
"compile": {
- "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
+ "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
+ "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
+ "related": ".xml"
+ }
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
@@ -2090,7 +2330,9 @@
"System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
+ "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
@@ -2113,7 +2355,9 @@
"System.Xml.ReaderWriter": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Xml.XDocument.dll": {}
+ "ref/netstandard1.3/System.Xml.XDocument.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Xml.XDocument.dll": {}
@@ -2140,12 +2384,20 @@
"System.Data.SqlClient": "4.8.1"
},
"compile": {
- "lib/netstandard2.1/EntityFramework.SqlServer.dll": {},
- "lib/netstandard2.1/EntityFramework.dll": {}
+ "lib/netstandard2.1/EntityFramework.SqlServer.dll": {
+ "related": ".xml"
+ },
+ "lib/netstandard2.1/EntityFramework.dll": {
+ "related": ".SqlServer.xml;.xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/EntityFramework.SqlServer.dll": {},
- "lib/netstandard2.1/EntityFramework.dll": {}
+ "lib/netstandard2.1/EntityFramework.SqlServer.dll": {
+ "related": ".xml"
+ },
+ "lib/netstandard2.1/EntityFramework.dll": {
+ "related": ".SqlServer.xml;.xml"
+ }
},
"build": {
"buildTransitive/netcoreapp3.0/EntityFramework.props": {},
@@ -2159,10 +2411,14 @@
"System.Runtime.CompilerServices.Unsafe": "4.5.2"
},
"compile": {
- "lib/netstandard2.0/Google.Protobuf.dll": {}
+ "lib/netstandard2.0/Google.Protobuf.dll": {
+ "related": ".pdb;.xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/Google.Protobuf.dll": {}
+ "lib/netstandard2.0/Google.Protobuf.dll": {
+ "related": ".pdb;.xml"
+ }
}
},
"K4os.Compression.LZ4/1.3.5": {
@@ -2171,10 +2427,14 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.1/K4os.Compression.LZ4.dll": {}
+ "lib/netstandard2.1/K4os.Compression.LZ4.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/K4os.Compression.LZ4.dll": {}
+ "lib/netstandard2.1/K4os.Compression.LZ4.dll": {
+ "related": ".xml"
+ }
}
},
"K4os.Compression.LZ4.Streams/1.3.5": {
@@ -2185,10 +2445,14 @@
"System.IO.Pipelines": "6.0.3"
},
"compile": {
- "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {}
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {}
+ "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
+ "related": ".xml"
+ }
}
},
"K4os.Hash.xxHash/1.0.8": {
@@ -2197,10 +2461,14 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.1/K4os.Hash.xxHash.dll": {}
+ "lib/netstandard2.1/K4os.Hash.xxHash.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/K4os.Hash.xxHash.dll": {}
+ "lib/netstandard2.1/K4os.Hash.xxHash.dll": {
+ "related": ".xml"
+ }
}
},
"MaterialSkin/0.2.1": {
@@ -2215,10 +2483,14 @@
"Microsoft.Bcl.AsyncInterfaces/8.0.0": {
"type": "package",
"compile": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "related": ".xml"
+ }
}
},
"Microsoft.CSharp/4.7.0": {
@@ -2236,10 +2508,14 @@
"NETStandard.Library": "1.6.1"
},
"compile": {
- "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
}
},
"Microsoft.Management.Infrastructure/3.0.0": {
@@ -2293,7 +2569,9 @@
"runtime.win.Microsoft.Win32.Primitives": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
+ "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
+ "related": ".xml"
+ }
}
},
"Microsoft.Win32.Registry/4.7.0": {
@@ -2303,10 +2581,14 @@
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
- "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {}
+ "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "related": ".xml"
+ }
}
},
"Microsoft.Win32.SystemEvents/4.7.0": {
@@ -2315,10 +2597,14 @@
"Microsoft.NETCore.Platforms": "3.1.0"
},
"compile": {
- "ref/netstandard2.0/_._": {}
+ "ref/netstandard2.0/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
- "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {}
+ "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
+ "related": ".xml"
+ }
}
},
"MySql.Data/8.1.0": {
@@ -2339,10 +2625,14 @@
"ZstdSharp.Port": "0.7.1"
},
"compile": {
- "lib/netstandard2.1/MySql.Data.dll": {}
+ "lib/netstandard2.1/MySql.Data.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/MySql.Data.dll": {}
+ "lib/netstandard2.1/MySql.Data.dll": {
+ "related": ".xml"
+ }
},
"native": {
"runtimes/win-x64/native/comerr64.dll": {},
@@ -2404,19 +2694,27 @@
"Newtonsoft.Json/13.0.3": {
"type": "package",
"compile": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {}
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "related": ".xml"
+ }
}
},
"Portable.BouncyCastle/1.9.0": {
"type": "package",
"compile": {
- "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
+ "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
+ "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
+ "related": ".xml"
+ }
}
},
"runtime.any.System.Collections/4.3.0": {
@@ -2872,10 +3170,14 @@
"System.Threading.ThreadPool": "4.3.0"
},
"compile": {
- "lib/netstandard1.5/RJCP.SerialPortStream.dll": {}
+ "lib/netstandard1.5/RJCP.SerialPortStream.dll": {
+ "related": ".pdb;.xml"
+ }
},
"runtime": {
- "lib/netstandard1.5/RJCP.SerialPortStream.dll": {}
+ "lib/netstandard1.5/RJCP.SerialPortStream.dll": {
+ "related": ".pdb;.xml"
+ }
}
},
"SharpCompress/0.38.0": {
@@ -2886,19 +3188,27 @@
"ZstdSharp.Port": "0.8.1"
},
"compile": {
- "lib/netstandard2.1/SharpCompress.dll": {}
+ "lib/netstandard2.1/SharpCompress.dll": {
+ "related": ".pdb"
+ }
},
"runtime": {
- "lib/netstandard2.1/SharpCompress.dll": {}
+ "lib/netstandard2.1/SharpCompress.dll": {
+ "related": ".pdb"
+ }
}
},
"Stub.System.Data.SQLite.Core.NetStandard/1.0.118": {
"type": "package",
"compile": {
- "lib/netstandard2.1/System.Data.SQLite.dll": {}
+ "lib/netstandard2.1/System.Data.SQLite.dll": {
+ "related": ".dll.altconfig;.xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/System.Data.SQLite.dll": {}
+ "lib/netstandard2.1/System.Data.SQLite.dll": {
+ "related": ".dll.altconfig;.xml"
+ }
},
"native": {
"runtimes/win-x64/native/SQLite.Interop.dll": {}
@@ -2910,7 +3220,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.AppContext.dll": {}
+ "ref/netstandard1.6/System.AppContext.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.6/System.AppContext.dll": {}
@@ -2928,10 +3240,14 @@
"System.CodeDom/9.0.0": {
"type": "package",
"compile": {
- "lib/netstandard2.0/System.CodeDom.dll": {}
+ "lib/netstandard2.0/System.CodeDom.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.CodeDom.dll": {}
+ "lib/netstandard2.0/System.CodeDom.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp2.0/System.CodeDom.targets": {}
@@ -2946,7 +3262,9 @@
"runtime.any.System.Collections": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Collections.dll": {}
+ "ref/netstandard1.3/System.Collections.dll": {
+ "related": ".xml"
+ }
}
},
"System.Collections.Concurrent/4.3.0": {
@@ -2964,7 +3282,9 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
+ "ref/netstandard1.3/System.Collections.Concurrent.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
@@ -2983,10 +3303,14 @@
"System.Threading": "4.3.0"
},
"compile": {
- "lib/netstandard1.0/_._": {}
+ "lib/netstandard1.0/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard1.0/System.Collections.Immutable.dll": {}
+ "lib/netstandard1.0/System.Collections.Immutable.dll": {
+ "related": ".xml"
+ }
}
},
"System.Collections.NonGeneric/4.3.0": {
@@ -3000,7 +3324,9 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/_._": {}
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
@@ -3018,7 +3344,9 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Collections.Specialized.dll": {}
+ "ref/netstandard1.3/System.Collections.Specialized.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
@@ -3027,10 +3355,14 @@
"System.ComponentModel.Annotations/4.7.0": {
"type": "package",
"compile": {
- "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
+ "related": ".xml"
+ }
}
},
"System.Configuration.ConfigurationManager/4.7.0": {
@@ -3040,10 +3372,14 @@
"System.Security.Permissions": "4.7.0"
},
"compile": {
- "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
+ "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
}
},
"System.Console/4.3.0": {
@@ -3057,7 +3393,9 @@
"runtime.win.System.Console": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Console.dll": {}
+ "ref/netstandard1.3/System.Console.dll": {
+ "related": ".xml"
+ }
}
},
"System.Data.SqlClient/4.8.1": {
@@ -3068,10 +3406,14 @@
"runtime.native.System.Data.SqlClient.sni": "4.7.0"
},
"compile": {
- "ref/netcoreapp2.1/System.Data.SqlClient.dll": {}
+ "ref/netcoreapp2.1/System.Data.SqlClient.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {}
+ "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
+ "related": ".xml"
+ }
}
},
"System.Data.SQLite/1.0.118": {
@@ -3108,7 +3450,9 @@
"runtime.win.System.Diagnostics.Debug": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
+ "related": ".xml"
+ }
}
},
"System.Diagnostics.DiagnosticSource/7.0.2": {
@@ -3118,10 +3462,14 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {}
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {}
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets": {}
@@ -3141,7 +3489,9 @@
"System.Runtime.InteropServices": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {}
+ "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {}
@@ -3156,7 +3506,9 @@
"runtime.any.System.Diagnostics.Tools": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
+ "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
+ "related": ".xml"
+ }
}
},
"System.Diagnostics.TraceSource/4.3.0": {
@@ -3173,7 +3525,9 @@
"runtime.native.System": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
+ "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
@@ -3188,7 +3542,9 @@
"runtime.any.System.Diagnostics.Tracing": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
+ "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
+ "related": ".xml"
+ }
}
},
"System.Drawing.Common/4.7.0": {
@@ -3198,10 +3554,14 @@
"Microsoft.Win32.SystemEvents": "4.7.0"
},
"compile": {
- "ref/netcoreapp3.0/_._": {}
+ "ref/netcoreapp3.0/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
- "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {}
+ "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
+ "related": ".xml"
+ }
}
},
"System.Globalization/4.3.0": {
@@ -3213,7 +3573,9 @@
"runtime.any.System.Globalization": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Globalization.dll": {}
+ "ref/netstandard1.3/System.Globalization.dll": {
+ "related": ".xml"
+ }
}
},
"System.Globalization.Calendars/4.3.0": {
@@ -3226,7 +3588,9 @@
"runtime.any.System.Globalization.Calendars": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
+ "ref/netstandard1.3/System.Globalization.Calendars.dll": {
+ "related": ".xml"
+ }
}
},
"System.Globalization.Extensions/4.3.0": {
@@ -3240,7 +3604,9 @@
"System.Runtime.InteropServices": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/_._": {}
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
@@ -3257,7 +3623,9 @@
"runtime.any.System.IO": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.IO.dll": {}
+ "ref/netstandard1.5/System.IO.dll": {
+ "related": ".xml"
+ }
}
},
"System.IO.Compression/4.3.0": {
@@ -3280,7 +3648,9 @@
"runtime.native.System.IO.Compression": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.Compression.dll": {}
+ "ref/netstandard1.3/System.IO.Compression.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
@@ -3300,7 +3670,9 @@
"System.Text.Encoding": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
+ "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
@@ -3320,7 +3692,9 @@
"runtime.win.System.IO.FileSystem": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.FileSystem.dll": {}
+ "ref/netstandard1.3/System.IO.FileSystem.dll": {
+ "related": ".xml"
+ }
}
},
"System.IO.FileSystem.Primitives/4.3.0": {
@@ -3329,7 +3703,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
@@ -3338,10 +3714,14 @@
"System.IO.Pipelines/6.0.3": {
"type": "package",
"compile": {
- "lib/netcoreapp3.1/System.IO.Pipelines.dll": {}
+ "lib/netcoreapp3.1/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netcoreapp3.1/System.IO.Pipelines.dll": {}
+ "lib/netcoreapp3.1/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
@@ -3353,10 +3733,14 @@
"runtime.native.System.IO.Ports": "7.0.0"
},
"compile": {
- "lib/netstandard2.0/System.IO.Ports.dll": {}
+ "lib/netstandard2.0/System.IO.Ports.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.IO.Ports.dll": {}
+ "lib/netstandard2.0/System.IO.Ports.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp2.0/System.IO.Ports.targets": {}
@@ -3372,7 +3756,9 @@
"System.Runtime.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Linq.dll": {}
+ "ref/netstandard1.6/System.Linq.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.6/System.Linq.dll": {}
@@ -3400,7 +3786,9 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Linq.Expressions.dll": {}
+ "ref/netstandard1.6/System.Linq.Expressions.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.6/System.Linq.Expressions.dll": {}
@@ -3412,10 +3800,14 @@
"System.CodeDom": "9.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Management.dll": {}
+ "lib/netstandard2.0/System.Management.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.Management.dll": {}
+ "lib/netstandard2.0/System.Management.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp2.0/System.Management.targets": {}
@@ -3461,7 +3853,9 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.Http.dll": {}
+ "ref/netstandard1.3/System.Net.Http.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {}
@@ -3486,7 +3880,9 @@
"runtime.native.System": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.NameResolution.dll": {}
+ "ref/netstandard1.3/System.Net.NameResolution.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {}
@@ -3502,7 +3898,9 @@
"runtime.win.System.Net.Primitives": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.Primitives.dll": {}
+ "ref/netstandard1.3/System.Net.Primitives.dll": {
+ "related": ".xml"
+ }
}
},
"System.Net.Sockets/4.3.0": {
@@ -3517,7 +3915,9 @@
"runtime.win.System.Net.Sockets": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Net.Sockets.dll": {}
+ "ref/netstandard1.3/System.Net.Sockets.dll": {
+ "related": ".xml"
+ }
}
},
"System.Numerics.Vectors/4.5.0": {
@@ -3539,7 +3939,9 @@
"System.Threading": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.ObjectModel.dll": {}
+ "ref/netstandard1.3/System.ObjectModel.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.ObjectModel.dll": {}
@@ -3566,7 +3968,9 @@
"runtime.any.System.Reflection": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Reflection.dll": {}
+ "ref/netstandard1.5/System.Reflection.dll": {
+ "related": ".xml"
+ }
}
},
"System.Reflection.Emit/4.3.0": {
@@ -3579,7 +3983,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.1/_._": {}
+ "ref/netstandard1.1/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Reflection.Emit.dll": {}
@@ -3593,7 +3999,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/_._": {}
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
@@ -3608,7 +4016,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/_._": {}
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
@@ -3624,7 +4034,9 @@
"runtime.any.System.Reflection.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
+ "ref/netstandard1.0/System.Reflection.Extensions.dll": {
+ "related": ".xml"
+ }
}
},
"System.Reflection.Metadata/1.4.1": {
@@ -3648,10 +4060,14 @@
"System.Threading": "4.3.0"
},
"compile": {
- "lib/netstandard1.1/_._": {}
+ "lib/netstandard1.1/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard1.1/System.Reflection.Metadata.dll": {}
+ "lib/netstandard1.1/System.Reflection.Metadata.dll": {
+ "related": ".xml"
+ }
}
},
"System.Reflection.Primitives/4.3.0": {
@@ -3663,7 +4079,9 @@
"runtime.any.System.Reflection.Primitives": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
+ "ref/netstandard1.0/System.Reflection.Primitives.dll": {
+ "related": ".xml"
+ }
}
},
"System.Reflection.TypeExtensions/4.3.0": {
@@ -3673,7 +4091,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/_._": {}
+ "ref/netstandard1.5/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
@@ -3690,7 +4110,9 @@
"runtime.any.System.Resources.ResourceManager": "4.3.0"
},
"compile": {
- "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
+ "related": ".xml"
+ }
}
},
"System.Runtime/4.3.0": {
@@ -3701,16 +4123,22 @@
"runtime.any.System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.dll": {}
+ "ref/netstandard1.5/System.Runtime.dll": {
+ "related": ".xml"
+ }
}
},
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
"type": "package",
"compile": {
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {}
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp3.1/_._": {}
@@ -3725,7 +4153,9 @@
"runtime.win.System.Runtime.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
+ "ref/netstandard1.5/System.Runtime.Extensions.dll": {
+ "related": ".xml"
+ }
}
},
"System.Runtime.Handles/4.3.0": {
@@ -3737,7 +4167,9 @@
"runtime.any.System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Runtime.Handles.dll": {}
+ "ref/netstandard1.3/System.Runtime.Handles.dll": {
+ "related": ".xml"
+ }
}
},
"System.Runtime.InteropServices/4.3.0": {
@@ -3781,7 +4213,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.Loader.dll": {}
+ "ref/netstandard1.5/System.Runtime.Loader.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.5/System.Runtime.Loader.dll": {}
@@ -3796,7 +4230,9 @@
"System.Runtime.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
+ "ref/netstandard1.1/System.Runtime.Numerics.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
@@ -3809,10 +4245,14 @@
"System.Security.Principal.Windows": "4.7.0"
},
"compile": {
- "ref/netstandard2.0/System.Security.AccessControl.dll": {}
+ "ref/netstandard2.0/System.Security.AccessControl.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {}
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
+ "related": ".xml"
+ }
}
},
"System.Security.Cryptography.Algorithms/4.3.0": {
@@ -3903,7 +4343,9 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
+ "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
@@ -3954,10 +4396,14 @@
"System.Security.Cryptography.ProtectedData/4.7.0": {
"type": "package",
"compile": {
- "ref/netstandard2.0/_._": {}
+ "ref/netstandard2.0/_._": {
+ "related": ".xml"
+ }
},
"runtime": {
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
+ "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
}
},
"System.Security.Cryptography.X509Certificates/4.3.0": {
@@ -3990,7 +4436,9 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
+ "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {}
@@ -4003,19 +4451,27 @@
"System.Windows.Extensions": "4.7.0"
},
"compile": {
- "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
+ "ref/netcoreapp3.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
+ "lib/netcoreapp3.0/System.Security.Permissions.dll": {
+ "related": ".xml"
+ }
}
},
"System.Security.Principal.Windows/4.7.0": {
"type": "package",
"compile": {
- "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {}
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
+ "related": ".xml"
+ }
}
},
"System.Text.Encoding/4.3.0": {
@@ -4027,7 +4483,9 @@
"runtime.any.System.Text.Encoding": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {}
+ "ref/netstandard1.3/System.Text.Encoding.dll": {
+ "related": ".xml"
+ }
}
},
"System.Text.Encoding.CodePages/8.0.0": {
@@ -4037,10 +4495,14 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
+ "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets": {}
@@ -4056,7 +4518,9 @@
"runtime.any.System.Text.Encoding.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
+ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
+ "related": ".xml"
+ }
}
},
"System.Text.Encodings.Web/7.0.0": {
@@ -4067,10 +4531,14 @@
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
},
"compile": {
- "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
@@ -4088,10 +4556,14 @@
"System.Threading.Tasks.Extensions": "4.5.4"
},
"compile": {
- "lib/netstandard2.0/System.Text.Json.dll": {}
+ "lib/netstandard2.0/System.Text.Json.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "lib/netstandard2.0/System.Text.Json.dll": {}
+ "lib/netstandard2.0/System.Text.Json.dll": {
+ "related": ".xml"
+ }
},
"build": {
"buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
@@ -4116,7 +4588,9 @@
"System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.dll": {}
+ "ref/netstandard1.3/System.Threading.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Threading.dll": {}
@@ -4131,7 +4605,9 @@
"System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.Overlapped.dll": {}
+ "ref/netstandard1.3/System.Threading.Overlapped.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {}
@@ -4146,7 +4622,9 @@
"runtime.any.System.Threading.Tasks": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.Tasks.dll": {}
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {
+ "related": ".xml"
+ }
}
},
"System.Threading.Tasks.Extensions/4.5.4": {
@@ -4164,7 +4642,9 @@
"System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.Thread.dll": {}
+ "ref/netstandard1.3/System.Threading.Thread.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Threading.Thread.dll": {}
@@ -4177,7 +4657,9 @@
"System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
+ "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
@@ -4192,7 +4674,9 @@
"runtime.any.System.Threading.Timer": "4.3.0"
},
"compile": {
- "ref/netstandard1.2/System.Threading.Timer.dll": {}
+ "ref/netstandard1.2/System.Threading.Timer.dll": {
+ "related": ".xml"
+ }
}
},
"System.Windows.Extensions/4.7.0": {
@@ -4201,10 +4685,14 @@
"System.Drawing.Common": "4.7.0"
},
"compile": {
- "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
+ "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
- "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
+ "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
+ "related": ".xml"
+ }
}
},
"System.Xml.ReaderWriter/4.3.0": {
@@ -4227,7 +4715,9 @@
"System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
+ "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
@@ -4250,7 +4740,9 @@
"System.Xml.ReaderWriter": "4.3.0"
},
"compile": {
- "ref/netstandard1.3/System.Xml.XDocument.dll": {}
+ "ref/netstandard1.3/System.Xml.XDocument.dll": {
+ "related": ".xml"
+ }
},
"runtime": {
"lib/netstandard1.3/System.Xml.XDocument.dll": {}
@@ -10172,7 +10664,6 @@
"projectFileDependencyGroups": {
".NETCoreApp,Version=v3.1": [
"MaterialSkin >= 0.2.1",
- "Microsoft.Bcl.AsyncInterfaces >= 8.0.0",
"Microsoft.Management.Infrastructure >= 3.0.0",
"MySql.Data >= 8.1.0",
"Newtonsoft.Json >= 13.0.3",
@@ -10235,10 +10726,6 @@
"target": "Package",
"version": "[0.2.1, )"
},
- "Microsoft.Bcl.AsyncInterfaces": {
- "target": "Package",
- "version": "[8.0.0, )"
- },
"Microsoft.Management.Infrastructure": {
"target": "Package",
"version": "[3.0.0, )"
@@ -10278,7 +10765,8 @@
"net47",
"net471",
"net472",
- "net48"
+ "net48",
+ "net481"
],
"assetTargetFallback": true,
"warn": true,
@@ -10290,7 +10778,7 @@
"privateAssets": "none"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.416\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.403\\RuntimeIdentifierGraph.json"
}
},
"runtimes": {
@@ -10304,7 +10792,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' 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, .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.",
"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 a1d3fda..4db1890 100644
--- a/obj/publish/win-x64/project.nuget.cache
+++ b/obj/publish/win-x64/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "iFqKmWvONd3p3TJQwGTswRxV5Qy9OAyZ9YvpbQlBNsm3/4GeUiuoDApilwPNuOx9kPWnfbUvPyAiNhuTby3RCg==",
+ "dgSpecHash": "z9dARiX7gAMH87wvbJEYWPlzkPiG8Ii8CE1TihTWIoUox3OQLEcdyjc4UuP4xQZA4LthJsdNgvMx/EJjvaXpVQ==",
"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' 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, .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.",
"libraryId": "MaterialSkin",
"targetGraphs": [
".NETCoreApp,Version=v3.1"