diff --git a/.vs/AVS/DesignTimeBuild/.dtbcache.v2 b/.vs/AVS/DesignTimeBuild/.dtbcache.v2
index 829ce9b..681395e 100644
Binary files a/.vs/AVS/DesignTimeBuild/.dtbcache.v2 and b/.vs/AVS/DesignTimeBuild/.dtbcache.v2 differ
diff --git a/.vs/AVS/FileContentIndex/6596a02b-8fa9-4a8a-a1cf-e4749a4c8b0a.vsidx b/.vs/AVS/FileContentIndex/6596a02b-8fa9-4a8a-a1cf-e4749a4c8b0a.vsidx
deleted file mode 100644
index 57b63c2..0000000
Binary files a/.vs/AVS/FileContentIndex/6596a02b-8fa9-4a8a-a1cf-e4749a4c8b0a.vsidx and /dev/null differ
diff --git a/.vs/AVS/FileContentIndex/bf525987-8357-4f08-97c0-f463c87bf5e8.vsidx b/.vs/AVS/FileContentIndex/bf525987-8357-4f08-97c0-f463c87bf5e8.vsidx
deleted file mode 100644
index 6f7398d..0000000
Binary files a/.vs/AVS/FileContentIndex/bf525987-8357-4f08-97c0-f463c87bf5e8.vsidx and /dev/null differ
diff --git a/.vs/AVS/FileContentIndex/cfe804d8-fa1a-4220-9674-9ce89ad1f2e3.vsidx b/.vs/AVS/FileContentIndex/cfe804d8-fa1a-4220-9674-9ce89ad1f2e3.vsidx
deleted file mode 100644
index a7d76f1..0000000
Binary files a/.vs/AVS/FileContentIndex/cfe804d8-fa1a-4220-9674-9ce89ad1f2e3.vsidx and /dev/null differ
diff --git a/.vs/AVS/v16/.suo b/.vs/AVS/v16/.suo
index d825aa4..4b60e23 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 522fbab..962ea28 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 9986f5a..7629d6c 100644
Binary files a/.vs/AVS/v17/.suo and b/.vs/AVS/v17/.suo differ
diff --git a/.vs/ProjectEvaluation/avs.metadata.v7.bin b/.vs/ProjectEvaluation/avs.metadata.v7.bin
index 0bd6e97..095af4c 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 25de92c..1728023 100644
Binary files a/.vs/ProjectEvaluation/avs.projects.v7.bin and b/.vs/ProjectEvaluation/avs.projects.v7.bin differ
diff --git a/MainForm.Designer.cs b/MainForm.Designer.cs
index 60e2cb3..4f4d78a 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 = false;
+ this.btn_reset_port.Visible = true;
this.btn_reset_port.Click += new System.EventHandler(this.btn_reset_port_Click);
//
// openFileDialog1
diff --git a/MainForm.cs b/MainForm.cs
index 923308a..7ac21ef 100644
--- a/MainForm.cs
+++ b/MainForm.cs
@@ -51,6 +51,9 @@ namespace AVS
[DllImport("setupapi.dll", CharSet = CharSet.Auto, SetLastError = true)]
public static extern bool SetupDiCallClassInstaller(uint InstallFunction, IntPtr deviceInfoSet, ref SP_DEVINFO_DATA deviceInfoData);
+ [DllImport("setupapi.dll")]
+ static extern bool SetupDiDestroyDeviceInfoList(IntPtr deviceInfoSet);
+
[StructLayout(LayoutKind.Sequential)]
public class SP_DEVINFO_DATA
{
@@ -1739,6 +1742,35 @@ namespace AVS
}
}
}
+ else
+ {
+ pb_red.Visible = false; // Hide red indicator
+ pb_blue.Visible = true; // Show blue indicator for data received
+
+ // Match weight pattern in message (e.g., "123.45 kg")
+ Match match = Regex.Match(message, @"(\d+(\.\d+)?) kg");
+
+ if (match.Success && double.TryParse(match.Groups[1].Value, out double weight))
+ {
+ // Only update weight display if it has changed
+ if (weight != PreviousWeight)
+ {
+ PreviousWeight = weight; // Update the previous weight
+ txt_weight.Text = weight.ToString("0.000"); // Display the current weight
+ }
+
+ // Update hold weight if above threshold
+ if (weight > 0.020)
+ {
+ lbl_hold_weight.Text = weight.ToString("0.000"); // Display the hold weight
+ }
+
+ message = "Machine connected";
+ lbl_msg.ForeColor = Color.Green;
+ lbl_msg.Text = message;
+
+ }
+ }
}
else
{
@@ -1763,6 +1795,7 @@ namespace AVS
}
}
}));
+
}
private void HandleException(Exception ex)
@@ -1923,27 +1956,40 @@ namespace AVS
}
// Disable a device by Instance ID
+
public static void DisableDevice(string deviceInstanceId)
{
+
+
IntPtr deviceInfoSet = SetupDiGetClassDevs(IntPtr.Zero, deviceInstanceId, IntPtr.Zero, DIGCF_PRESENT);
if (deviceInfoSet == IntPtr.Zero)
{
- Console.WriteLine("Error getting device info set.");
- return;
+ throw new Win32Exception(Marshal.GetLastWin32Error(), "Failed to get device info set");
}
- SP_DEVINFO_DATA deviceInfoData = new SP_DEVINFO_DATA();
- deviceInfoData.cbSize = (uint)Marshal.SizeOf(typeof(SP_DEVINFO_DATA));
-
- uint index = 0;
- while (SetupDiEnumDeviceInfo(deviceInfoSet, index, ref deviceInfoData))
+ try
{
- Console.WriteLine($"Found device: {deviceInfoData.DevInst}");
- SetupDiCallClassInstaller(DIF_DISABLE, deviceInfoSet, ref deviceInfoData);
- Console.WriteLine("Device disabled.");
- break; // Stop after disabling the first matching device
+ SP_DEVINFO_DATA deviceInfoData = new SP_DEVINFO_DATA();
+ deviceInfoData.cbSize = (uint)Marshal.SizeOf(typeof(SP_DEVINFO_DATA));
+
+ for (uint index = 0; SetupDiEnumDeviceInfo(deviceInfoSet, index, ref deviceInfoData); index++)
+ {
+ Console.WriteLine($"Found device: {deviceInfoData.DevInst}");
+ if (!SetupDiCallClassInstaller(DIF_DISABLE, deviceInfoSet, ref deviceInfoData))
+ {
+ Console.WriteLine("Device disabled.");
+ break; // Stop after disabling the first matching device
+ }
+ else
+ {
+ Console.WriteLine("Failed to disable device.");
+ }
+ }
+ }
+ finally
+ {
+ SetupDiDestroyDeviceInfoList(deviceInfoSet);
}
- Console.WriteLine("No matching device found.");
}
public static string GetDeviceInstanceIdFromCOMPort(string portName)
{
diff --git a/bin/Debug/netcoreapp3.1/AVS.dll b/bin/Debug/netcoreapp3.1/AVS.dll
index 4f2de0d..060034a 100644
Binary files a/bin/Debug/netcoreapp3.1/AVS.dll and b/bin/Debug/netcoreapp3.1/AVS.dll differ
diff --git a/bin/Debug/netcoreapp3.1/AVS.pdb b/bin/Debug/netcoreapp3.1/AVS.pdb
index b1ee9b9..14f18e3 100644
Binary files a/bin/Debug/netcoreapp3.1/AVS.pdb and b/bin/Debug/netcoreapp3.1/AVS.pdb differ
diff --git a/obj/AVS.csproj.nuget.dgspec.json b/obj/AVS.csproj.nuget.dgspec.json
index 6a47e09..450676c 100644
--- a/obj/AVS.csproj.nuget.dgspec.json
+++ b/obj/AVS.csproj.nuget.dgspec.json
@@ -94,7 +94,8 @@
"net47",
"net471",
"net472",
- "net48"
+ "net48",
+ "net481"
],
"assetTargetFallback": true,
"warn": true,
@@ -106,7 +107,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"
}
}
}
diff --git a/obj/AVS.csproj.nuget.g.props b/obj/AVS.csproj.nuget.g.props
index bb86c56..d24f39d 100644
--- a/obj/AVS.csproj.nuget.g.props
+++ b/obj/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/AVS.csproj.nuget.g.targets b/obj/AVS.csproj.nuget.g.targets
index d4769b1..357db68 100644
--- a/obj/AVS.csproj.nuget.g.targets
+++ b/obj/AVS.csproj.nuget.g.targets
@@ -1,8 +1,5 @@
-
- $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
-
diff --git a/obj/Debug/netcoreapp3.1/AVS.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/netcoreapp3.1/AVS.GeneratedMSBuildEditorConfig.editorconfig
index 30eafd2..041a237 100644
--- a/obj/Debug/netcoreapp3.1/AVS.GeneratedMSBuildEditorConfig.editorconfig
+++ b/obj/Debug/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/Debug/netcoreapp3.1/AVS.assets.cache b/obj/Debug/netcoreapp3.1/AVS.assets.cache
index aaf08b0..832ba2e 100644
Binary files a/obj/Debug/netcoreapp3.1/AVS.assets.cache and b/obj/Debug/netcoreapp3.1/AVS.assets.cache differ
diff --git a/obj/Debug/netcoreapp3.1/AVS.csproj.AssemblyReference.cache b/obj/Debug/netcoreapp3.1/AVS.csproj.AssemblyReference.cache
index f5e894a..97c42be 100644
Binary files a/obj/Debug/netcoreapp3.1/AVS.csproj.AssemblyReference.cache and b/obj/Debug/netcoreapp3.1/AVS.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/netcoreapp3.1/AVS.csproj.GenerateResource.cache b/obj/Debug/netcoreapp3.1/AVS.csproj.GenerateResource.cache
index f451747..ec80afe 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 4f2de0d..060034a 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 b1ee9b9..14f18e3 100644
Binary files a/obj/Debug/netcoreapp3.1/AVS.pdb and b/obj/Debug/netcoreapp3.1/AVS.pdb differ
diff --git a/obj/project.assets.json b/obj/project.assets.json
index bc8717e..3c59c21 100644
--- a/obj/project.assets.json
+++ b/obj/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": {}
@@ -7510,7 +7754,8 @@
"net47",
"net471",
"net472",
- "net48"
+ "net48",
+ "net481"
],
"assetTargetFallback": true,
"warn": true,
@@ -7522,7 +7767,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"
}
}
},
@@ -7531,7 +7776,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/project.nuget.cache b/obj/project.nuget.cache
index 5bdd65d..cfd5bea 100644
--- a/obj/project.nuget.cache
+++ b/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "ruBmURm9Q/B7dlNWTusRQQ/R+5RZgbQgksj//5+Zk8qcXJ14BCeK0BmvogYuoAuZoYXCQn3liiFiW6YFILdXUg==",
+ "dgSpecHash": "QNbNTGu+h1/KOiKWOwagV0AD91N3ZDiiXBDwzgQZ492TlU57m4gvbddfIzuVmuKTrrxSf/B1N8DKBvqOKZCKaA==",
"success": true,
"projectFilePath": "D:\\Projects\\AVS\\AVS.csproj",
"expectedPackageFiles": [
@@ -146,7 +146,7 @@
"code": "NU1701",
"level": "Warning",
"warningLevel": 1,
- "message": "Package 'MaterialSkin 0.2.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' 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"