Auto updater code added/

main
muhammad.faique 2025-02-20 13:25:31 +05:00
parent 98cddf6586
commit db53287bc0
83 changed files with 829 additions and 457 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,8 +0,0 @@
{
"ExpandedNodes": [
"",
"\\My Music"
],
"SelectedNode": "\\MainForm.cs",
"PreviewInSolutionExplorer": false
}

Binary file not shown.

View File

@ -5,7 +5,7 @@
<TargetFramework>netcoreapp3.1</TargetFramework> <TargetFramework>netcoreapp3.1</TargetFramework>
<UseWindowsForms>true</UseWindowsForms> <UseWindowsForms>true</UseWindowsForms>
<FileVersion>1.0.0.0</FileVersion> <FileVersion>1.0.0.0</FileVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion> <AssemblyVersion>1.0.0.1</AssemblyVersion>
<ApplicationIcon /> <ApplicationIcon />
<Win32Resource /> <Win32Resource />
</PropertyGroup> </PropertyGroup>
@ -40,7 +40,6 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="MaterialSkin" Version="0.2.1" /> <PackageReference Include="MaterialSkin" Version="0.2.1" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
<PackageReference Include="Microsoft.Management.Infrastructure" Version="3.0.0" /> <PackageReference Include="Microsoft.Management.Infrastructure" Version="3.0.0" />
<PackageReference Include="MySql.Data" Version="8.1.0" /> <PackageReference Include="MySql.Data" Version="8.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />

2
MainForm.Designer.cs generated
View File

@ -275,7 +275,7 @@ namespace AVS
this.btn_reset_port.TabIndex = 57; this.btn_reset_port.TabIndex = 57;
this.btn_reset_port.Text = "RESET PORT"; this.btn_reset_port.Text = "RESET PORT";
this.btn_reset_port.UseVisualStyleBackColor = false; 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); this.btn_reset_port.Click += new System.EventHandler(this.btn_reset_port_Click);
// //
// openFileDialog1 // openFileDialog1

View File

@ -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) private void txt_barcode_KeyPress(object sender, KeyPressEventArgs e)
{ {
@ -1433,49 +1403,11 @@ namespace AVS
MessageBox.Show(exc.Message); 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() 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 // Get a compatible port
string portName = GetCompatiblePort(SerialPortStream.GetPortNames()); string portName = GetCompatiblePort(SerialPortStream.GetPortNames());
@ -1585,39 +1517,18 @@ namespace AVS
_serialPort?.Dispose(); _serialPort?.Dispose();
_serialPort = null; _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) private async Task RunUpdateProcessAsync()
// { {
// // Trim any trailing or leading '.' and whitespace await Updater.CheckVersionAsync();
// 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
// // 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() public void StopReading()
{ {
_timer?.Change(Timeout.Infinite, 0); // Stop the timer when needed _timer?.Change(Timeout.Infinite, 0); // Stop the timer when needed
@ -1959,8 +1870,8 @@ namespace AVS
public static void DisableDevice(string deviceInstanceId) public static void DisableDevice(string deviceInstanceId)
{ {
IntPtr deviceInfoSet = SetupDiGetClassDevs(IntPtr.Zero, deviceInstanceId, IntPtr.Zero, DIGCF_PRESENT); IntPtr deviceInfoSet = SetupDiGetClassDevs(IntPtr.Zero, deviceInstanceId, IntPtr.Zero, DIGCF_PRESENT);
if (deviceInfoSet == IntPtr.Zero) if (deviceInfoSet == IntPtr.Zero)
{ {

View File

@ -4,6 +4,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
--> -->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup> <PropertyGroup>
<History>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;</History> <History>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;</History>
<LastFailureDetails />
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View File

@ -24,6 +24,7 @@ namespace AVS
// If versions are different, trigger the update // If versions are different, trigger the update
if (SVNversion != Softwareversion) if (SVNversion != Softwareversion)
{ {
DialogResult dialogResult = MessageBox.Show("A new version is available. Do you want to update now?", DialogResult dialogResult = MessageBox.Show("A new version is available. Do you want to update now?",
"Update Available", MessageBoxButtons.YesNo, MessageBoxIcon.Question); "Update Available", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
@ -32,6 +33,13 @@ namespace AVS
// Start the update process // Start the update process
await StartUpdateProcessAsync(); 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 try
{ {
string updaterPath = @"\\FileServer\eData\AVS\AVSUpdater.exe"; string updaterPath = "C:\\Users\\Public\\Documents\\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";
// Start the updater process // Start the updater process
ProcessStartInfo processStartInfo = new ProcessStartInfo ProcessStartInfo processStartInfo = new ProcessStartInfo
{ {
FileName = updaterPath, FileName = updaterPath,
//Arguments = $"\"{sourcePath}\" \"{destinationPath}\"", //Arguments = $"\"{sourcePath}\" \"{destinationPath}\"",
UseShellExecute = false, UseShellExecute = false,
CreateNoWindow = true, //CreateNoWindow = true,
}; };
Process.Start(processStartInfo); Process.Start(processStartInfo);
// Close the current application // 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); Environment.Exit(0);
} }
catch (Exception ex) catch (Exception ex)

Binary file not shown.

View File

@ -9,7 +9,6 @@
"AVS/1.0.0": { "AVS/1.0.0": {
"dependencies": { "dependencies": {
"MaterialSkin": "0.2.1", "MaterialSkin": "0.2.1",
"Microsoft.Bcl.AsyncInterfaces": "8.0.0",
"Microsoft.Management.Infrastructure": "3.0.0", "Microsoft.Management.Infrastructure": "3.0.0",
"MySql.Data": "8.1.0", "MySql.Data": "8.1.0",
"Newtonsoft.Json": "13.0.3", "Newtonsoft.Json": "13.0.3",

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -9,7 +9,6 @@
"AVS/1.0.0": { "AVS/1.0.0": {
"dependencies": { "dependencies": {
"MaterialSkin": "0.2.1", "MaterialSkin": "0.2.1",
"Microsoft.Bcl.AsyncInterfaces": "8.0.0",
"Microsoft.Management.Infrastructure": "3.0.0", "Microsoft.Management.Infrastructure": "3.0.0",
"MySql.Data": "8.1.0", "MySql.Data": "8.1.0",
"Newtonsoft.Json": "13.0.3", "Newtonsoft.Json": "13.0.3",

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -4,6 +4,9 @@
"framework": { "framework": {
"name": "Microsoft.WindowsDesktop.App", "name": "Microsoft.WindowsDesktop.App",
"version": "3.1.0" "version": "3.1.0"
},
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
} }
} }
} }

View File

@ -1,3 +0,0 @@
muhammad.faique
Faique12345`
False

View File

@ -14,7 +14,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>E7u2IgGBKTU5/op9j5dbYhwlJsYKGxKdzTIbINPHATI=</dsig:DigestValue> <dsig:DigestValue>KvPXDue8jpizVW3pVfuUQZBI//1BsNryaaCTGnLB8PY=</dsig:DigestValue>
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>

View File

@ -10,7 +10,6 @@
"AVS/1.0.0": { "AVS/1.0.0": {
"dependencies": { "dependencies": {
"MaterialSkin": "0.2.1", "MaterialSkin": "0.2.1",
"Microsoft.Bcl.AsyncInterfaces": "8.0.0",
"Microsoft.Management.Infrastructure": "3.0.0", "Microsoft.Management.Infrastructure": "3.0.0",
"MySql.Data": "8.1.0", "MySql.Data": "8.1.0",
"Newtonsoft.Json": "13.0.3", "Newtonsoft.Json": "13.0.3",

View File

@ -53,13 +53,13 @@
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>
<file name="AVS.exe" size="21918649"> <file name="AVS.exe" size="21920770">
<hash> <hash>
<dsig:Transforms> <dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>zenZpxCWN4UnTWL3o4kaqnxkBDEsElf1oT+KWnKHg+c=</dsig:DigestValue> <dsig:DigestValue>rGL1YG5MTxsEqJYYgNVqsSMqfphKY7EHUL5m+0JkZHg=</dsig:DigestValue>
</hash> </hash>
</file> </file>
</asmv1:assembly> </asmv1:assembly>

View File

@ -4,6 +4,9 @@
"framework": { "framework": {
"name": "Microsoft.WindowsDesktop.App", "name": "Microsoft.WindowsDesktop.App",
"version": "3.1.0" "version": "3.1.0"
},
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
} }
} }
} }

View File

@ -14,7 +14,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>E7u2IgGBKTU5/op9j5dbYhwlJsYKGxKdzTIbINPHATI=</dsig:DigestValue> <dsig:DigestValue>KvPXDue8jpizVW3pVfuUQZBI//1BsNryaaCTGnLB8PY=</dsig:DigestValue>
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>

Binary file not shown.

Binary file not shown.

View File

@ -53,13 +53,13 @@
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>
<file name="AVS.exe" size="21918649"> <file name="AVS.exe" size="21920770">
<hash> <hash>
<dsig:Transforms> <dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>zenZpxCWN4UnTWL3o4kaqnxkBDEsElf1oT+KWnKHg+c=</dsig:DigestValue> <dsig:DigestValue>rGL1YG5MTxsEqJYYgNVqsSMqfphKY7EHUL5m+0JkZHg=</dsig:DigestValue>
</hash> </hash>
</file> </file>
</asmv1:assembly> </asmv1:assembly>

Binary file not shown.

View File

@ -51,10 +51,6 @@
"target": "Package", "target": "Package",
"version": "[0.2.1, )" "version": "[0.2.1, )"
}, },
"Microsoft.Bcl.AsyncInterfaces": {
"target": "Package",
"version": "[8.0.0, )"
},
"Microsoft.Management.Infrastructure": { "Microsoft.Management.Infrastructure": {
"target": "Package", "target": "Package",
"version": "[3.0.0, )" "version": "[3.0.0, )"

View File

@ -17,7 +17,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("AVS")] [assembly: System.Reflection.AssemblyProductAttribute("AVS")]
[assembly: System.Reflection.AssemblyTitleAttribute("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. // Generated by the MSBuild WriteCodeFragment class.

View File

@ -1 +1 @@
291043d55245687b908cc2e155f00e7d7ce7d786 780de65e10ea97828cb41077d81ed225b0f971cd

View File

@ -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.pdb
D:\Projects\AVS - Updated\obj\Debug\netcoreapp3.1\AVS.genruntimeconfig.cache 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 - 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.exe
D:\Projects\AVS\bin\Debug\netcoreapp3.1\AVS.deps.json D:\Projects\AVS\bin\Debug\netcoreapp3.1\AVS.deps.json
D:\Projects\AVS\bin\Debug\netcoreapp3.1\AVS.runtimeconfig.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\Newtonsoft.Json.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\BouncyCastle.Crypto.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\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.Data.SQLite.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.CodeDom.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.CodeDom.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Data.SqlClient.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.IO.Ports.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Management.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.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.Encodings.Web.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Text.Json.dll D:\Projects\AVS\bin\Debug\netcoreapp3.1\System.Text.Json.dll
D:\Projects\AVS\bin\Debug\netcoreapp3.1\ZstdSharp.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\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\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\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.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.GeneratedMSBuildEditorConfig.editorconfig
D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.AssemblyInfoInputs.cache D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.AssemblyInfoInputs.cache
D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.AssemblyInfo.cs 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.dll
D:\Projects\AVS\obj\Debug\netcoreapp3.1\AVS.pdb 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.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

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,4 +1,4 @@
// <autogenerated /> // <autogenerated />
using System; using System;
using System.Reflection; 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 = "")]

View File

@ -17,7 +17,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("AVS")] [assembly: System.Reflection.AssemblyProductAttribute("AVS")]
[assembly: System.Reflection.AssemblyTitleAttribute("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. // Generated by the MSBuild WriteCodeFragment class.

View File

@ -1 +1 @@
b04062d20f973a31fb68dd402e5212ae74047012 f4d77af5f12cec2bb8275fa2c9d3d3a25ea5c62e

View File

@ -1,3 +1,9 @@
is_global = true 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.RootNamespace = AVS
build_property.ProjectDir = D:\Projects\AVS\ build_property.ProjectDir = D:\Projects\AVS\

View File

@ -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\Newtonsoft.Json.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\BouncyCastle.Crypto.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\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.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.SqlClient.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Data.SQLite.EF6.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.Diagnostics.DiagnosticSource.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\System.IO.Pipelines.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.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.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.Encodings.Web.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Text.Json.dll D:\Projects\AVS\bin\Release\netcoreapp3.1\System.Text.Json.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\ZstdSharp.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\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\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\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.CartonForm.resources
D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.LoginForm.resources D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.LoginForm.resources
D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.MainForm.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.dll
D:\Projects\AVS\obj\Release\netcoreapp3.1\AVS.pdb 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.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

Binary file not shown.

View File

@ -1 +1 @@
aab138238c877ec8b9e7be57a7513929e0c4ed07 3b7286f61495c7d2a729b2ca4204b37093b9b260

Binary file not shown.

View File

@ -17,7 +17,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("AVS")] [assembly: System.Reflection.AssemblyProductAttribute("AVS")]
[assembly: System.Reflection.AssemblyTitleAttribute("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. // Generated by the MSBuild WriteCodeFragment class.

View File

@ -1 +1 @@
b04062d20f973a31fb68dd402e5212ae74047012 f4d77af5f12cec2bb8275fa2c9d3d3a25ea5c62e

View File

@ -1,3 +1,9 @@
is_global = true 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.RootNamespace = AVS
build_property.ProjectDir = D:\Projects\AVS\ build_property.ProjectDir = D:\Projects\AVS\

View File

@ -14,7 +14,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>E7u2IgGBKTU5/op9j5dbYhwlJsYKGxKdzTIbINPHATI=</dsig:DigestValue> <dsig:DigestValue>KvPXDue8jpizVW3pVfuUQZBI//1BsNryaaCTGnLB8PY=</dsig:DigestValue>
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>

View File

@ -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\Newtonsoft.Json.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\BouncyCastle.Crypto.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\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.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.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.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.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.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.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.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.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\System.Text.Json.dll
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\ZstdSharp.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.csproj.CopyComplete
D:\Projects\AVS\obj\Release\netcoreapp3.1\win-x64\AVS.dll D:\Projects\AVS\obj\Release\netcoreapp3.1\win-x64\AVS.dll
D:\Projects\AVS\obj\Release\netcoreapp3.1\win-x64\AVS.pdb D:\Projects\AVS\obj\Release\netcoreapp3.1\win-x64\AVS.pdb
D:\Projects\AVS\bin\Release\netcoreapp3.1\win-x64\System.CodeDom.dll D:\Projects\AVS\obj\Release\netcoreapp3.1\win-x64\AVS.csproj.AssemblyReference.cache
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

View File

@ -53,13 +53,13 @@
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>
<file name="AVS.exe" size="21918649"> <file name="AVS.exe" size="21920770">
<hash> <hash>
<dsig:Transforms> <dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>zenZpxCWN4UnTWL3o4kaqnxkBDEsElf1oT+KWnKHg+c=</dsig:DigestValue> <dsig:DigestValue>rGL1YG5MTxsEqJYYgNVqsSMqfphKY7EHUL5m+0JkZHg=</dsig:DigestValue>
</hash> </hash>
</file> </file>
</asmv1:assembly> </asmv1:assembly>

View File

@ -1 +1 @@
c0b3ad061c7f74cb84a4f0b38d13b59a87dfef53 a67c786e42c74a558a9892c7f40ca3f3ffa94154

View File

@ -7648,7 +7648,6 @@
"projectFileDependencyGroups": { "projectFileDependencyGroups": {
".NETCoreApp,Version=v3.1": [ ".NETCoreApp,Version=v3.1": [
"MaterialSkin >= 0.2.1", "MaterialSkin >= 0.2.1",
"Microsoft.Bcl.AsyncInterfaces >= 8.0.0",
"Microsoft.Management.Infrastructure >= 3.0.0", "Microsoft.Management.Infrastructure >= 3.0.0",
"MySql.Data >= 8.1.0", "MySql.Data >= 8.1.0",
"Newtonsoft.Json >= 13.0.3", "Newtonsoft.Json >= 13.0.3",
@ -7711,10 +7710,6 @@
"target": "Package", "target": "Package",
"version": "[0.2.1, )" "version": "[0.2.1, )"
}, },
"Microsoft.Bcl.AsyncInterfaces": {
"target": "Package",
"version": "[8.0.0, )"
},
"Microsoft.Management.Infrastructure": { "Microsoft.Management.Infrastructure": {
"target": "Package", "target": "Package",
"version": "[3.0.0, )" "version": "[3.0.0, )"

View File

@ -1,6 +1,6 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "QNbNTGu+h1/KOiKWOwagV0AD91N3ZDiiXBDwzgQZ492TlU57m4gvbddfIzuVmuKTrrxSf/B1N8DKBvqOKZCKaA==", "dgSpecHash": "Yc6dAPaG2caIYjP2rH8CkdLo7Q2RCH5D4KXVlbGQzwhGQNvw+YAiWs3KRaa+ey6NjPYbK0E2IXLn0sugPsnCdg==",
"success": true, "success": true,
"projectFilePath": "D:\\Projects\\AVS\\AVS.csproj", "projectFilePath": "D:\\Projects\\AVS\\AVS.csproj",
"expectedPackageFiles": [ "expectedPackageFiles": [

View File

@ -51,10 +51,6 @@
"target": "Package", "target": "Package",
"version": "[0.2.1, )" "version": "[0.2.1, )"
}, },
"Microsoft.Bcl.AsyncInterfaces": {
"target": "Package",
"version": "[8.0.0, )"
},
"Microsoft.Management.Infrastructure": { "Microsoft.Management.Infrastructure": {
"target": "Package", "target": "Package",
"version": "[3.0.0, )" "version": "[3.0.0, )"
@ -94,7 +90,8 @@
"net47", "net47",
"net471", "net471",
"net472", "net472",
"net48" "net48",
"net481"
], ],
"assetTargetFallback": true, "assetTargetFallback": true,
"warn": true, "warn": true,
@ -106,7 +103,7 @@
"privateAssets": "none" "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": { "runtimes": {

View File

@ -7,16 +7,13 @@
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\muhammad.faique\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\</NuGetPackageFolders> <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\muhammad.faique\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.11.6</NuGetToolVersion> <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\muhammad.faique\.nuget\packages\" /> <SourceRoot Include="C:\Users\muhammad.faique\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" /> <SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" /> <SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
</ItemGroup> </ItemGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)entityframework\6.4.4\buildTransitive\netcoreapp3.0\EntityFramework.props" Condition="Exists('$(NuGetPackageRoot)entityframework\6.4.4\buildTransitive\netcoreapp3.0\EntityFramework.props')" /> <Import Project="$(NuGetPackageRoot)entityframework\6.4.4\buildTransitive\netcoreapp3.0\EntityFramework.props" Condition="Exists('$(NuGetPackageRoot)entityframework\6.4.4\buildTransitive\netcoreapp3.0\EntityFramework.props')" />
</ImportGroup> </ImportGroup>

View File

@ -1,8 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?> <?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)system.text.encodings.web\7.0.0\buildTransitive\netcoreapp2.0\System.Text.Encodings.Web.targets" Condition="Exists('$(NuGetPackageRoot)system.text.encodings.web\7.0.0\buildTransitive\netcoreapp2.0\System.Text.Encodings.Web.targets')" /> <Import Project="$(NuGetPackageRoot)system.text.encodings.web\7.0.0\buildTransitive\netcoreapp2.0\System.Text.Encodings.Web.targets" Condition="Exists('$(NuGetPackageRoot)system.text.encodings.web\7.0.0\buildTransitive\netcoreapp2.0\System.Text.Encodings.Web.targets')" />
<Import Project="$(NuGetPackageRoot)system.text.json\7.0.1\buildTransitive\netcoreapp2.0\System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json\7.0.1\buildTransitive\netcoreapp2.0\System.Text.Json.targets')" /> <Import Project="$(NuGetPackageRoot)system.text.json\7.0.1\buildTransitive\netcoreapp2.0\System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json\7.0.1\buildTransitive\netcoreapp2.0\System.Text.Json.targets')" />

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "iFqKmWvONd3p3TJQwGTswRxV5Qy9OAyZ9YvpbQlBNsm3/4GeUiuoDApilwPNuOx9kPWnfbUvPyAiNhuTby3RCg==", "dgSpecHash": "z9dARiX7gAMH87wvbJEYWPlzkPiG8Ii8CE1TihTWIoUox3OQLEcdyjc4UuP4xQZA4LthJsdNgvMx/EJjvaXpVQ==",
"success": true, "success": true,
"projectFilePath": "D:\\Projects\\AVS\\AVS.csproj", "projectFilePath": "D:\\Projects\\AVS\\AVS.csproj",
"expectedPackageFiles": [ "expectedPackageFiles": [
@ -172,7 +172,7 @@
"code": "NU1701", "code": "NU1701",
"level": "Warning", "level": "Warning",
"warningLevel": 1, "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", "libraryId": "MaterialSkin",
"targetGraphs": [ "targetGraphs": [
".NETCoreApp,Version=v3.1" ".NETCoreApp,Version=v3.1"