diff --git a/.vscode/launch.json b/.vscode/launch.json
index 5ade086..21707be 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -1,26 +1,26 @@
{
- "version": "0.2.0",
- "configurations": [
- {
- // Use IntelliSense to find out which attributes exist for C# debugging
- // Use hover for the description of the existing attributes
- // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
- "name": ".NET Core Launch (console)",
- "type": "coreclr",
- "request": "launch",
- "preLaunchTask": "build",
- // If you have changed target frameworks, make sure to update the program path.
- "program": "${workspaceFolder}/bin/Debug/net6.0/jdis_import.dll",
- "args": [],
- "cwd": "${workspaceFolder}",
- // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
- "console": "internalConsole",
- "stopAtEntry": false
- },
- {
- "name": ".NET Core Attach",
- "type": "coreclr",
- "request": "attach"
- }
- ]
-}
\ No newline at end of file
+ "version": "0.2.0",
+ "configurations": [
+ {
+ // Use IntelliSense to find out which attributes exist for C# debugging
+ // Use hover for the description of the existing attributes
+ // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
+ "name": ".NET Core Launch (console)",
+ "type": "coreclr",
+ "request": "launch",
+ "preLaunchTask": "build",
+ // If you have changed target frameworks, make sure to update the program path.
+ "program": "${workspaceFolder}/bin/Debug/net6.0/jdis_import.dll",
+ "args": [],
+ "cwd": "${workspaceFolder}",
+ // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
+ "console": "integratedTerminal",
+ "stopAtEntry": false
+ },
+ {
+ "name": ".NET Core Attach",
+ "type": "coreclr",
+ "request": "attach"
+ }
+ ]
+}
diff --git a/CCAddress.xml b/CCAddress.xml
new file mode 100644
index 0000000..f7297c0
--- /dev/null
+++ b/CCAddress.xml
@@ -0,0 +1,4 @@
+
+
+ mcarman@rpmindustries.com
+
\ No newline at end of file
diff --git a/CSVObject.cs b/CSVObject.cs
new file mode 100644
index 0000000..2a93acc
--- /dev/null
+++ b/CSVObject.cs
@@ -0,0 +1,191 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Data.SqlClient;
+using System.Data;
+
+namespace jdis_import
+{
+ public class CSVObject
+ {
+ public string CustomerNumber { get; set; }
+ public string CustomerName { get; set; }
+ public string Address { get; set; }
+ public string Address2 { get; set; }
+ public string City { get; set; }
+ public string State { get; set; }
+ public string ZipCode { get; set; }
+ public string EquipmentNumber { get; set; }
+ public string SerialNumber { get; set; }
+ public string Model { get; set; }
+ public string MeterReading { get; set; }
+ public string Year { get; set; }
+ public string FamilyCode { get; set; }
+ public string FamilyDescription { get; set; }
+ public string Make { get; set; }
+ public string LastServiceDate { get; set; }
+ public string DBSWorkOrderNumber { get; set; }
+ public string DateActualStart { get; set; }
+ public string CodeAndDescriptionOriginal { get; set; }
+ public string CodeAndDescription { get; set; }
+ public string Store { get; set; }
+ public string StoreDescription { get; set; }
+ public string ContractTypeCode { get; set; }
+ public string JobSiteContactName { get; set; }
+ public string JobSiteContactPhone { get; set; }
+ public string PriorityCode { get; set; }
+ public string SpecialInstructions { get; set; }
+ public string PartNumber { get; set; }
+ public string PartNumberDescription { get; set; }
+ public string ReferenceDocNumber { get; set; }
+ public string Quantity { get; set; }
+ public string SegmentNumber { get; set; }
+ public string ServiceTech { get; set; }
+ public string TechName { get; set; }
+ public string InspectionType { get; set; }
+ public string ScheduledStartDate { get; set; }
+
+ public string SQLStatement { get; set; }
+
+ public static int MachineExists(string serialnumber, string connStr)
+ {
+ int? id = 0;
+ string sql = string.Format("Select ID from equipment where serialnumber = '{0}'", serialnumber);
+ using (SqlConnection conn = new SqlConnection(connStr))
+ {
+ conn.Open();
+ SqlCommand cmd = conn.CreateCommand();
+ cmd.CommandText = sql;
+ cmd.CommandType = CommandType.Text;
+ id = Convert.ToInt32(cmd.ExecuteScalar());
+ if (id > 0)
+ {
+ cmd.CommandText = string.Format("Select ModelID from Equipment where ID = {0}", id);
+ id = Convert.ToInt32(cmd.ExecuteScalar());
+ }
+ }
+ return Convert.ToInt32(id);
+ }
+
+ public void Validate()
+ {
+ if (this.CustomerNumber.Length > 50) throw new ApplicationException(string.Format("Customer Number too long. Text: {0}", this.CustomerNumber));
+ if (this.CustomerName.Length > 50) throw new ApplicationException("Customer Name too long.");
+ if (this.Address.Length > 50) throw new ApplicationException("Address too long.");
+ if (this.Address2.Length > 50) throw new ApplicationException("Address2 too long.");
+ if (this.City.Length > 50) throw new ApplicationException("City too long.");
+ if (this.State.Length > 3) throw new ApplicationException("State too long.");
+ if (this.ZipCode.Length > 50) throw new ApplicationException("ZipCode too long.");
+ if (this.EquipmentNumber.Length > 50) throw new ApplicationException("Equipment Number too long.");
+ if (this.SerialNumber.Length > 50) throw new ApplicationException("Serial Number too long.");
+
+ if (this.Model.Length > 50) throw new ApplicationException("Model too long.");
+ if (this.MeterReading.Length > 50) throw new ApplicationException("Meter Reading too long.");
+ if (this.Year.Length > 50) throw new ApplicationException("Year too long.");
+ if (this.FamilyCode.Length > 50) throw new ApplicationException("Family Code too long.");
+ if (this.FamilyDescription.Length > 50) throw new ApplicationException("Family Description too long.");
+ if (this.Make.Length > 50) throw new ApplicationException("Make too long.");
+ if (this.LastServiceDate.Length > 50) throw new ApplicationException("Last Service Date too long.");
+ if (this.DBSWorkOrderNumber.Length > 50) throw new ApplicationException("DBS Work Order Number too long.");
+ if (this.DateActualStart.Length > 50) throw new ApplicationException("Date Actual Start too long.");
+ if (this.CodeAndDescriptionOriginal.Length > 50) throw new ApplicationException("Code and Description Original too long.");
+ if (this.Store.Length > 50) throw new ApplicationException("Store too long.");
+ if (this.StoreDescription.Length > 50) throw new ApplicationException("Store Description too long.");
+ if (this.ContractTypeCode.Length > 50) throw new ApplicationException("Contact Type Code too long.");
+ if (this.JobSiteContactName.Length > 50) throw new ApplicationException("Job Site Contact Name too long.");
+ if (this.JobSiteContactPhone.Length > 50) throw new ApplicationException("job Site contact Phone too long.");
+ if (this.PriorityCode.Length > 50) throw new ApplicationException("Priority Code too long.");
+ if (this.PartNumber.Length > 50) throw new ApplicationException("Part Number too long.");
+ if (this.PartNumberDescription.Length > 50) throw new ApplicationException("Part Number Description too long.");
+ if (this.ReferenceDocNumber.Length > 50) throw new ApplicationException("Reference Document Number too long.");
+ if (this.Quantity.Length > 50) throw new ApplicationException("Quantity too long.");
+ if (this.SegmentNumber.Length > 50) throw new ApplicationException("Segment too long.");
+ if (this.ServiceTech.Length > 50) throw new ApplicationException("Service Tech too long.");
+ if (this.TechName.Length > 50) throw new ApplicationException("Tech Name too long.");
+ if (this.InspectionType.Length > 50) throw new ApplicationException("Inspection Type too long.");
+ }
+
+ public static string WriteToDB(List items, SqlConnection conn)
+ {
+ SqlCommand cmd = conn.CreateCommand();
+ cmd.Connection = conn;
+ cmd.CommandType = CommandType.Text;
+ string insertcmd = @"Insert Into Results_Brandt(CustomerNumber, CustomerName, [Address], Address2, City, [State], ZipCode, EquipmentNumber, SerialNumber, [Model], MeterReading, [Year], FamilyCode, FamilyDescription, Make, LastServiceDate, DBSWorkOrderNumber, DateActualStart, CodeAndDescriptionOriginal, CodeAndDescription, Store, StoreDescription, ContractTypeCode, JobSiteContactName, JobSiteContactPhone, PriorityCode, SpecialInstructions, PartNumber, PartNumberDescription, ReferenceDocNumber, Quantity, SegmentNumber, ServiceTech, TechName, InspectionType) Values('{0}','{1}','{2}','{3}','{4}','{5}','{6}','{7}','{8}','{9}','{10}','{11}','{12}','{13}','{14}','{15}','{16}','{17}','{18}','{19}','{20}','{21}','{22}','{23}','{24}','{25}','{26}','{27}','{28}','{29}','{30}','{31}','{32}','{33}', '{34}')";
+ List msg = new List();
+ string msgs = string.Empty;
+ foreach (var item in items)
+ {
+ cmd.CommandText = string.Format(insertcmd,
+ item.CustomerNumber,
+ item.CustomerName,
+ item.Address,
+ item.Address2,
+ item.City,
+ item.State,
+ item.ZipCode,
+ item.EquipmentNumber,
+ item.SerialNumber,
+ item.Model,
+ item.MeterReading,
+ item.Year,
+ item.FamilyCode,
+ item.FamilyDescription,
+ item.Make,
+ item.LastServiceDate,
+ item.DBSWorkOrderNumber,
+ item.ScheduledStartDate,
+ item.CodeAndDescriptionOriginal,
+ item.CodeAndDescription,
+ item.Store,
+ item.StoreDescription,
+ item.ContractTypeCode,
+ item.JobSiteContactName,
+ item.JobSiteContactPhone,
+ item.PriorityCode,
+ string.IsNullOrEmpty(item.SpecialInstructions) ? string.Empty : item.SpecialInstructions,
+ item.PartNumber,
+ item.PartNumberDescription,
+ item.ReferenceDocNumber,
+ item.Quantity,
+ item.SegmentNumber,
+ item.ServiceTech,
+ item.TechName,
+ item.InspectionType);
+ try
+ {
+ cmd.ExecuteNonQuery();
+ cmd.Dispose();
+ }
+ catch (Exception ex)
+ {
+ item.SQLStatement = cmd.CommandText;
+ msg.Add(ex.Message);
+ }
+ }
+ if (msg.Count > 0) return string.Join("\r\n", msg);
+ else return string.Empty;
+ }
+
+ public static void WriteCSV(IEnumerable items, string path)
+ {
+ if (System.IO.File.Exists(path)) System.IO.File.Delete(path);
+ Type itemType = typeof(T);
+ var props = itemType.GetProperties(System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.Instance);
+ using (var writer = new System.IO.StreamWriter(path))
+ {
+ string[] clmns = props.Select(p => p.Name).ToArray();
+ string header = string.Join(",", clmns);
+ writer.WriteLine(header);
+ foreach (var item in items)
+ {
+ List vals = new List();
+ foreach (string prop in clmns)
+ vals.Add(item.GetType().GetProperty(prop).GetValue(item, null).ToString());
+ string valueline = string.Join(",", vals);
+ writer.WriteLine(valueline);
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Customer.cs b/Customer.cs
new file mode 100644
index 0000000..6bc9d7b
--- /dev/null
+++ b/Customer.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace jdis_import
+{
+ public class Customer
+ {
+ public string Number { get; set; }
+ public string Name { get; set; }
+ public string Addr1 { get; set; }
+ public string Addr2 { get; set; }
+ public string City { get; set; }
+ public string State { get; set; }
+ public string Zip { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/Equipment.cs b/Equipment.cs
new file mode 100644
index 0000000..ef4de66
--- /dev/null
+++ b/Equipment.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace jdis_import
+{
+ public class Equipment
+ {
+ public int MID { get; set; }
+ public string Make { get; set; }
+ public string Model { get; set; }
+ public string SerialNumber { get; set; }
+ public string EquipmentNumber { get; set; }
+ public string MeterReading { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/IntervalData.xml b/IntervalData.xml
new file mode 100644
index 0000000..34437ae
--- /dev/null
+++ b/IntervalData.xml
@@ -0,0 +1,19 @@
+
+
+ 1
+ 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 6
+ 1
+ 2
+ 3
+ 4
+ 6
+ 2
+ 11
+
\ No newline at end of file
diff --git a/JDIS-20230118-13_37_13.txt b/JDIS-20230118-13_37_13.txt
new file mode 100644
index 0000000..4f3aab7
--- /dev/null
+++ b/JDIS-20230118-13_37_13.txt
@@ -0,0 +1,115 @@
+
+
+
+Date 18JAN2023 13:37:10 ** WORK ORDER PREVIEW ** Page 1
+
+Location 42 Work Order 3524310 Seg. 01 Opn Dt 13JAN2023
+Auth by Phone 902-835-3381 Inv Cls Dt
+ CHARGE Slprn
+ S MUNICIPAL ENTERPRISES LIM Cust No. 42000005 S MUNICIPAL ENTERPRISES LIM
+ O 315 ROCKY LAKE DRIVE Pur-Ord. 10731374 H REQUIRE -PO -JOB OR EQUIP
+ L PO BOX 48100 P-% 0.0 L-% 0.0 I invoicereceiving@dexter.c
+ D BEDFORD, NS B4A 3Z2 P 48 QUARRYSTONE, NS B4A 3
+G/L # Stock# Multi-use#
+Make Model PIN Number Equipment Meter MC SFR
+JD 544K 1DW544KZEED664197 L109 .0 S
+Prt Cls-PC Lbr Cls-ICL Price Cd-L Prt Tx-0909 Lbr Tx-0909
+
+Item Hrs/Ord Bk-Ord Ship Description/Comments RATE EXTENSION
+-------------------------------------------------------------------------------
+
+ SERVICE CALL TO ANTRIM
+CORRECTION:
+ Travel To Antrim
+ ----------------------------------------
+ PM INTERVAL: 500 HR T
+ EMPID: HALPM1 T
+ PROMISE DATE: 16JAN2023 T
+ SPECIAL INSTRUCTIONS: ANTRIM NS T
+ CONTACT: MAURICE COMPAGNON 902-717-1354 T
+ EMAIL: MCOMPAGNON@DEXTERS.CA T
+ .75 01-16 R/T 04540 REPAIR 205.00 153.75
+ 1 01-18 1 SERVICE ACCESSORIES 13.84 13.84
+ 1 01-18 1 LABOUR CREDIT AS PER AGREE 30.00- 30.00-
+ 1 01-18 1 CARBON TAX CREDI 3.08- 3.08-
+ SEG # 01 TOTAL = .00 P .75 LH 153.75 L 19.24-M 134.51 T
+
+ 500 HOUR SERVICE
+CORRECTION:
+ Change Engine Oil & Filter
+ Change Fuel Filter & Water Seperator
+ Change Primary Air Filter
+ Change Cab Fresh & Recirc Filters
+ Check All Belts & Hoses
+ Grease Machine
+ ----------------------------------------
+ 1 1 RE504836 OIL FILT 38.76 38.76
+ 1 1 R502513 SEAL 11.86 11.86
+ 1 1 RE541922 FILTER E 64.21 64.21
+ 1 1 RE522878 FILTER E 64.26 64.26
+ 1 1 AT223493 FUEL FIL 21.83 21.83
+ 1 1 AM39653 OIL FILT 19.39 19.39
+ 1 1 AT300487 FILTER E 126.79 126.79
+ 1 1 AT191102 AIR FILT 30.89 30.89
+ 1 1 AT307501 AIR FILT 25.41 25.41
+ 1 1 2450820L 20L - 36 158.15 158.15
+ PLEASE PICK AND PU IN BRADS OIL ROOM!
+
+
+Date 18JAN2023 13:37:10 ** WORK ORDER PREVIEW ** Page 2
+
+Location 42 Work Order 3524310 Seg. 02 Opn Dt 13JAN2023
+Auth by Phone 902-835-3381 Inv Cls Dt
+ CHARGE Slprn
+ S MUNICIPAL ENTERPRISES LIM Cust No. 42000005 S MUNICIPAL ENTERPRISES LIM
+ O 315 ROCKY LAKE DRIVE Pur-Ord. 10731374 H REQUIRE -PO -JOB OR EQUIP
+ L PO BOX 48100 P-% 0.0 L-% 0.0 I invoicereceiving@dexter.c
+ D BEDFORD, NS B4A 3Z2 P 48 QUARRYSTONE, NS B4A 3
+G/L # Stock# Multi-use#
+Make Model PIN Number Equipment Meter MC SFR
+JD 544K 1DW544KZEED664197 L109 .0 S
+Prt Cls-PC Lbr Cls-ICL Price Cd-L Prt Tx-0909 Lbr Tx-0909
+
+Item Hrs/Ord Bk-Ord Ship Description/Comments RATE EXTENSION
+-------------------------------------------------------------------------------
+ 3.00 01-16 R/T 04540 REPAIR 205.00 615.00
+ 3.00- 01-16 R/T 04540 REPAIR 205.00 615.00-
+ .75 01-16 R/T 04540 REPAIR 205.00 153.75
+ 1.25 01-16 R/T 04540 REPAIR 205.00 256.25
+ 3.50 01-16 R/T 04540 REPAIR 205.00 717.50
+ .75 01-16 O/T 04540 REPAIR 265.00 198.75
+ 1.00 01-18 R/T 04540 REPAIR 205.00 205.00
+ 1 01-18 1 SERVICE ACCESSORIES 137.81 137.81
+ 1 01-18 1 LABOUR CREDIT AS PER AGREE 522.50- 522.50-
+ 1 01-18 1 CARBON TAX CREDIT 30.63- 30.63-
+ SEG # 02 TOTAL = 561.55 P 7.25 LH 1,531.25 L 415.32-M 1,677.48 T
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ****************************************
+ * Taxable Parts .00 *
+ * Non-Taxable Parts 561.55 *
+ * Total Labor 1,685.00 *
+ * Non-Taxable 1,685.00 *
+ * Misc Charges 434.56-*
+ * GST/HST 271.80 *
+ * Sales Tax .00 *
+ * (Carbon Tax Surcharge will be added) *
+ * TOTAL DUE > 2,083.79 *
+ ****************************************
\ No newline at end of file
diff --git a/JDIS-20230118-13_40_52.txt b/JDIS-20230118-13_40_52.txt
new file mode 100644
index 0000000..37e7fa6
--- /dev/null
+++ b/JDIS-20230118-13_40_52.txt
@@ -0,0 +1,60 @@
+
+
+
+Date 18JAN2023 13:40:49 ** WORK ORDER PREVIEW ** Page 1
+
+Location 42 Work Order 3524330 Seg. 01 Opn Dt 18JAN2023
+Auth by Phone 902-835-3381 Inv Cls Dt
+ CHARGE Slprn
+ S MUNICIPAL ENTERPRISES LIM Cust No. 42000005 S MUNICIPAL ENTERPRISES LIM
+ O 315 ROCKY LAKE DRIVE Pur-Ord. 10731900 H REQUIRE -PO -JOB OR EQUIP
+ L PO BOX 48100 P-% 0.0 L-% 0.0 I invoicereceiving@dexter.c
+ D BEDFORD, NS B4A 3Z2 P 48 QUARRYSTONE, NS B4A 3
+G/L # Stock# Multi-use#
+Make Model PIN Number Equipment Meter MC SFR
+JD 324L 1LU324LXKZB069244 L-124 .0 S
+Prt Cls-PC Lbr Cls-ICL Price Cd-L Prt Tx-0909 Lbr Tx-0909
+
+Item Hrs/Ord Bk-Ord Ship Description/Comments RATE EXTENSION
+-------------------------------------------------------------------------------
+
+ SERVICE CALL TO GOODWOOD
+ PM INTERVAL: 500 HR T
+ EMPID: HALPM1 T
+ PROMISE DATE: 18JAN2023 T
+ SPECIAL INSTRUCTIONS: MILLS DR GOODWOOD NS T
+ CONTACT: MAURICE COMPAGNON 902-717-1354 T
+ EMAIL: MCOMPAGNON@DEXTERS.CA T
+ SEG # 01 TOTAL = .00 P .00 LH .00 L .00 M .00 T
+ Quoted TOTAL = .00 P .00 LH .00 L .00 M .00 T
+
+ PERFOM 500 HOUR SERVICE
+ 2 2 245085L 5L-(4x5) 43.01 86.02
+ 5 5 WDF WASTE DI .10 .50
+ 1 1 MIU800650 OIL FILT 26.20 26.20
+ 1 1 AT171854 AIR FILT 53.24 53.24
+ 1 1 KV16429 AIR FILT 96.66 96.66
+ 1 1 MIU805005 FILTER E 95.99 95.99
+ 1 1 MIU802421 FILTER E 51.97 51.97
+ 1 1 MIU802422 O-RING 19.39 19.39
+ 1 1 LW12202965 FILTER 107.14 107.14
+ .50 01-18 R/T 04540 REPAIR 205.00 102.50
+ PLEASE PICK AND PUT IN BRADS OIL ROOM FOR 3PM!!
+ SEG # 02 TOTAL = 537.11 P .50 LH 102.50 L .00 M 639.61 T
+
+
+
+
+
+
+ ****************************************
+ * Taxable Parts .00 *
+ * Non-Taxable Parts 537.11 *
+ * Total Labor 102.50 *
+ * Non-Taxable 102.50 *
+ * Misc Charges .00 *
+ * GST/HST 95.94 *
+ * Sales Tax .00 *
+ * (Carbon Tax Surcharge will be added) *
+ * TOTAL DUE > 735.55 *
+ ****************************************
\ No newline at end of file
diff --git a/Log/log.log b/Log/log.log
new file mode 100644
index 0000000..4ce0797
--- /dev/null
+++ b/Log/log.log
@@ -0,0 +1,2013 @@
+******************************************
+****************IMPORT LOG****************
+******************************************
+Success Date: 01/18/2023 02:33:07 PM File Name: JDIS-20230118-11_36_42.txt Work Order #: 3360706********************************
+***********************SQL Messages************************
+3381261 missing inspection.
+4309809 missing inspection.
+4311132 missing inspection.
+4311131 missing inspection.
+4311131 missing inspection.
+3395063 missing inspection.
+4704924 missing inspection.
+4704914 missing inspection.
+4601886 missing inspection.
+3376721 missing inspection.
+3376720 missing inspection.
+3376718 missing inspection.
+4311207 missing inspection.
+4311207 missing inspection.
+4311206 missing inspection.
+4311206 missing inspection.
+4311214 missing inspection.
+4311218 missing inspection.
+3376725 missing inspection.
+3371292 missing inspection.
+3390377 missing inspection.
+3360657 missing inspection.
+3360658 missing inspection.
+3376728 missing inspection.
+4705009 missing inspection.
+4705009 missing inspection.
+4705068 missing inspection.
+3360663 missing inspection.
+4705094 missing inspection.
+4311607 missing inspection.
+4705183 missing inspection.
+3376737 missing inspection.
+3381350 missing inspection.
+3360668 missing inspection.
+4311696 missing inspection.
+3360674 missing inspection.
+3371319 missing inspection.
+3371319 missing inspection.
+3371318 missing inspection.
+4311790 missing inspection.
+4311790 missing inspection.
+4311790 missing inspection.
+4311904 missing inspection.
+3371326 missing inspection.
+3371327 missing inspection.
+4602015 missing inspection.
+4602016 missing inspection.
+3365340 missing inspection.
+4311907 missing inspection.
+3376752 missing inspection.
+4311953 missing inspection.
+4311905 missing inspection.
+4705395 missing inspection.
+3365341 missing inspection.
+3390385 missing inspection.
+4311992 missing inspection.
+3381359 missing inspection.
+3376757 missing inspection.
+3381365 missing inspection.
+3381364 missing inspection.
+3376758 missing inspection.
+3381367 missing inspection.
+3376758 missing inspection.
+4312053 missing inspection.
+4312126 missing inspection.
+4312126 missing inspection.
+3381368 missing inspection.
+3381370 missing inspection.
+3522587 missing inspection.
+4705476 missing inspection.
+4705476 missing inspection.
+3522508 missing inspection.
+3376764 missing inspection.
+3376763 missing inspection.
+3390388 missing inspection.
+4312257 missing inspection.
+4602038 missing inspection.
+3381384 missing inspection.
+4312234 missing inspection.
+3381387 missing inspection.
+3376768 missing inspection.
+3376771 missing inspection.
+4312235 missing inspection.
+3376770 missing inspection.
+4312296 missing inspection.
+3376770 missing inspection.
+4312236 missing inspection.
+3395066 missing inspection.
+3365346 missing inspection.
+4312238 missing inspection.
+4312237 missing inspection.
+3376773 missing inspection.
+3376772 missing inspection.
+4312362 missing inspection.
+4312358 missing inspection.
+4312015 missing inspection.
+4312359 missing inspection.
+4312359 missing inspection.
+4705583 missing inspection.
+4705583 missing inspection.
+4312420 missing inspection.
+4312420 missing inspection.
+4312429 missing inspection.
+4312429 missing inspection.
+3376779 missing inspection.
+3371350 missing inspection.
+4312557 missing inspection.
+4312605 missing inspection.
+4312563 missing inspection.
+4312685 missing inspection.
+3381393 missing inspection.
+3376783 missing inspection.
+4705689 missing inspection.
+4705688 missing inspection.
+4312623 missing inspection.
+4312382 missing inspection.
+4312719 missing inspection.
+3360680 missing inspection.
+3381397 missing inspection.
+3371357 missing inspection.
+5009090 missing inspection.
+5009090 missing inspection.
+test3381397 missing inspection.
+3371362 missing inspection.
+3371351 missing inspection.
+4312849 missing inspection.
+4806170 missing inspection.
+4602145 missing inspection.
+4602151 missing inspection.
+4312972 missing inspection.
+4312974 missing inspection.
+4312974 missing inspection.
+4312974 missing inspection.
+3360685 missing inspection.
+3371364 missing inspection.
+4806202 missing inspection.
+3371366 missing inspection.
+3360688 missing inspection.
+4705898 missing inspection.
+3371372 missing inspection.
+3381409 missing inspection.
+4313153 missing inspection.
+3371375 missing inspection.
+3371374 missing inspection.
+3376793 missing inspection.
+3376796 missing inspection.
+3376797 missing inspection.
+4602176 missing inspection.
+3371377 missing inspection.
+3371377 missing inspection.
+4705982 missing inspection.
+4705982 missing inspection.
+4313289 missing inspection.
+3376810 missing inspection.
+3376811 missing inspection.
+4313351 missing inspection.
+3376814 missing inspection.
+3376815 missing inspection.
+3381414 missing inspection.
+3371381 missing inspection.
+3376817 missing inspection.
+3371387 missing inspection.
+3371387 missing inspection.
+3381417 missing inspection.
+3371389 missing inspection.
+4313501 missing inspection.
+4313501 missing inspection.
+4313502 missing inspection.
+3365353 missing inspection.
+3371393 missing inspection.
+3390393 missing inspection.
+4313555 missing inspection.
+4313686 missing inspection.
+4602216 missing inspection.
+4312831 missing inspection.
+3381426 missing inspection.
+4706118 missing inspection.
+4706120 missing inspection.
+3376823 missing inspection.
+3376823 missing inspection.
+3376823 missing inspection.
+3376823 missing inspection.
+3376824 missing inspection.
+3371406 missing inspection.
+3371398 missing inspection.
+3523233 missing inspection.
+4313827 missing inspection.
+4313876 missing inspection.
+4313877 missing inspection.
+4313887 missing inspection.
+4313879 missing inspection.
+4313886 missing inspection.
+3381436 missing inspection.
+4313914 missing inspection.
+4313914 missing inspection.
+4313974 missing inspection.
+4313974 missing inspection.
+3376831 missing inspection.
+3376829 missing inspection.
+4312809 missing inspection.
+3381441 missing inspection.
+4706235 missing inspection.
+4602307 missing inspection.
+4602315 missing inspection.
+4602314 missing inspection.
+4314259 missing inspection.
+3376841 missing inspection.
+3371431 missing inspection.
+3371431 missing inspection.
+3381451 missing inspection.
+4314353 missing inspection.
+4314352 missing inspection.
+3376843 missing inspection.
+3376842 missing inspection.
+4706386 missing inspection.
+4706386 missing inspection.
+3371440 missing inspection.
+3381459 missing inspection.
+3371441 missing inspection.
+3371441 missing inspection.
+3381468 missing inspection.
+3381471 missing inspection.
+3381472 missing inspection.
+3381474 missing inspection.
+4314534 missing inspection.
+4314540 missing inspection.
+4314540 missing inspection.
+4602361 missing inspection.
+3381502 missing inspection.
+3376853 missing inspection.
+3360692 missing inspection.
+4314535 missing inspection.
+3381504 missing inspection.
+3381506 missing inspection.
+3371450 missing inspection.
+4314670 missing inspection.
+4314671 missing inspection.
+4314675 missing inspection.
+4314674 missing inspection.
+4602393 missing inspection.
+3376859 missing inspection.
+3390396 missing inspection.
+3371457 missing inspection.
+3395079 missing inspection.
+3395078 missing inspection.
+3376862 missing inspection.
+3376862 missing inspection.
+3395077 missing inspection.
+4706529 missing inspection.
+4706528 missing inspection.
+4314829 missing inspection.
+3381517 missing inspection.
+3523658 missing inspection.
+3376865 missing inspection.
+3376865 missing inspection.
+3376865 missing inspection.
+3376865 missing inspection.
+3378452 missing inspection.
+4314928 missing inspection.
+4314931 missing inspection.
+4314931 missing inspection.
+4314931 missing inspection.
+4807031 missing inspection.
+4807031 missing inspection.
+3371467 missing inspection.
+3381533 missing inspection.
+4602447 missing inspection.
+4315115 missing inspection.
+4315118 missing inspection.
+4315122 missing inspection.
+4315121 missing inspection.
+4706666 missing inspection.
+3376867 missing inspection.
+3376868 missing inspection.
+3371475 missing inspection.
+3376871 missing inspection.
+3371478 missing inspection.
+3371478 missing inspection.
+3365369 missing inspection.
+4315199 missing inspection.
+4315236 missing inspection.
+4602465 missing inspection.
+3371479 missing inspection.
+3381536 missing inspection.
+3376876 missing inspection.
+3376876 missing inspection.
+3376872 missing inspection.
+4315282 missing inspection.
+3376882 missing inspection.
+2242851 missing inspection.
+4315323 missing inspection.
+4315323 missing inspection.
+3365373 missing inspection.
+4706770 missing inspection.
+4706773 missing inspection.
+4706773 missing inspection.
+4706768 missing inspection.
+4315379 missing inspection.
+3371485 missing inspection.
+3371492 missing inspection.
+3371495 missing inspection.
+3376878 missing inspection.
+3381555 missing inspection.
+3381554 missing inspection.
+3381553 missing inspection.
+4706843 missing inspection.
+4706843 missing inspection.
+4706855 missing inspection.
+4807311 missing inspection.
+4602530 missing inspection.
+3381564 missing inspection.
+3390402 missing inspection.
+4315682 missing inspection.
+3371502 missing inspection.
+3376888 missing inspection.
+3395082 missing inspection.
+3395082 missing inspection.
+3395083 missing inspection.
+3395083 missing inspection.
+3371507 missing inspection.
+4315701 missing inspection.
+3524069 missing inspection.
+3381567 missing inspection.
+4807407 missing inspection.
+3360702 missing inspection.
+3360703 missing inspection.
+3381571 missing inspection.
+4315780 missing inspection.
+3376896 missing inspection.
+3376902 missing inspection.
+3376901 missing inspection.
+4315941 missing inspection.
+4315941 missing inspection.
+4315941 missing inspection.
+4707004 missing inspection.
+3381575 missing inspection.
+4315902 missing inspection.
+4315927 missing inspection.
+4707024 missing inspection.
+2243111 missing inspection.
+4315925 missing inspection.
+4602599 missing inspection.
+3371533 missing inspection.
+4707061 missing inspection.
+3371541 missing inspection.
+3371541 missing inspection.
+4316080 missing inspection.
+3371542 missing inspection.
+3371542 missing inspection.
+4602622 missing inspection.
+4316081 missing inspection.
+4602567 missing inspection.
+3371544 missing inspection.
+3395084 missing inspection.
+3395084 missing inspection.
+4316083 missing inspection.
+4602633 missing inspection.
+3390403 missing inspection.
+4316272 missing inspection.
+4316107 missing inspection.
+4807633 missing inspection.
+3376908 missing inspection.
+3376908 missing inspection.
+3371547 missing inspection.
+4316145 missing inspection.
+3376906 missing inspection.
+3376906 missing inspection.
+3376906 missing inspection.
+3376906 missing inspection.
+4807642 missing inspection.
+4807642 missing inspection.
+4807645 missing inspection.
+3376907 missing inspection.
+3371555 missing inspection.
+3371555 missing inspection.
+4316427 missing inspection.
+3360705 missing inspection.
+3360705 missing inspection.
+3371550 missing inspection.
+3371549 missing inspection.
+3371552 missing inspection.
+3371554 missing inspection.
+3395085 missing inspection.
+3395085 missing inspection.
+4316205 missing inspection.
+4316205 missing inspection.
+3376912 missing inspection.
+3376912 missing inspection.
+3376913 missing inspection.
+4807692 missing inspection.
+4807692 missing inspection.
+4316466 missing inspection.
+3371562 missing inspection.
+3360707 missing inspection.
+3381591 missing inspection.
+3381591 missing inspection.
+3360707 missing inspection.
+3360706 missing inspection.
+0
+*********************End SQL Messages**********************
+Success Date: 01/18/2023 02:45:02 PM File Name: JDIS-20230118-13_40_52.txt Work Order #: 3524330********************************
+***********************SQL Messages************************
+3381261 missing inspection.
+4309809 missing inspection.
+4311132 missing inspection.
+4311131 missing inspection.
+4311131 missing inspection.
+3395063 missing inspection.
+4704924 missing inspection.
+4704914 missing inspection.
+4601886 missing inspection.
+3376721 missing inspection.
+3376720 missing inspection.
+3376718 missing inspection.
+4311207 missing inspection.
+4311207 missing inspection.
+4311206 missing inspection.
+4311206 missing inspection.
+4311214 missing inspection.
+4311218 missing inspection.
+3376725 missing inspection.
+3371292 missing inspection.
+3390377 missing inspection.
+3360657 missing inspection.
+3360658 missing inspection.
+3376728 missing inspection.
+4705009 missing inspection.
+4705009 missing inspection.
+4705068 missing inspection.
+3360663 missing inspection.
+4705094 missing inspection.
+4311607 missing inspection.
+4705183 missing inspection.
+3376737 missing inspection.
+3381350 missing inspection.
+3360668 missing inspection.
+4311696 missing inspection.
+3360674 missing inspection.
+3371319 missing inspection.
+3371319 missing inspection.
+3371318 missing inspection.
+4311790 missing inspection.
+4311790 missing inspection.
+4311790 missing inspection.
+4311904 missing inspection.
+3371326 missing inspection.
+3371327 missing inspection.
+4602015 missing inspection.
+4602016 missing inspection.
+3365340 missing inspection.
+4311907 missing inspection.
+3376752 missing inspection.
+4311953 missing inspection.
+4311905 missing inspection.
+4705395 missing inspection.
+3365341 missing inspection.
+3390385 missing inspection.
+4311992 missing inspection.
+3381359 missing inspection.
+3376757 missing inspection.
+3381365 missing inspection.
+3381364 missing inspection.
+3376758 missing inspection.
+3381367 missing inspection.
+3376758 missing inspection.
+4312053 missing inspection.
+4312126 missing inspection.
+4312126 missing inspection.
+3381368 missing inspection.
+3381370 missing inspection.
+3522587 missing inspection.
+4705476 missing inspection.
+4705476 missing inspection.
+3522508 missing inspection.
+3376764 missing inspection.
+3376763 missing inspection.
+3390388 missing inspection.
+4312257 missing inspection.
+4602038 missing inspection.
+3381384 missing inspection.
+4312234 missing inspection.
+3381387 missing inspection.
+3376768 missing inspection.
+3376771 missing inspection.
+4312235 missing inspection.
+3376770 missing inspection.
+4312296 missing inspection.
+3376770 missing inspection.
+4312236 missing inspection.
+3395066 missing inspection.
+3365346 missing inspection.
+4312238 missing inspection.
+4312237 missing inspection.
+3376773 missing inspection.
+3376772 missing inspection.
+4312362 missing inspection.
+4312358 missing inspection.
+4312015 missing inspection.
+4312359 missing inspection.
+4312359 missing inspection.
+4705583 missing inspection.
+4705583 missing inspection.
+4312420 missing inspection.
+4312420 missing inspection.
+4312429 missing inspection.
+4312429 missing inspection.
+3376779 missing inspection.
+3371350 missing inspection.
+4312557 missing inspection.
+4312605 missing inspection.
+4312563 missing inspection.
+4312685 missing inspection.
+3381393 missing inspection.
+3376783 missing inspection.
+4705689 missing inspection.
+4705688 missing inspection.
+4312623 missing inspection.
+4312382 missing inspection.
+4312719 missing inspection.
+3360680 missing inspection.
+3381397 missing inspection.
+3371357 missing inspection.
+5009090 missing inspection.
+5009090 missing inspection.
+test3381397 missing inspection.
+3371362 missing inspection.
+3371351 missing inspection.
+4312849 missing inspection.
+4806170 missing inspection.
+4602145 missing inspection.
+4602151 missing inspection.
+4312972 missing inspection.
+4312974 missing inspection.
+4312974 missing inspection.
+4312974 missing inspection.
+3360685 missing inspection.
+3371364 missing inspection.
+4806202 missing inspection.
+3371366 missing inspection.
+3360688 missing inspection.
+4705898 missing inspection.
+3371372 missing inspection.
+3381409 missing inspection.
+4313153 missing inspection.
+3371375 missing inspection.
+3371374 missing inspection.
+3376793 missing inspection.
+3376796 missing inspection.
+3376797 missing inspection.
+4602176 missing inspection.
+3371377 missing inspection.
+3371377 missing inspection.
+4705982 missing inspection.
+4705982 missing inspection.
+4313289 missing inspection.
+3376810 missing inspection.
+3376811 missing inspection.
+4313351 missing inspection.
+3376814 missing inspection.
+3376815 missing inspection.
+3381414 missing inspection.
+3371381 missing inspection.
+3376817 missing inspection.
+3371387 missing inspection.
+3371387 missing inspection.
+3381417 missing inspection.
+3371389 missing inspection.
+4313501 missing inspection.
+4313501 missing inspection.
+4313502 missing inspection.
+3365353 missing inspection.
+3371393 missing inspection.
+3390393 missing inspection.
+4313555 missing inspection.
+4313686 missing inspection.
+4602216 missing inspection.
+4312831 missing inspection.
+3381426 missing inspection.
+4706118 missing inspection.
+4706120 missing inspection.
+3376823 missing inspection.
+3376823 missing inspection.
+3376823 missing inspection.
+3376823 missing inspection.
+3376824 missing inspection.
+3371406 missing inspection.
+3371398 missing inspection.
+3523233 missing inspection.
+4313827 missing inspection.
+4313876 missing inspection.
+4313877 missing inspection.
+4313887 missing inspection.
+4313879 missing inspection.
+4313886 missing inspection.
+3381436 missing inspection.
+4313914 missing inspection.
+4313914 missing inspection.
+4313974 missing inspection.
+4313974 missing inspection.
+3376831 missing inspection.
+3376829 missing inspection.
+4312809 missing inspection.
+3381441 missing inspection.
+4706235 missing inspection.
+4602307 missing inspection.
+4602315 missing inspection.
+4602314 missing inspection.
+4314259 missing inspection.
+3376841 missing inspection.
+3371431 missing inspection.
+3371431 missing inspection.
+3381451 missing inspection.
+4314353 missing inspection.
+4314352 missing inspection.
+3376843 missing inspection.
+3376842 missing inspection.
+4706386 missing inspection.
+4706386 missing inspection.
+3371440 missing inspection.
+3381459 missing inspection.
+3371441 missing inspection.
+3371441 missing inspection.
+3381468 missing inspection.
+3381471 missing inspection.
+3381472 missing inspection.
+3381474 missing inspection.
+4314534 missing inspection.
+4314540 missing inspection.
+4314540 missing inspection.
+4602361 missing inspection.
+3381502 missing inspection.
+3376853 missing inspection.
+3360692 missing inspection.
+4314535 missing inspection.
+3381504 missing inspection.
+3381506 missing inspection.
+3371450 missing inspection.
+4314670 missing inspection.
+4314671 missing inspection.
+4314675 missing inspection.
+4314674 missing inspection.
+4602393 missing inspection.
+3376859 missing inspection.
+3390396 missing inspection.
+3371457 missing inspection.
+3395079 missing inspection.
+3395078 missing inspection.
+3376862 missing inspection.
+3376862 missing inspection.
+3395077 missing inspection.
+4706529 missing inspection.
+4706528 missing inspection.
+4314829 missing inspection.
+3381517 missing inspection.
+3523658 missing inspection.
+3376865 missing inspection.
+3376865 missing inspection.
+3376865 missing inspection.
+3376865 missing inspection.
+3378452 missing inspection.
+4314928 missing inspection.
+4314931 missing inspection.
+4314931 missing inspection.
+4314931 missing inspection.
+4807031 missing inspection.
+4807031 missing inspection.
+3371467 missing inspection.
+3381533 missing inspection.
+4602447 missing inspection.
+4315115 missing inspection.
+4315118 missing inspection.
+4315122 missing inspection.
+4315121 missing inspection.
+4706666 missing inspection.
+3376867 missing inspection.
+3376868 missing inspection.
+3371475 missing inspection.
+3376871 missing inspection.
+3371478 missing inspection.
+3371478 missing inspection.
+3365369 missing inspection.
+4315199 missing inspection.
+4315236 missing inspection.
+4602465 missing inspection.
+3371479 missing inspection.
+3381536 missing inspection.
+3376876 missing inspection.
+3376876 missing inspection.
+3376872 missing inspection.
+4315282 missing inspection.
+3376882 missing inspection.
+2242851 missing inspection.
+4315323 missing inspection.
+4315323 missing inspection.
+3365373 missing inspection.
+4706770 missing inspection.
+4706773 missing inspection.
+4706773 missing inspection.
+4706768 missing inspection.
+4315379 missing inspection.
+3371485 missing inspection.
+3371492 missing inspection.
+3371495 missing inspection.
+3376878 missing inspection.
+3381555 missing inspection.
+3381554 missing inspection.
+3381553 missing inspection.
+4706843 missing inspection.
+4706843 missing inspection.
+4706855 missing inspection.
+4807311 missing inspection.
+4602530 missing inspection.
+3381564 missing inspection.
+3390402 missing inspection.
+4315682 missing inspection.
+3371502 missing inspection.
+3376888 missing inspection.
+3395082 missing inspection.
+3395082 missing inspection.
+3395083 missing inspection.
+3395083 missing inspection.
+3371507 missing inspection.
+4315701 missing inspection.
+3524069 missing inspection.
+3381567 missing inspection.
+4807407 missing inspection.
+3360702 missing inspection.
+3360703 missing inspection.
+3381571 missing inspection.
+4315780 missing inspection.
+3376896 missing inspection.
+3376902 missing inspection.
+3376901 missing inspection.
+4315941 missing inspection.
+4315941 missing inspection.
+4315941 missing inspection.
+4707004 missing inspection.
+3381575 missing inspection.
+4315902 missing inspection.
+4315927 missing inspection.
+4707024 missing inspection.
+2243111 missing inspection.
+4315925 missing inspection.
+4602599 missing inspection.
+3371533 missing inspection.
+4707061 missing inspection.
+3371541 missing inspection.
+3371541 missing inspection.
+4316080 missing inspection.
+3371542 missing inspection.
+3371542 missing inspection.
+4602622 missing inspection.
+4316081 missing inspection.
+4602567 missing inspection.
+3371544 missing inspection.
+3395084 missing inspection.
+3395084 missing inspection.
+4316083 missing inspection.
+4602633 missing inspection.
+3390403 missing inspection.
+4316272 missing inspection.
+4316107 missing inspection.
+4807633 missing inspection.
+3376908 missing inspection.
+3376908 missing inspection.
+3371547 missing inspection.
+4316145 missing inspection.
+3376906 missing inspection.
+3376906 missing inspection.
+3376906 missing inspection.
+3376906 missing inspection.
+4807642 missing inspection.
+4807642 missing inspection.
+4807645 missing inspection.
+3376907 missing inspection.
+3371555 missing inspection.
+3371555 missing inspection.
+4316427 missing inspection.
+3360705 missing inspection.
+3360705 missing inspection.
+3371550 missing inspection.
+3371549 missing inspection.
+3371552 missing inspection.
+3371554 missing inspection.
+3395085 missing inspection.
+3395085 missing inspection.
+4316205 missing inspection.
+4316205 missing inspection.
+3376912 missing inspection.
+3376912 missing inspection.
+3376913 missing inspection.
+4807692 missing inspection.
+4807692 missing inspection.
+4316466 missing inspection.
+3371562 missing inspection.
+3360707 missing inspection.
+3381591 missing inspection.
+3381591 missing inspection.
+3360707 missing inspection.
+3360706 missing inspection.
+3524330 missing inspection.
+0
+*********************End SQL Messages**********************
+Date: 01/18/2023 02:45:02 PM Error: Object reference not set to an instance of an object.
+Error occured in line # 48
+Success Date: 01/18/2023 02:45:41 PM File Name: JDIS-20230118-13_37_13.txt Work Order #: 3524310********************************
+***********************SQL Messages************************
+3381261 missing inspection.
+4309809 missing inspection.
+4311132 missing inspection.
+4311131 missing inspection.
+4311131 missing inspection.
+3395063 missing inspection.
+4704924 missing inspection.
+4704914 missing inspection.
+4601886 missing inspection.
+3376721 missing inspection.
+3376720 missing inspection.
+3376718 missing inspection.
+4311207 missing inspection.
+4311207 missing inspection.
+4311206 missing inspection.
+4311206 missing inspection.
+4311214 missing inspection.
+4311218 missing inspection.
+3376725 missing inspection.
+3371292 missing inspection.
+3390377 missing inspection.
+3360657 missing inspection.
+3360658 missing inspection.
+3376728 missing inspection.
+4705009 missing inspection.
+4705009 missing inspection.
+4705068 missing inspection.
+3360663 missing inspection.
+4705094 missing inspection.
+4311607 missing inspection.
+4705183 missing inspection.
+3376737 missing inspection.
+3381350 missing inspection.
+3360668 missing inspection.
+4311696 missing inspection.
+3360674 missing inspection.
+3371319 missing inspection.
+3371319 missing inspection.
+3371318 missing inspection.
+4311790 missing inspection.
+4311790 missing inspection.
+4311790 missing inspection.
+4311904 missing inspection.
+3371326 missing inspection.
+3371327 missing inspection.
+4602015 missing inspection.
+4602016 missing inspection.
+3365340 missing inspection.
+4311907 missing inspection.
+3376752 missing inspection.
+4311953 missing inspection.
+4311905 missing inspection.
+4705395 missing inspection.
+3365341 missing inspection.
+3390385 missing inspection.
+4311992 missing inspection.
+3381359 missing inspection.
+3376757 missing inspection.
+3381365 missing inspection.
+3381364 missing inspection.
+3376758 missing inspection.
+3381367 missing inspection.
+3376758 missing inspection.
+4312053 missing inspection.
+4312126 missing inspection.
+4312126 missing inspection.
+3381368 missing inspection.
+3381370 missing inspection.
+3522587 missing inspection.
+4705476 missing inspection.
+4705476 missing inspection.
+3522508 missing inspection.
+3376764 missing inspection.
+3376763 missing inspection.
+3390388 missing inspection.
+4312257 missing inspection.
+4602038 missing inspection.
+3381384 missing inspection.
+4312234 missing inspection.
+3381387 missing inspection.
+3376768 missing inspection.
+3376771 missing inspection.
+4312235 missing inspection.
+3376770 missing inspection.
+4312296 missing inspection.
+3376770 missing inspection.
+4312236 missing inspection.
+3395066 missing inspection.
+3365346 missing inspection.
+4312238 missing inspection.
+4312237 missing inspection.
+3376773 missing inspection.
+3376772 missing inspection.
+4312362 missing inspection.
+4312358 missing inspection.
+4312015 missing inspection.
+4312359 missing inspection.
+4312359 missing inspection.
+4705583 missing inspection.
+4705583 missing inspection.
+4312420 missing inspection.
+4312420 missing inspection.
+4312429 missing inspection.
+4312429 missing inspection.
+3376779 missing inspection.
+3371350 missing inspection.
+4312557 missing inspection.
+4312605 missing inspection.
+4312563 missing inspection.
+4312685 missing inspection.
+3381393 missing inspection.
+3376783 missing inspection.
+4705689 missing inspection.
+4705688 missing inspection.
+4312623 missing inspection.
+4312382 missing inspection.
+4312719 missing inspection.
+3360680 missing inspection.
+3381397 missing inspection.
+3371357 missing inspection.
+5009090 missing inspection.
+5009090 missing inspection.
+test3381397 missing inspection.
+3371362 missing inspection.
+3371351 missing inspection.
+4312849 missing inspection.
+4806170 missing inspection.
+4602145 missing inspection.
+4602151 missing inspection.
+4312972 missing inspection.
+4312974 missing inspection.
+4312974 missing inspection.
+4312974 missing inspection.
+3360685 missing inspection.
+3371364 missing inspection.
+4806202 missing inspection.
+3371366 missing inspection.
+3360688 missing inspection.
+4705898 missing inspection.
+3371372 missing inspection.
+3381409 missing inspection.
+4313153 missing inspection.
+3371375 missing inspection.
+3371374 missing inspection.
+3376793 missing inspection.
+3376796 missing inspection.
+3376797 missing inspection.
+4602176 missing inspection.
+3371377 missing inspection.
+3371377 missing inspection.
+4705982 missing inspection.
+4705982 missing inspection.
+4313289 missing inspection.
+3376810 missing inspection.
+3376811 missing inspection.
+4313351 missing inspection.
+3376814 missing inspection.
+3376815 missing inspection.
+3381414 missing inspection.
+3371381 missing inspection.
+3376817 missing inspection.
+3371387 missing inspection.
+3371387 missing inspection.
+3381417 missing inspection.
+3371389 missing inspection.
+4313501 missing inspection.
+4313501 missing inspection.
+4313502 missing inspection.
+3365353 missing inspection.
+3371393 missing inspection.
+3390393 missing inspection.
+4313555 missing inspection.
+4313686 missing inspection.
+4602216 missing inspection.
+4312831 missing inspection.
+3381426 missing inspection.
+4706118 missing inspection.
+4706120 missing inspection.
+3376823 missing inspection.
+3376823 missing inspection.
+3376823 missing inspection.
+3376823 missing inspection.
+3376824 missing inspection.
+3371406 missing inspection.
+3371398 missing inspection.
+3523233 missing inspection.
+4313827 missing inspection.
+4313876 missing inspection.
+4313877 missing inspection.
+4313887 missing inspection.
+4313879 missing inspection.
+4313886 missing inspection.
+3381436 missing inspection.
+4313914 missing inspection.
+4313914 missing inspection.
+4313974 missing inspection.
+4313974 missing inspection.
+3376831 missing inspection.
+3376829 missing inspection.
+4312809 missing inspection.
+3381441 missing inspection.
+4706235 missing inspection.
+4602307 missing inspection.
+4602315 missing inspection.
+4602314 missing inspection.
+4314259 missing inspection.
+3376841 missing inspection.
+3371431 missing inspection.
+3371431 missing inspection.
+3381451 missing inspection.
+4314353 missing inspection.
+4314352 missing inspection.
+3376843 missing inspection.
+3376842 missing inspection.
+4706386 missing inspection.
+4706386 missing inspection.
+3371440 missing inspection.
+3381459 missing inspection.
+3371441 missing inspection.
+3371441 missing inspection.
+3381468 missing inspection.
+3381471 missing inspection.
+3381472 missing inspection.
+3381474 missing inspection.
+4314534 missing inspection.
+4314540 missing inspection.
+4314540 missing inspection.
+4602361 missing inspection.
+3381502 missing inspection.
+3376853 missing inspection.
+3360692 missing inspection.
+4314535 missing inspection.
+3381504 missing inspection.
+3381506 missing inspection.
+3371450 missing inspection.
+4314670 missing inspection.
+4314671 missing inspection.
+4314675 missing inspection.
+4314674 missing inspection.
+4602393 missing inspection.
+3376859 missing inspection.
+3390396 missing inspection.
+3371457 missing inspection.
+3395079 missing inspection.
+3395078 missing inspection.
+3376862 missing inspection.
+3376862 missing inspection.
+3395077 missing inspection.
+4706529 missing inspection.
+4706528 missing inspection.
+4314829 missing inspection.
+3381517 missing inspection.
+3523658 missing inspection.
+3376865 missing inspection.
+3376865 missing inspection.
+3376865 missing inspection.
+3376865 missing inspection.
+3378452 missing inspection.
+4314928 missing inspection.
+4314931 missing inspection.
+4314931 missing inspection.
+4314931 missing inspection.
+4807031 missing inspection.
+4807031 missing inspection.
+3371467 missing inspection.
+3381533 missing inspection.
+4602447 missing inspection.
+4315115 missing inspection.
+4315118 missing inspection.
+4315122 missing inspection.
+4315121 missing inspection.
+4706666 missing inspection.
+3376867 missing inspection.
+3376868 missing inspection.
+3371475 missing inspection.
+3376871 missing inspection.
+3371478 missing inspection.
+3371478 missing inspection.
+3365369 missing inspection.
+4315199 missing inspection.
+4315236 missing inspection.
+4602465 missing inspection.
+3371479 missing inspection.
+3381536 missing inspection.
+3376876 missing inspection.
+3376876 missing inspection.
+3376872 missing inspection.
+4315282 missing inspection.
+3376882 missing inspection.
+2242851 missing inspection.
+4315323 missing inspection.
+4315323 missing inspection.
+3365373 missing inspection.
+4706770 missing inspection.
+4706773 missing inspection.
+4706773 missing inspection.
+4706768 missing inspection.
+4315379 missing inspection.
+3371485 missing inspection.
+3371492 missing inspection.
+3371495 missing inspection.
+3376878 missing inspection.
+3381555 missing inspection.
+3381554 missing inspection.
+3381553 missing inspection.
+4706843 missing inspection.
+4706843 missing inspection.
+4706855 missing inspection.
+4807311 missing inspection.
+4602530 missing inspection.
+3381564 missing inspection.
+3390402 missing inspection.
+4315682 missing inspection.
+3371502 missing inspection.
+3376888 missing inspection.
+3395082 missing inspection.
+3395082 missing inspection.
+3395083 missing inspection.
+3395083 missing inspection.
+3371507 missing inspection.
+4315701 missing inspection.
+3524069 missing inspection.
+3381567 missing inspection.
+4807407 missing inspection.
+3360702 missing inspection.
+3360703 missing inspection.
+3381571 missing inspection.
+4315780 missing inspection.
+3376896 missing inspection.
+3376902 missing inspection.
+3376901 missing inspection.
+4315941 missing inspection.
+4315941 missing inspection.
+4315941 missing inspection.
+4707004 missing inspection.
+3381575 missing inspection.
+4315902 missing inspection.
+4315927 missing inspection.
+4707024 missing inspection.
+2243111 missing inspection.
+4315925 missing inspection.
+4602599 missing inspection.
+3371533 missing inspection.
+4707061 missing inspection.
+3371541 missing inspection.
+3371541 missing inspection.
+4316080 missing inspection.
+3371542 missing inspection.
+3371542 missing inspection.
+4602622 missing inspection.
+4316081 missing inspection.
+4602567 missing inspection.
+3371544 missing inspection.
+3395084 missing inspection.
+3395084 missing inspection.
+4316083 missing inspection.
+4602633 missing inspection.
+3390403 missing inspection.
+4316272 missing inspection.
+4316107 missing inspection.
+4807633 missing inspection.
+3376908 missing inspection.
+3376908 missing inspection.
+3371547 missing inspection.
+4316145 missing inspection.
+3376906 missing inspection.
+3376906 missing inspection.
+3376906 missing inspection.
+3376906 missing inspection.
+4807642 missing inspection.
+4807642 missing inspection.
+4807645 missing inspection.
+3376907 missing inspection.
+3371555 missing inspection.
+3371555 missing inspection.
+4316427 missing inspection.
+3360705 missing inspection.
+3360705 missing inspection.
+3371550 missing inspection.
+3371549 missing inspection.
+3371552 missing inspection.
+3371554 missing inspection.
+3395085 missing inspection.
+3395085 missing inspection.
+4316205 missing inspection.
+4316205 missing inspection.
+3376912 missing inspection.
+3376912 missing inspection.
+3376913 missing inspection.
+4807692 missing inspection.
+4807692 missing inspection.
+4316466 missing inspection.
+3371562 missing inspection.
+3360707 missing inspection.
+3381591 missing inspection.
+3381591 missing inspection.
+3360707 missing inspection.
+3360706 missing inspection.
+3524330 missing inspection.
+0
+3381261 missing inspection.
+4309809 missing inspection.
+4311132 missing inspection.
+4311131 missing inspection.
+4311131 missing inspection.
+3395063 missing inspection.
+4704924 missing inspection.
+4704914 missing inspection.
+4601886 missing inspection.
+3376721 missing inspection.
+3376720 missing inspection.
+3376718 missing inspection.
+4311207 missing inspection.
+4311207 missing inspection.
+4311206 missing inspection.
+4311206 missing inspection.
+4311214 missing inspection.
+4311218 missing inspection.
+3376725 missing inspection.
+3371292 missing inspection.
+3390377 missing inspection.
+3360657 missing inspection.
+3360658 missing inspection.
+3376728 missing inspection.
+4705009 missing inspection.
+4705009 missing inspection.
+4705068 missing inspection.
+3360663 missing inspection.
+4705094 missing inspection.
+4311607 missing inspection.
+4705183 missing inspection.
+3376737 missing inspection.
+3381350 missing inspection.
+3360668 missing inspection.
+4311696 missing inspection.
+3360674 missing inspection.
+3371319 missing inspection.
+3371319 missing inspection.
+3371318 missing inspection.
+4311790 missing inspection.
+4311790 missing inspection.
+4311790 missing inspection.
+4311904 missing inspection.
+3371326 missing inspection.
+3371327 missing inspection.
+4602015 missing inspection.
+4602016 missing inspection.
+3365340 missing inspection.
+4311907 missing inspection.
+3376752 missing inspection.
+4311953 missing inspection.
+4311905 missing inspection.
+4705395 missing inspection.
+3365341 missing inspection.
+3390385 missing inspection.
+4311992 missing inspection.
+3381359 missing inspection.
+3376757 missing inspection.
+3381365 missing inspection.
+3381364 missing inspection.
+3376758 missing inspection.
+3381367 missing inspection.
+3376758 missing inspection.
+4312053 missing inspection.
+4312126 missing inspection.
+4312126 missing inspection.
+3381368 missing inspection.
+3381370 missing inspection.
+3522587 missing inspection.
+4705476 missing inspection.
+4705476 missing inspection.
+3522508 missing inspection.
+3376764 missing inspection.
+3376763 missing inspection.
+3390388 missing inspection.
+4312257 missing inspection.
+4602038 missing inspection.
+3381384 missing inspection.
+4312234 missing inspection.
+3381387 missing inspection.
+3376768 missing inspection.
+3376771 missing inspection.
+4312235 missing inspection.
+3376770 missing inspection.
+4312296 missing inspection.
+3376770 missing inspection.
+4312236 missing inspection.
+3395066 missing inspection.
+3365346 missing inspection.
+4312238 missing inspection.
+4312237 missing inspection.
+3376773 missing inspection.
+3376772 missing inspection.
+4312362 missing inspection.
+4312358 missing inspection.
+4312015 missing inspection.
+4312359 missing inspection.
+4312359 missing inspection.
+4705583 missing inspection.
+4705583 missing inspection.
+4312420 missing inspection.
+4312420 missing inspection.
+4312429 missing inspection.
+4312429 missing inspection.
+3376779 missing inspection.
+3371350 missing inspection.
+4312557 missing inspection.
+4312605 missing inspection.
+4312563 missing inspection.
+4312685 missing inspection.
+3381393 missing inspection.
+3376783 missing inspection.
+4705689 missing inspection.
+4705688 missing inspection.
+4312623 missing inspection.
+4312382 missing inspection.
+4312719 missing inspection.
+3360680 missing inspection.
+3381397 missing inspection.
+3371357 missing inspection.
+5009090 missing inspection.
+5009090 missing inspection.
+test3381397 missing inspection.
+3371362 missing inspection.
+3371351 missing inspection.
+4312849 missing inspection.
+4806170 missing inspection.
+4602145 missing inspection.
+4602151 missing inspection.
+4312972 missing inspection.
+4312974 missing inspection.
+4312974 missing inspection.
+4312974 missing inspection.
+3360685 missing inspection.
+3371364 missing inspection.
+4806202 missing inspection.
+3371366 missing inspection.
+3360688 missing inspection.
+4705898 missing inspection.
+3371372 missing inspection.
+3381409 missing inspection.
+4313153 missing inspection.
+3371375 missing inspection.
+3371374 missing inspection.
+3376793 missing inspection.
+3376796 missing inspection.
+3376797 missing inspection.
+4602176 missing inspection.
+3371377 missing inspection.
+3371377 missing inspection.
+4705982 missing inspection.
+4705982 missing inspection.
+4313289 missing inspection.
+3376810 missing inspection.
+3376811 missing inspection.
+4313351 missing inspection.
+3376814 missing inspection.
+3376815 missing inspection.
+3381414 missing inspection.
+3371381 missing inspection.
+3376817 missing inspection.
+3371387 missing inspection.
+3371387 missing inspection.
+3381417 missing inspection.
+3371389 missing inspection.
+4313501 missing inspection.
+4313501 missing inspection.
+4313502 missing inspection.
+3365353 missing inspection.
+3371393 missing inspection.
+3390393 missing inspection.
+4313555 missing inspection.
+4313686 missing inspection.
+4602216 missing inspection.
+4312831 missing inspection.
+3381426 missing inspection.
+4706118 missing inspection.
+4706120 missing inspection.
+3376823 missing inspection.
+3376823 missing inspection.
+3376823 missing inspection.
+3376823 missing inspection.
+3376824 missing inspection.
+3371406 missing inspection.
+3371398 missing inspection.
+3523233 missing inspection.
+4313827 missing inspection.
+4313876 missing inspection.
+4313877 missing inspection.
+4313887 missing inspection.
+4313879 missing inspection.
+4313886 missing inspection.
+3381436 missing inspection.
+4313914 missing inspection.
+4313914 missing inspection.
+4313974 missing inspection.
+4313974 missing inspection.
+3376831 missing inspection.
+3376829 missing inspection.
+4312809 missing inspection.
+3381441 missing inspection.
+4706235 missing inspection.
+4602307 missing inspection.
+4602315 missing inspection.
+4602314 missing inspection.
+4314259 missing inspection.
+3376841 missing inspection.
+3371431 missing inspection.
+3371431 missing inspection.
+3381451 missing inspection.
+4314353 missing inspection.
+4314352 missing inspection.
+3376843 missing inspection.
+3376842 missing inspection.
+4706386 missing inspection.
+4706386 missing inspection.
+3371440 missing inspection.
+3381459 missing inspection.
+3371441 missing inspection.
+3371441 missing inspection.
+3381468 missing inspection.
+3381471 missing inspection.
+3381472 missing inspection.
+3381474 missing inspection.
+4314534 missing inspection.
+4314540 missing inspection.
+4314540 missing inspection.
+4602361 missing inspection.
+3381502 missing inspection.
+3376853 missing inspection.
+3360692 missing inspection.
+4314535 missing inspection.
+3381504 missing inspection.
+3381506 missing inspection.
+3371450 missing inspection.
+4314670 missing inspection.
+4314671 missing inspection.
+4314675 missing inspection.
+4314674 missing inspection.
+4602393 missing inspection.
+3376859 missing inspection.
+3390396 missing inspection.
+3371457 missing inspection.
+3395079 missing inspection.
+3395078 missing inspection.
+3376862 missing inspection.
+3376862 missing inspection.
+3395077 missing inspection.
+4706529 missing inspection.
+4706528 missing inspection.
+4314829 missing inspection.
+3381517 missing inspection.
+3523658 missing inspection.
+3376865 missing inspection.
+3376865 missing inspection.
+3376865 missing inspection.
+3376865 missing inspection.
+3378452 missing inspection.
+4314928 missing inspection.
+4314931 missing inspection.
+4314931 missing inspection.
+4314931 missing inspection.
+4807031 missing inspection.
+4807031 missing inspection.
+3371467 missing inspection.
+3381533 missing inspection.
+4602447 missing inspection.
+4315115 missing inspection.
+4315118 missing inspection.
+4315122 missing inspection.
+4315121 missing inspection.
+4706666 missing inspection.
+3376867 missing inspection.
+3376868 missing inspection.
+3371475 missing inspection.
+3376871 missing inspection.
+3371478 missing inspection.
+3371478 missing inspection.
+3365369 missing inspection.
+4315199 missing inspection.
+4315236 missing inspection.
+4602465 missing inspection.
+3371479 missing inspection.
+3381536 missing inspection.
+3376876 missing inspection.
+3376876 missing inspection.
+3376872 missing inspection.
+4315282 missing inspection.
+3376882 missing inspection.
+2242851 missing inspection.
+4315323 missing inspection.
+4315323 missing inspection.
+3365373 missing inspection.
+4706770 missing inspection.
+4706773 missing inspection.
+4706773 missing inspection.
+4706768 missing inspection.
+4315379 missing inspection.
+3371485 missing inspection.
+3371492 missing inspection.
+3371495 missing inspection.
+3376878 missing inspection.
+3381555 missing inspection.
+3381554 missing inspection.
+3381553 missing inspection.
+4706843 missing inspection.
+4706843 missing inspection.
+4706855 missing inspection.
+4807311 missing inspection.
+4602530 missing inspection.
+3381564 missing inspection.
+3390402 missing inspection.
+4315682 missing inspection.
+3371502 missing inspection.
+3376888 missing inspection.
+3395082 missing inspection.
+3395082 missing inspection.
+3395083 missing inspection.
+3395083 missing inspection.
+3371507 missing inspection.
+4315701 missing inspection.
+3524069 missing inspection.
+3381567 missing inspection.
+4807407 missing inspection.
+3360702 missing inspection.
+3360703 missing inspection.
+3381571 missing inspection.
+4315780 missing inspection.
+3376896 missing inspection.
+3376902 missing inspection.
+3376901 missing inspection.
+4315941 missing inspection.
+4315941 missing inspection.
+4315941 missing inspection.
+4707004 missing inspection.
+3381575 missing inspection.
+4315902 missing inspection.
+4315927 missing inspection.
+4707024 missing inspection.
+2243111 missing inspection.
+4315925 missing inspection.
+4602599 missing inspection.
+3371533 missing inspection.
+4707061 missing inspection.
+3371541 missing inspection.
+3371541 missing inspection.
+4316080 missing inspection.
+3371542 missing inspection.
+3371542 missing inspection.
+4602622 missing inspection.
+4316081 missing inspection.
+4602567 missing inspection.
+3371544 missing inspection.
+3395084 missing inspection.
+3395084 missing inspection.
+4316083 missing inspection.
+4602633 missing inspection.
+3390403 missing inspection.
+4316272 missing inspection.
+4316107 missing inspection.
+4807633 missing inspection.
+3376908 missing inspection.
+3376908 missing inspection.
+3371547 missing inspection.
+4316145 missing inspection.
+3376906 missing inspection.
+3376906 missing inspection.
+3376906 missing inspection.
+3376906 missing inspection.
+4807642 missing inspection.
+4807642 missing inspection.
+4807645 missing inspection.
+3376907 missing inspection.
+3371555 missing inspection.
+3371555 missing inspection.
+4316427 missing inspection.
+3360705 missing inspection.
+3360705 missing inspection.
+3371550 missing inspection.
+3371549 missing inspection.
+3371552 missing inspection.
+3371554 missing inspection.
+3395085 missing inspection.
+3395085 missing inspection.
+4316205 missing inspection.
+4316205 missing inspection.
+3376912 missing inspection.
+3376912 missing inspection.
+3376913 missing inspection.
+4807692 missing inspection.
+4807692 missing inspection.
+4316466 missing inspection.
+3371562 missing inspection.
+3360707 missing inspection.
+3381591 missing inspection.
+3381591 missing inspection.
+3360707 missing inspection.
+3360706 missing inspection.
+3524330 missing inspection.
+0
+*********************End SQL Messages**********************
+Success Date: 01/19/2023 07:03:50 AM File Name: JDIS-20230118-14_58_51.txt Work Order #: 3371564********************************
+***********************SQL Messages************************
+3381261 missing inspection.
+4309809 missing inspection.
+4311132 missing inspection.
+4311131 missing inspection.
+4311131 missing inspection.
+3395063 missing inspection.
+4704924 missing inspection.
+4704914 missing inspection.
+4601886 missing inspection.
+3376721 missing inspection.
+3376720 missing inspection.
+3376718 missing inspection.
+4311207 missing inspection.
+4311207 missing inspection.
+4311206 missing inspection.
+4311206 missing inspection.
+4311214 missing inspection.
+4311218 missing inspection.
+3376725 missing inspection.
+3371292 missing inspection.
+3390377 missing inspection.
+3360657 missing inspection.
+3360658 missing inspection.
+3376728 missing inspection.
+4705009 missing inspection.
+4705009 missing inspection.
+4705068 missing inspection.
+3360663 missing inspection.
+4705094 missing inspection.
+4311607 missing inspection.
+4705183 missing inspection.
+3376737 missing inspection.
+3381350 missing inspection.
+3360668 missing inspection.
+4311696 missing inspection.
+3360674 missing inspection.
+3371319 missing inspection.
+3371319 missing inspection.
+3371318 missing inspection.
+4311790 missing inspection.
+4311790 missing inspection.
+4311790 missing inspection.
+4311904 missing inspection.
+3371326 missing inspection.
+3371327 missing inspection.
+4602015 missing inspection.
+4602016 missing inspection.
+3365340 missing inspection.
+4311907 missing inspection.
+3376752 missing inspection.
+4311953 missing inspection.
+4311905 missing inspection.
+4705395 missing inspection.
+3365341 missing inspection.
+3390385 missing inspection.
+4311992 missing inspection.
+3381359 missing inspection.
+3376757 missing inspection.
+3381365 missing inspection.
+3381364 missing inspection.
+3376758 missing inspection.
+3381367 missing inspection.
+3376758 missing inspection.
+4312053 missing inspection.
+4312126 missing inspection.
+4312126 missing inspection.
+3381368 missing inspection.
+3381370 missing inspection.
+3522587 missing inspection.
+4705476 missing inspection.
+4705476 missing inspection.
+3522508 missing inspection.
+3376764 missing inspection.
+3376763 missing inspection.
+3390388 missing inspection.
+4312257 missing inspection.
+4602038 missing inspection.
+3381384 missing inspection.
+4312234 missing inspection.
+3381387 missing inspection.
+3376768 missing inspection.
+3376771 missing inspection.
+4312235 missing inspection.
+3376770 missing inspection.
+4312296 missing inspection.
+3376770 missing inspection.
+4312236 missing inspection.
+3395066 missing inspection.
+3365346 missing inspection.
+4312238 missing inspection.
+4312237 missing inspection.
+3376773 missing inspection.
+3376772 missing inspection.
+4312362 missing inspection.
+4312358 missing inspection.
+4312015 missing inspection.
+4312359 missing inspection.
+4312359 missing inspection.
+4705583 missing inspection.
+4705583 missing inspection.
+4312420 missing inspection.
+4312420 missing inspection.
+4312429 missing inspection.
+4312429 missing inspection.
+3376779 missing inspection.
+3371350 missing inspection.
+4312557 missing inspection.
+4312605 missing inspection.
+4312563 missing inspection.
+4312685 missing inspection.
+3381393 missing inspection.
+3376783 missing inspection.
+4705689 missing inspection.
+4705688 missing inspection.
+4312623 missing inspection.
+4312382 missing inspection.
+4312719 missing inspection.
+3360680 missing inspection.
+3381397 missing inspection.
+3371357 missing inspection.
+5009090 missing inspection.
+5009090 missing inspection.
+test3381397 missing inspection.
+3371362 missing inspection.
+3371351 missing inspection.
+4312849 missing inspection.
+4806170 missing inspection.
+4602145 missing inspection.
+4602151 missing inspection.
+4312972 missing inspection.
+4312974 missing inspection.
+4312974 missing inspection.
+4312974 missing inspection.
+3360685 missing inspection.
+3371364 missing inspection.
+4806202 missing inspection.
+3371366 missing inspection.
+3360688 missing inspection.
+4705898 missing inspection.
+3371372 missing inspection.
+3381409 missing inspection.
+4313153 missing inspection.
+3371375 missing inspection.
+3371374 missing inspection.
+3376793 missing inspection.
+3376796 missing inspection.
+3376797 missing inspection.
+4602176 missing inspection.
+3371377 missing inspection.
+3371377 missing inspection.
+4705982 missing inspection.
+4705982 missing inspection.
+4313289 missing inspection.
+3376810 missing inspection.
+3376811 missing inspection.
+4313351 missing inspection.
+3376814 missing inspection.
+3376815 missing inspection.
+3381414 missing inspection.
+3371381 missing inspection.
+3376817 missing inspection.
+3371387 missing inspection.
+3371387 missing inspection.
+3381417 missing inspection.
+3371389 missing inspection.
+4313501 missing inspection.
+4313501 missing inspection.
+4313502 missing inspection.
+3365353 missing inspection.
+3371393 missing inspection.
+3390393 missing inspection.
+4313555 missing inspection.
+4313686 missing inspection.
+4602216 missing inspection.
+4312831 missing inspection.
+3381426 missing inspection.
+4706118 missing inspection.
+4706120 missing inspection.
+3376823 missing inspection.
+3376823 missing inspection.
+3376823 missing inspection.
+3376823 missing inspection.
+3376824 missing inspection.
+3371406 missing inspection.
+3371398 missing inspection.
+3523233 missing inspection.
+4313827 missing inspection.
+4313876 missing inspection.
+4313877 missing inspection.
+4313887 missing inspection.
+4313879 missing inspection.
+4313886 missing inspection.
+3381436 missing inspection.
+4313914 missing inspection.
+4313914 missing inspection.
+4313974 missing inspection.
+4313974 missing inspection.
+3376831 missing inspection.
+3376829 missing inspection.
+4312809 missing inspection.
+3381441 missing inspection.
+4706235 missing inspection.
+4602307 missing inspection.
+4602315 missing inspection.
+4602314 missing inspection.
+4314259 missing inspection.
+3376841 missing inspection.
+3371431 missing inspection.
+3371431 missing inspection.
+3381451 missing inspection.
+4314353 missing inspection.
+4314352 missing inspection.
+3376843 missing inspection.
+3376842 missing inspection.
+4706386 missing inspection.
+4706386 missing inspection.
+3371440 missing inspection.
+3381459 missing inspection.
+3371441 missing inspection.
+3371441 missing inspection.
+3381468 missing inspection.
+3381471 missing inspection.
+3381472 missing inspection.
+3381474 missing inspection.
+4314534 missing inspection.
+4314540 missing inspection.
+4314540 missing inspection.
+4602361 missing inspection.
+3381502 missing inspection.
+3376853 missing inspection.
+3360692 missing inspection.
+4314535 missing inspection.
+3381504 missing inspection.
+3381506 missing inspection.
+3371450 missing inspection.
+4314670 missing inspection.
+4314671 missing inspection.
+4314675 missing inspection.
+4314674 missing inspection.
+4602393 missing inspection.
+3376859 missing inspection.
+3390396 missing inspection.
+3371457 missing inspection.
+3395079 missing inspection.
+3395078 missing inspection.
+3376862 missing inspection.
+3376862 missing inspection.
+3395077 missing inspection.
+4706529 missing inspection.
+4706528 missing inspection.
+4314829 missing inspection.
+3381517 missing inspection.
+3523658 missing inspection.
+3376865 missing inspection.
+3376865 missing inspection.
+3376865 missing inspection.
+3376865 missing inspection.
+3378452 missing inspection.
+4314928 missing inspection.
+4314931 missing inspection.
+4314931 missing inspection.
+4314931 missing inspection.
+4807031 missing inspection.
+4807031 missing inspection.
+3371467 missing inspection.
+3381533 missing inspection.
+4602447 missing inspection.
+4315115 missing inspection.
+4315118 missing inspection.
+4315122 missing inspection.
+4315121 missing inspection.
+4706666 missing inspection.
+3376867 missing inspection.
+3376868 missing inspection.
+3371475 missing inspection.
+3376871 missing inspection.
+3371478 missing inspection.
+3371478 missing inspection.
+3365369 missing inspection.
+4315199 missing inspection.
+4315236 missing inspection.
+4602465 missing inspection.
+3371479 missing inspection.
+3381536 missing inspection.
+3376876 missing inspection.
+3376876 missing inspection.
+3376872 missing inspection.
+4315282 missing inspection.
+3376882 missing inspection.
+2242851 missing inspection.
+4315323 missing inspection.
+4315323 missing inspection.
+3365373 missing inspection.
+4706770 missing inspection.
+4706773 missing inspection.
+4706773 missing inspection.
+4706768 missing inspection.
+4315379 missing inspection.
+3371485 missing inspection.
+3371492 missing inspection.
+3371495 missing inspection.
+3376878 missing inspection.
+3381555 missing inspection.
+3381554 missing inspection.
+3381553 missing inspection.
+4706843 missing inspection.
+4706843 missing inspection.
+4706855 missing inspection.
+4807311 missing inspection.
+4602530 missing inspection.
+3381564 missing inspection.
+3390402 missing inspection.
+4315682 missing inspection.
+3371502 missing inspection.
+3376888 missing inspection.
+3395082 missing inspection.
+3395082 missing inspection.
+3395083 missing inspection.
+3395083 missing inspection.
+3371507 missing inspection.
+4315701 missing inspection.
+3524069 missing inspection.
+3381567 missing inspection.
+4807407 missing inspection.
+3360702 missing inspection.
+3360703 missing inspection.
+3381571 missing inspection.
+4315780 missing inspection.
+3376896 missing inspection.
+3376902 missing inspection.
+3376901 missing inspection.
+4315941 missing inspection.
+4315941 missing inspection.
+4315941 missing inspection.
+4707004 missing inspection.
+3381575 missing inspection.
+4315902 missing inspection.
+4315927 missing inspection.
+4707024 missing inspection.
+2243111 missing inspection.
+4315925 missing inspection.
+4602599 missing inspection.
+3371533 missing inspection.
+4707061 missing inspection.
+3371541 missing inspection.
+3371541 missing inspection.
+4316080 missing inspection.
+3371542 missing inspection.
+3371542 missing inspection.
+4602622 missing inspection.
+4316081 missing inspection.
+4602567 missing inspection.
+3371544 missing inspection.
+3395084 missing inspection.
+3395084 missing inspection.
+4316083 missing inspection.
+4602633 missing inspection.
+3390403 missing inspection.
+4316272 missing inspection.
+4316107 missing inspection.
+4807633 missing inspection.
+3376908 missing inspection.
+3376908 missing inspection.
+3371547 missing inspection.
+4316145 missing inspection.
+3376906 missing inspection.
+3376906 missing inspection.
+3376906 missing inspection.
+3376906 missing inspection.
+4807642 missing inspection.
+4807642 missing inspection.
+4807645 missing inspection.
+3376907 missing inspection.
+3371555 missing inspection.
+3371555 missing inspection.
+4316427 missing inspection.
+3360705 missing inspection.
+3360705 missing inspection.
+3371550 missing inspection.
+3371549 missing inspection.
+3371552 missing inspection.
+3371554 missing inspection.
+3395085 missing inspection.
+3395085 missing inspection.
+4316205 missing inspection.
+4316205 missing inspection.
+3376912 missing inspection.
+3376912 missing inspection.
+3376913 missing inspection.
+4807692 missing inspection.
+4807692 missing inspection.
+4316466 missing inspection.
+3371562 missing inspection.
+3381591 missing inspection.
+3381591 missing inspection.
+3360707 missing inspection.
+0
+*********************End SQL Messages**********************
diff --git a/MailObjects/Exch365.cs b/MailObjects/Exch365.cs
new file mode 100644
index 0000000..824c352
--- /dev/null
+++ b/MailObjects/Exch365.cs
@@ -0,0 +1,19 @@
+using System.Net;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using Microsoft.Identity.Client;
+using Microsoft.Exchange.WebServices;
+using Microsoft.Exchange.WebServices.Data;
+
+
+
+namespace jdis_import.MailObjects
+{
+ public class Exch365
+ {
+
+
+ }
+}
\ No newline at end of file
diff --git a/Part.cs b/Part.cs
new file mode 100644
index 0000000..2a2cc68
--- /dev/null
+++ b/Part.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace jdis_import
+{
+ public class Part
+ {
+
+ public string Qty { get; set; }
+ public string Number { get; set; }
+ public string Description { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/Program.cs b/Program.cs
index ef0aedf..386ab0e 100644
--- a/Program.cs
+++ b/Program.cs
@@ -1,14 +1,870 @@
-using System;
+using System.Collections.Generic;
+using System;
+using System.Text;
+using System.Threading.Tasks;
+using Microsoft.Identity.Client;
+using Microsoft.Exchange.WebServices.Data;
+using System.IO;
+using System.Data;
+using System.Data.SqlClient;
+using System.Reflection;
+
+/*
+Secret Value up-8Q~y46~JyQZjJlsAJ-zpXpglpmuPIJ1Gx3a2O
+Secret ID cba04a6c-a233-4646-909b-b50921edbe1c
+Client ID 489776b1-ee79-4b14-bc44-9f6bf47332db
+Object ID c7647074-edb6-4e8e-8a01-a1ed924fdae9
+Tenant ID 1fd06c96-d3a4-45e9-9ed7-bcecb394d277
+*/
namespace jdis_import
{
class Program
{
- static void Main(string[] args)
+ private static bool _log = true;
+ private static string _connection = "Data Source=RPM-APP.prelub.com;Initial Catalog=Connexion_Brandt;User ID=mobilepmuser;Password=data4techs;";
+ private static string _workOrderNumber = string.Empty;
+ private static List _sqlMessages = new List();
+ private static bool _newMachine = false;
+ private static bool _quoted = false;
+ private static Dictionary _keys = new Dictionary() { { "SecretV", "up-8Q~y46~JyQZjJlsAJ-zpXpglpmuPIJ1Gx3a2O" }, { "SecretID", "cba04a6c-a233-4646-909b-b50921edbe1c" }, { "ObjectId", "c7647074-edb6-4e8e-8a01-a1ed924fdae9" }, { "TenentID", "1fd06c96-d3a4-45e9-9ed7-bcecb394d277" }, { "AppID", "489776b1-ee79-4b14-bc44-9f6bf47332db" } };
+ public static Dictionary InspectionType;
+ static async System.Threading.Tasks.Task Main(string[] args)
+ {
+ SetupDirectories();
+ List list = new List();
+ var cca = ConfidentialClientApplicationBuilder
+ // .Create("1dff6bdb-7009-4d2a-ae0f-9f333a4f182b")
+ // .WithClientSecret("VOD8Q~7BI9u4ySU0saesCG87TaEtKSCya5vw6as5")
+ // .WithTenantId("1fd06c96-d3a4-45e9-9ed7-bcecb394d277")
+ .Create(_keys["AppID"])
+ .WithClientSecret(_keys["SecretV"])
+ .WithTenantId(_keys["TenentID"])
+ .Build();
+
+ var ewsScopes = new string[] { "https://outlook.office365.com/.default" };
+ try
+ {
+ var authResult = await cca.AcquireTokenForClient(ewsScopes)
+ .ExecuteAsync();
+
+ // Configure the ExchangeService with the access token
+ var ewsClient = new ExchangeService();
+ ewsClient.Url = new Uri("https://outlook.office365.com/EWS/Exchange.asmx");
+ ewsClient.Credentials = new OAuthCredentials(authResult.AccessToken);
+ ewsClient.ImpersonatedUserId =
+ new ImpersonatedUserId(ConnectingIdType.SmtpAddress, "cmobile@prelub.com");
+ Mailbox mb = new Mailbox("connexionmobile@rpmindustries.org");
+ FolderId fid = new FolderId(WellKnownFolderName.Inbox, mb);
+ List searchFilterCollection = new List();
+ string[] filters = "Brandt Import;BRANDT IMPORT;brandt import;TEST Brandt".Split(';');
+ foreach (string s in filters)
+ searchFilterCollection.Add(new SearchFilter.ContainsSubstring(ItemSchema.Subject, s));
+
+ SearchFilter searchFilter = new SearchFilter.SearchFilterCollection(LogicalOperator.Or, searchFilterCollection.ToArray());
+ ItemView view = new ItemView(100);
+
+ view.PropertySet = new PropertySet(BasePropertySet.IdOnly, ItemSchema.Subject, ItemSchema.DateTimeReceived);
+ view.OrderBy.Add(ItemSchema.DateTimeReceived, SortDirection.Descending);
+ view.Traversal = ItemTraversal.Shallow;
+ FindItemsResults- findResults = ewsClient.FindItems(fid, searchFilter, view);
+ foreach (EmailMessage msg in findResults.Items)
+ {
+ msg.Load();
+ if (!msg.IsRead)
+ {
+ if (msg.HasAttachments)
+ {
+ foreach (Attachment attachment in msg.Attachments)
+ {
+ attachment.Load();
+ if (attachment is FileAttachment)
+ {
+ ToDo todo = new ToDo();
+ todo.Sender = msg.Sender.Address;
+ todo.SenderName = msg.Sender.Name;
+ todo.FileName = attachment.Name;
+ list.Add(todo);
+ //Download File
+ FileAttachment fAttachment = attachment as FileAttachment;
+ File.WriteAllBytes(fAttachment.Name, fAttachment.Content);
+ msg.IsRead = true;
+ }
+ }
+ }
+ }
+ }
+ foreach (ToDo import in list)
+ {
+ //Start Importing
+ BeginImport(import);
+ GetInspectionTypes();
+ ReadFile(import);
+ }
+ foreach (ToDo sendMsg in list)
+ {
+ string body = "JDIS File: {0} {1}";
+ if (sendMsg.Success)
+ {
+ body = string.Format(body, sendMsg.FileName, "Was Imported Successfully");
+ }
+ else
+ {
+ body = string.Format(body, sendMsg.FileName, string.Format("Had Errors while importing: {0}", sendMsg.Validation));
+ }
+ EmailMessage msgToSend = new EmailMessage(ewsClient);
+ msgToSend.Subject = sendMsg.FileName;
+ msgToSend.ToRecipients.Add(new EmailAddress(sendMsg.Sender));
+ msgToSend.CcRecipients.Add(new EmailAddress("mcarman@rpmindustries.com"));
+ msgToSend.Body = body;
+ msgToSend.SendAndSaveCopy();
+ }
+ }
+ catch (MsalException ex)
+ {
+ Console.WriteLine($"Error acquiring access token: {ex}");
+ }
+ catch (Exception ex)
+ {
+ Console.WriteLine($"Error: {ex}");
+ }
+
+ if (System.Diagnostics.Debugger.IsAttached)
+ {
+ Console.WriteLine("Hit any key to exit...");
+ Console.ReadKey();
+ }
+
+
+
+ }
+
+ public static void BeginImport(ToDo todo)
+ {
+ XMLData.BuildIntervalLookup();
+ }
+ private static void SetupDirectories()
+ {
+ if (!Directory.Exists("Success"))
+ Directory.CreateDirectory("Success");
+ if (!Directory.Exists("Fail"))
+ Directory.CreateDirectory("Fail");
+ if (!Directory.Exists("Log"))
+ Directory.CreateDirectory("Log");
+ }
+ public static void GetInspectionTypes()
{
- int i = (int)System.Net.SecurityProtocolType.Tls12;
+ InspectionType = new Dictionary();
+ SqlConnection con = new SqlConnection("Data Source=RPM-APP.prelub.com;Initial Catalog=Connexion_Brandt;User ID=mobilepmuser;Password=data4techs;");
+ con.Open();
+ SqlCommand cmd = con.CreateCommand();
+ cmd.CommandTimeout = 0;
+ cmd.Connection = con;
+ cmd.CommandText = "Select ID, [Name] From InspectionType";
+ cmd.CommandType = CommandType.Text;
+ DataSet ds = new DataSet();
+ SqlDataAdapter da = new SqlDataAdapter(cmd);
+ da.Fill(ds);
+ foreach (DataRow row in ds.Tables[0].Rows)
+ {
+ InspectionType.Add(row["Name"].ToString(), Convert.ToInt32(row["ID"]));
+ }
+ ds.Dispose();
+ cmd.Dispose();
+ con.Close();
+ con.Dispose();
- Console.WriteLine(i);
}
+ private static string frmtString
+ {
+ get
+ {
+ if (_quoted) return "\"{0}\"";
+ else return "{0}";
+ }
+ }
+ private static List WriteFileToText(string file)
+ {
+ List list = new List();
+ string txt = string.Empty;
+ using (StreamReader sr = new StreamReader(file))
+ {
+ txt = sr.ReadToEnd().Trim();
+ txt = txt.Replace("\r\r\r", "");
+ txt = txt.Replace("\r\r", "");
+ txt = txt.Replace("\r", "");
+ sr.Close();
+ }
+ string[] array = txt.Trim().Split('\n');
+ list.AddRange(array);
+ return list;
+ }
+ private static DateTime DateFormatter(string d, bool hastime = true)
+ {
+ string month, day, year, time;
+
+ DateTime dt = new DateTime();
+ if (d.IndexOf("JAN") != -1)
+ {
+ month = "01";
+ d = d.Replace("JAN", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else if (d.IndexOf("FEB") != -1)
+ {
+ month = "02";
+ d = d.Replace("FEB", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else if (d.IndexOf("MARCH") != -1)
+ {
+ month = "03";
+ d = d.Replace("MARCH", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else if (d.IndexOf("MAR") != -1)
+ {
+ month = "03";
+ d = d.Replace("MAR", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else if (d.IndexOf("APRIL") != -1)
+ {
+ month = "04";
+ d = d.Replace("APRIL", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else if (d.IndexOf("APR") != -1)
+ {
+ month = "04";
+ d = d.Replace("APR", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+
+ else if (d.IndexOf("MAY") != -1)
+ {
+ month = "05";
+ d = d.Replace("MAY", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else if (d.IndexOf("JUNE") != -1)
+ {
+ month = "06";
+ d = d.Replace("JUNE", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else if (d.IndexOf("JUN") != -1)
+ {
+ month = "06";
+ d = d.Replace("JUN", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else if (d.IndexOf("JULY") != -1)
+ {
+ month = "07";
+ d = d.Replace("JULY", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else if (d.IndexOf("JUL") != -1)
+ {
+ month = "07";
+ d = d.Replace("JUL", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else if (d.IndexOf("AUG") != -1)
+ {
+ month = "08";
+ d = d.Replace("AUG", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else if (d.IndexOf("SEPT") != -1)
+ {
+ month = "09";
+ d = d.Replace("SEPT", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else if (d.IndexOf("SEP") != -1)
+ {
+ month = "09";
+ d = d.Replace("SEP", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else if (d.IndexOf("OCT") != -1)
+ {
+ month = "10";
+ d = d.Replace("OCT", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else if (d.IndexOf("0CT") != -1)
+ {
+ month = "10";
+ d = d.Replace("0CT", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else if (d.IndexOf("NOV") != -1)
+ {
+ month = "11";
+ d = d.Replace("NOV", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ else
+ {
+ month = "12";
+ d = d.Replace("DEC", "|");
+ day = d.Substring(0, d.IndexOf("|"));
+ year = d.Substring(d.IndexOf("|") + 1, 4);
+ if (hastime)
+ time = d.Substring(d.IndexOf(":") - 3 + 2);
+ else time = "00:00:00.000";
+
+ string date = string.Format("{0}-{1}-{2} {3}", year, month, day, time);
+ dt = DateTime.Parse(date);
+ }
+ return dt;
+ }
+ private static void ReadFile(ToDo todo)
+ {
+ string file = todo.FileName;
+ Customer c = new Customer();
+ WorkOrder wo = new WorkOrder();
+ Equipment eq = new Equipment();
+ List parts = new List();
+
+ Console.WriteLine("Line 306: " + file);
+ Console.WriteLine("Line 307: " + file);
+ string filemove = string.Empty;
+ string filetxt = string.Empty;
+ string inspectionLevel = string.Empty;
+ bool isSpecial = false;
+ StringBuilder specialInstructions = new StringBuilder();
+ int line = 1;
+ try
+ {
+ List filelines = WriteFileToText(file);
+ for (int i = filelines.Count - 1; i >= 0; i--)
+ {
+ if (string.IsNullOrEmpty(filelines[i])) filelines.RemoveAt(i);
+ }
+ string[] lines = filelines.ToArray();
+
+ foreach (string s in lines)
+ {
+
+ string currentline = s.Trim().Replace("'", "''");
+ if (currentline.Contains("Page") && currentline.Substring(78).Trim() != "1")
+ line = 18;
+ if (currentline.Contains("Page") && currentline.Substring(78).Trim() == "1")
+ line = 1;
+
+ switch (line)
+ {
+ case 1:
+ string strDate = currentline.Substring(5, currentline.IndexOf("*") - 6);
+ strDate = strDate.Trim();
+ strDate.Replace(" ", " ");
+ wo.CreateDate = DateFormatter(strDate);
+ break;
+ case 2:
+ string strWONum = currentline.Substring(currentline.IndexOf("Work Order") + 10, 12);
+ strWONum = strWONum.Trim();
+ wo.Number = strWONum;
+ _workOrderNumber = strWONum;
+ string strSeg = currentline.Substring(currentline.IndexOf("Seg.") + 4, 25);
+ strSeg = strSeg.Trim();
+ wo.Segment = strSeg;
+ string strODate = currentline.Substring(currentline.IndexOf("Opn Dt") + 6);
+ strODate = strODate.Trim();
+ wo.OpnDt = DateFormatter(strODate, false);
+ break;
+ case 5:
+ c.Name = currentline.Substring(3, 25);
+ c.Number = currentline.Substring(38, 10);
+ break;
+ case 6:
+ c.Addr1 = currentline.Substring(3, 25);
+ break;
+ case 7:
+ c.Addr2 = currentline.Substring(3, 25);
+ break;
+ case 8:
+ int comma = currentline.IndexOf(",");
+ int length = currentline.Length - 3;
+
+ c.City = (comma == -1) ? "" : currentline.Substring(3, comma - 3);
+ c.State = currentline.Substring(currentline.IndexOf(",") + 2, 2);
+ c.Zip = currentline.Substring(comma + 5, 7);
+ break;
+ case 11:
+ eq.Make = currentline.Substring(0, 8).Trim();
+ eq.Model = currentline.Substring(8, 14).Trim();
+ eq.SerialNumber = currentline.Substring(22, 22).Trim();
+ eq.EquipmentNumber = currentline.Substring(42, 16).Trim();
+ eq.MeterReading = currentline.Substring(60, 7).Trim();
+ eq.MID = CSVObject.MachineExists(eq.SerialNumber, _connection);
+ if (eq.MID == 0) _newMachine = true;
+ break;
+ default:
+ break;
+ }
+
+ if (line > 14)
+ {
+ if (currentline.EndsWith(" T"))
+ {
+ if (currentline.Contains("PM LEVEL"))
+ {
+ isSpecial = false;
+ }
+ else if (currentline.Contains("PM INTERVAL"))
+ {
+ isSpecial = false;
+ string pminterval = currentline.Substring(currentline.IndexOf(":") + 2);
+ pminterval = pminterval.Substring(0, pminterval.IndexOf(" ")).Trim();
+ if (XMLData.IntervalLookup.ContainsKey(pminterval)) wo.InspectionLevel = XMLData.IntervalLookup[pminterval].ToString();
+ if (!string.IsNullOrEmpty(wo.InspectionLevel)) wo.InspectionInterval = pminterval;
+ string strService = currentline.Substring(currentline.IndexOf(":") + 2);
+ strService = strService.Substring(strService.IndexOf(" ") + 1).Trim();
+ strService = strService.Substring(strService.IndexOf(" ") + 1).Trim();
+ if (strService.IndexOf(" ") > 0)
+ strService = strService.Substring(0, strService.IndexOf(" ")).Trim();
+ if (InspectionType.ContainsKey(strService))
+ wo.InspectionType = InspectionType[strService].ToString();
+ else wo.InspectionType = InspectionType["PM"].ToString();
+ string codeanddescriptionoriginal = currentline.Substring(currentline.IndexOf(":") + 2);
+ codeanddescriptionoriginal = codeanddescriptionoriginal.Substring(0, codeanddescriptionoriginal.IndexOf(" T") - 3).Trim();
+ wo.CodeAndDescriptionOriginal = codeanddescriptionoriginal;
+ }
+ else if (currentline.Contains("EMPID"))
+ {
+ isSpecial = false;
+ string empid = currentline.Substring(currentline.IndexOf(":") + 2);
+ empid = empid.Substring(0, empid.IndexOf(" ")).Trim();
+ wo.TechnicianUserID = empid;
+ }
+ else if (currentline.Contains("PROMISE DATE"))
+ {
+ isSpecial = false;
+ string promisedate = currentline.Substring(currentline.IndexOf(":") + 2);
+ promisedate = promisedate.Substring(0, promisedate.IndexOf(" ")).Trim();
+ wo.ScheduledStartDate = DateFormatter(promisedate, false);
+ }
+ else if (currentline.Contains("SPECIAL INSTRUCTIONS"))
+ {
+ isSpecial = true;
+ string special = currentline.Substring(currentline.IndexOf(":") + 2);
+ special = special.Substring(0, special.IndexOf(" T") - 1).Trim();
+ specialInstructions.Append(special);
+ }
+ else
+ {
+ if (isSpecial)
+ {
+ string addspecial = currentline.Substring(0, currentline.IndexOf(" T") - 1).Trim();
+ specialInstructions.Append(string.Format(" {0}", addspecial));
+ }
+ }
+ }
+ else
+ {
+
+ isSpecial = false;
+ int qty = 0;
+
+ if (currentline.Length > 0)
+ {
+ string input = currentline.Substring(0, (currentline.IndexOf(" ") == -1) ? 1 : currentline.IndexOf(" ")).Trim();
+ if (int.TryParse(input, out qty))
+ {
+ if (qty < 100 && !currentline.Contains("HR"))
+ {
+ Part pt = new Part();
+ string sline = currentline.Substring(19).Trim();
+ //pt.Description = currentline.Substring(34, 14);
+ pt.Number = sline.Substring(0, sline.IndexOf(" "));
+ sline = sline.Substring(sline.IndexOf(" ")).Trim();
+ pt.Description = sline.Substring(0, sline.IndexOf(" ")).Trim();
+ pt.Qty = currentline.Substring(0, currentline.IndexOf(" ")).Trim();
+ parts.Add(pt);
+ }
+ }
+ }
+
+ }
+ }
+ line++;
+ }
+
+ if (wo.ScheduledStartDate == DateTime.MinValue) wo.ScheduledStartDate = DateTime.Now;
+ List list = new List();
+ List exceptions = new List();
+ if (parts.Count == 0)
+ {
+ Part p = new Part();
+ p.Description = string.Empty;
+ p.Qty = string.Empty;
+ p.Number = string.Empty;
+ parts.Add(p);
+
+ }
+ static void conn_InfoMsg(object sender, SqlInfoMessageEventArgs e)
+ {
+ _sqlMessages.Add(e.Message);
+ }
+
+ foreach (Part prt in parts)
+ {
+ CSVObject obj = new CSVObject();
+ obj.Address = string.Format(frmtString, c.Addr1.Trim());
+ obj.Address2 = string.Format(frmtString, c.Addr2.Trim());
+ obj.City = string.Format(frmtString, c.City.Trim());
+ obj.State = string.Format(frmtString, c.State.Trim());
+ obj.CustomerName = string.Format(frmtString, c.Name.Trim());
+ obj.CustomerNumber = string.Format(frmtString, c.Number.Trim());
+ obj.DBSWorkOrderNumber = string.Format(frmtString, wo.Number.Trim());
+ obj.EquipmentNumber = string.Format(frmtString, eq.EquipmentNumber.Trim());
+ obj.Make = string.Format(frmtString, eq.Make.Trim());
+ obj.MeterReading = string.Format(frmtString, eq.MeterReading.Trim());
+ obj.Model = string.Format(frmtString, eq.Model.Trim());
+ obj.PartNumber = string.Format(frmtString, prt.Number.Trim());
+ obj.PartNumberDescription = string.Format(frmtString, prt.Description.Trim());
+ obj.Quantity = string.Format(frmtString, prt.Qty.Trim());
+ obj.SegmentNumber = string.Format(frmtString, wo.Segment.Trim());
+ obj.SerialNumber = string.Format(frmtString, eq.SerialNumber.Trim());
+ obj.ZipCode = string.Format(frmtString, c.Zip.Trim());
+ obj.CodeAndDescription = string.Format(frmtString, wo.InspectionLevel.Trim());
+ obj.SpecialInstructions = specialInstructions.ToString();
+ obj.CodeAndDescriptionOriginal = string.Format(frmtString, wo.CodeAndDescriptionOriginal);
+ obj.ContractTypeCode = string.Format(frmtString, "");
+ obj.DateActualStart = string.Format(frmtString, wo.CreateDate);
+ obj.FamilyCode = string.Format(frmtString, "");
+ obj.FamilyDescription = string.Format(frmtString, "");
+ obj.JobSiteContactName = string.Format(frmtString, "");
+ obj.JobSiteContactPhone = string.Format(frmtString, "");
+ obj.LastServiceDate = string.Format(frmtString, "");
+ obj.PriorityCode = string.Format(frmtString, "");
+ obj.ReferenceDocNumber = string.Format(frmtString, "");
+ obj.ServiceTech = string.Format(frmtString, wo.TechnicianUserID);
+ obj.StoreDescription = string.Format(frmtString, "");
+ obj.Store = string.Format(frmtString, "");
+ obj.TechName = string.Format(frmtString, "");
+ obj.Year = string.Format(frmtString, "");
+ obj.ScheduledStartDate = string.Format(frmtString, wo.ScheduledStartDate.ToString("yyyy-MM-dd hh:mm:ss"));
+ obj.InspectionType = string.Format(frmtString, wo.InspectionType.ToString());
+ obj.Validate();
+
+
+ if (string.IsNullOrEmpty(obj.SerialNumber))
+ {
+ exceptions.Add(obj);
+ //throw new ApplicationException("Serial Number is missing.");
+ }
+ else list.Add(obj);
+ if (list.Count == 0)
+ {
+ StringBuilder sbException = new StringBuilder();
+ foreach (CSVObject csvobj in exceptions)
+ foreach (PropertyInfo pi in csvobj.GetType().GetProperties())
+ {
+ sbException.AppendLine(string.Format("{0}: {1}", pi.Name, pi.GetValue(csvobj, null)));
+ }
+ throw new ApplicationException(string.Format("Object Validation Error\r\n{0}", sbException.ToString()));
+ }
+ }
+
+ filemove = Path.Combine("Success", file);// string.Format("{0}\\{1}\\{2}", _currentDir, _settings["SUCCESSDIR"], file);
+ try
+ {
+ SqlConnection conn = new SqlConnection(_connection);
+ conn.Open();
+ string errorstr = CSVObject.WriteToDB(list, conn);
+ conn.Close();
+ conn.Dispose();
+ if (!string.IsNullOrEmpty(errorstr)) throw new ApplicationException(errorstr);
+ SqlCommand cmd = new SqlCommand("usp_DoImport", new SqlConnection(_connection));
+ cmd.CommandTimeout = 0;
+ SqlParameter sqlReturn = cmd.Parameters.Add("@b", SqlDbType.Int);
+ sqlReturn.Direction = ParameterDirection.ReturnValue;
+ cmd.Connection.Open();
+ cmd.Connection.InfoMessage += new SqlInfoMessageEventHandler(conn_InfoMsg);
+ cmd.Connection.FireInfoMessageEventOnUserErrors = true;
+ cmd.CommandType = CommandType.StoredProcedure;
+ cmd.ExecuteNonQuery();
+ if (Convert.ToInt32(cmd.Parameters["@b"].Value) != 0)
+ throw new Exception("Error happend in the do import");
+ cmd.Connection.Close();
+ cmd.Dispose();
+ conn.Dispose();
+ SqlCommand delcmd = new SqlCommand("Delete Results_Brandt", new SqlConnection(_connection));
+ delcmd.CommandTimeout = 0;
+ delcmd.Connection.Open();
+ delcmd.CommandType = CommandType.Text;
+ try
+ {
+
+ delcmd.ExecuteNonQuery();
+ }
+ catch (Exception dex)
+ {
+ throw new Exception(dex.Message);
+ }
+ delcmd.Connection.Close();
+ delcmd.Dispose();
+ }
+ catch (Exception exSql)
+ {
+ string msg = exSql.Message;
+ string logmsg = string.Format("Date: {0} Error: {1}", DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss tt"), exSql.Message);
+ WriteToLog(logmsg);
+ todo.Validation = exSql.Message + " " + _workOrderNumber;
+ //MailSvc.SendResponse(msg, _workOrderNumber);
+
+ }
+ Console.WriteLine("Line 584: " + filemove);
+ if (File.Exists(filemove)) File.Delete(filemove);
+ File.Move(file, filemove);
+ if (_log)
+ {
+ string successmsg = string.Format("Success Date: {0} File Name: {1} Work Order #: {2}{3}", DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss tt"), file, _workOrderNumber, "********************************");
+ WriteToLog(successmsg);
+ if (exceptions.Count > 0)
+ {
+ foreach (CSVObject csvobj in exceptions)
+ {
+ string csvmsg = string.Format("Null Serial# Exception Date: {0} File Name: {1} Work Order #: {2}{3}", DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss tt"), file, _workOrderNumber, "********************************");
+ WriteToLog(csvmsg);
+ }
+ }
+ if (_sqlMessages.Count > 0)
+ {
+ WriteToLog("***********************SQL Messages************************");
+ foreach (string sqlmessg in _sqlMessages)
+ WriteToLog(sqlmessg);
+ WriteToLog("*********************End SQL Messages**********************");
+ }
+ }
+ using (SqlConnection doublecheck = new SqlConnection(_connection))
+ {
+ SqlCommand cmddoublecheck = doublecheck.CreateCommand();
+ cmddoublecheck.Connection.Open();
+ cmddoublecheck.CommandTimeout = 0;
+ cmddoublecheck.CommandText = string.Format("Select MAX(ID) from WorkOrder where Number = '{0}'", wo.Number);
+ cmddoublecheck.CommandType = CommandType.Text;
+ int rslt = (cmddoublecheck.ExecuteScalar() == DBNull.Value ? 0 : (int)cmddoublecheck.ExecuteScalar());
+
+
+
+ cmddoublecheck.Dispose();
+ if (rslt > 0)
+ {
+ cmddoublecheck.CommandText = string.Format("Select ID from Inspection where workorderid = {0}", rslt);
+ rslt = (cmddoublecheck.ExecuteScalar() == DBNull.Value ? 0 : (int)cmddoublecheck.ExecuteScalar());
+ if (rslt > 0)
+ {
+ todo.Success = true;
+ //MailSvc.SendResponse("Work Order was imported successfully.", wo.Number);
+ }
+ else
+ {
+ //string noTemplate = string.Format("Work Order was created successfully. However, it appears there is no template for this model: {0}", eq.Model);
+ todo.Validation = todo.Validation + "\r\n" + string.Format("Work Order was created successfully. However, it appears there is no template for this model: {0}", eq.Model);
+ todo.Success = false;
+ }
+ }
+ else
+ {
+ todo.Validation = todo.Validation + "\r\n" + string.Format("Failed to import work order {0}", wo.Number);//)
+ }
+ //MailSvc.SendResponse(string.Format("Failed to import work order {0}.", wo.Number), wo.Number);
+ }
+ //Console.ReadLine();
+
+ }
+ catch (Exception ex)
+ {
+
+ string exMesg = string.Empty;
+ try
+ {
+ exMesg = string.Format("Date: {0} Error: {1}\r\nError occured in line # {2}", DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss tt"), ex.Message, line);
+ }
+ catch (Exception exSend)
+ {
+ Console.Write(exSend.Message);
+
+ }
+ WriteToLog(exMesg);
+
+ filemove = Path.Combine("Fail", file);//, file);
+
+
+
+ try
+ {
+ Console.WriteLine("Line 634: " + file);
+ Console.WriteLine("Line 635: " + filemove);
+ File.Move(file, filemove);
+ }
+ catch (Exception moveExcept)
+ {
+ Console.WriteLine(moveExcept.Message);
+ }
+ todo.Success = false;
+ todo.Validation = todo.Validation + "\r\n" + string.Format("Failed to import work order {0}. Error: {1}", wo.Number, exMesg);
+ //MailSvc.SendResponse(string.Format("Failed to import work order {0}. Error: {1}", wo.Number, exMesg), wo.Number, filemove);
+ }
+ }
+ private static void CreateLogFile(string logfile)
+ {
+ using (StreamWriter sw = File.CreateText(logfile))
+ {
+ sw.WriteLine("******************************************");
+ sw.WriteLine("****************IMPORT LOG****************");
+ sw.WriteLine("******************************************");
+ }
+ }
+
+ public static void WriteToLog(string message, string sqlmessage = "")
+ {
+ string logfile = Path.Combine("Log", "log.log");
+ if (!File.Exists(logfile))
+ {
+ CreateLogFile(logfile);
+ }
+ using (StreamWriter sw = File.AppendText(logfile))
+ {
+ sw.WriteLine(message);
+ if (!string.IsNullOrEmpty(sqlmessage))
+ sw.WriteLine(sqlmessage);
+ }
+ }
+
+ }
+
+ public class ToDo
+ {
+ private bool _success = false;
+ public bool Success { get { return _success; } set { _success = value; } }
+ public string Sender { get; set; }
+ public string SenderName { get; set; }
+ public string FileName { get; set; }
+ public string Validation { get; set; }
}
}
diff --git a/RESTObjects/CustomerSpec.cs b/RESTObjects/CustomerSpec.cs
new file mode 100644
index 0000000..b1185fb
--- /dev/null
+++ b/RESTObjects/CustomerSpec.cs
@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace jdis_import.RESTObjects
+{
+ public class CustomerSpec
+ {
+
+ }
+}
\ No newline at end of file
diff --git a/Success/JDIS-20230118-11_36_42.txt b/Success/JDIS-20230118-11_36_42.txt
new file mode 100644
index 0000000..8a0b3a2
--- /dev/null
+++ b/Success/JDIS-20230118-11_36_42.txt
@@ -0,0 +1,60 @@
+
+
+
+Date 18JAN2023 11:36:40 ** WORK ORDER PREVIEW ** Page 1
+
+Location 48 Work Order 3360706 Seg. 01 Opn Dt 18JAN2023
+Auth by LUC POISSANT Phone 306-385-8000 Inv Cls Dt
+ CHARGE Slprn 48
+ S K + S POTASH CANADA GP Cust No. 48000 S
+ O 220 WALL STREET Pur-Ord. REQUIRED H PLEASE EMAIL INVS (see no
+ L P-% 0.0 L-% 0.0 I accountspayable@ks-potash
+ D SASKATOON, SK S7K 3Y3 P
+G/L # Stock# Multi-use#
+Make Model PIN Number Equipment Meter MC SFR
+JD 470GLC 1FF470GXCEE471009 .0 S
+Prt Cls-PC Lbr Cls-ICL Price Cd-L Prt Tx-0101 Lbr Tx-0101
+
+Item Hrs/Ord Bk-Ord Ship Description/Comments RATE EXTENSION
+-------------------------------------------------------------------------------
+
+ 1000 HR SERVICE
+
+ SEG # 01 TOTAL = .00 P .00 LH .00 L .00 M .00 T
+ Quoted TOTAL = .00 P .00 LH .00 L .00 M .00 T
+
+ PM SERVICE CALL
+
+ SEG # 02 TOTAL = .00 P .00 LH .00 L .00 M .00 T
+ Quoted TOTAL = .00 P .00 LH .00 L .00 M .00 T
+
+ MISC ITEMS NOT COVERED BY PM INTERVAL
+ PM INTERVAL: 1000 HR T
+ EMPID: REGPM1 T
+ PROMISE DATE: 19JAN2023 T
+ SPECIAL INSTRUCTIONS: K+S SITE T
+ CONTACT: LUC POISSANT 306-536-8498 T
+ EMAIL: LUC.POISSANT@KS-POTASHCANADA.COM T
+ SEG # 03 TOTAL = .00 P .00 LH .00 L .00 M .00 T
+ Quoted TOTAL = .00 P .00 LH .00 L .00 M .00 T
+
+
+
+
+
+
+
+
+
+
+ ****************************************
+ * Taxable Parts .00 *
+ * *
+ * Total Labor .00 *
+ * *
+ * Misc Charges .00 *
+ * *
+ * Sales Tax .00 *
+ * *
+ * TOTAL DUE > .00 *
+ ****************************************
\ No newline at end of file
diff --git a/Success/JDIS-20230118-13_37_13.txt b/Success/JDIS-20230118-13_37_13.txt
new file mode 100644
index 0000000..4f3aab7
--- /dev/null
+++ b/Success/JDIS-20230118-13_37_13.txt
@@ -0,0 +1,115 @@
+
+
+
+Date 18JAN2023 13:37:10 ** WORK ORDER PREVIEW ** Page 1
+
+Location 42 Work Order 3524310 Seg. 01 Opn Dt 13JAN2023
+Auth by Phone 902-835-3381 Inv Cls Dt
+ CHARGE Slprn
+ S MUNICIPAL ENTERPRISES LIM Cust No. 42000005 S MUNICIPAL ENTERPRISES LIM
+ O 315 ROCKY LAKE DRIVE Pur-Ord. 10731374 H REQUIRE -PO -JOB OR EQUIP
+ L PO BOX 48100 P-% 0.0 L-% 0.0 I invoicereceiving@dexter.c
+ D BEDFORD, NS B4A 3Z2 P 48 QUARRYSTONE, NS B4A 3
+G/L # Stock# Multi-use#
+Make Model PIN Number Equipment Meter MC SFR
+JD 544K 1DW544KZEED664197 L109 .0 S
+Prt Cls-PC Lbr Cls-ICL Price Cd-L Prt Tx-0909 Lbr Tx-0909
+
+Item Hrs/Ord Bk-Ord Ship Description/Comments RATE EXTENSION
+-------------------------------------------------------------------------------
+
+ SERVICE CALL TO ANTRIM
+CORRECTION:
+ Travel To Antrim
+ ----------------------------------------
+ PM INTERVAL: 500 HR T
+ EMPID: HALPM1 T
+ PROMISE DATE: 16JAN2023 T
+ SPECIAL INSTRUCTIONS: ANTRIM NS T
+ CONTACT: MAURICE COMPAGNON 902-717-1354 T
+ EMAIL: MCOMPAGNON@DEXTERS.CA T
+ .75 01-16 R/T 04540 REPAIR 205.00 153.75
+ 1 01-18 1 SERVICE ACCESSORIES 13.84 13.84
+ 1 01-18 1 LABOUR CREDIT AS PER AGREE 30.00- 30.00-
+ 1 01-18 1 CARBON TAX CREDI 3.08- 3.08-
+ SEG # 01 TOTAL = .00 P .75 LH 153.75 L 19.24-M 134.51 T
+
+ 500 HOUR SERVICE
+CORRECTION:
+ Change Engine Oil & Filter
+ Change Fuel Filter & Water Seperator
+ Change Primary Air Filter
+ Change Cab Fresh & Recirc Filters
+ Check All Belts & Hoses
+ Grease Machine
+ ----------------------------------------
+ 1 1 RE504836 OIL FILT 38.76 38.76
+ 1 1 R502513 SEAL 11.86 11.86
+ 1 1 RE541922 FILTER E 64.21 64.21
+ 1 1 RE522878 FILTER E 64.26 64.26
+ 1 1 AT223493 FUEL FIL 21.83 21.83
+ 1 1 AM39653 OIL FILT 19.39 19.39
+ 1 1 AT300487 FILTER E 126.79 126.79
+ 1 1 AT191102 AIR FILT 30.89 30.89
+ 1 1 AT307501 AIR FILT 25.41 25.41
+ 1 1 2450820L 20L - 36 158.15 158.15
+ PLEASE PICK AND PU IN BRADS OIL ROOM!
+
+
+Date 18JAN2023 13:37:10 ** WORK ORDER PREVIEW ** Page 2
+
+Location 42 Work Order 3524310 Seg. 02 Opn Dt 13JAN2023
+Auth by Phone 902-835-3381 Inv Cls Dt
+ CHARGE Slprn
+ S MUNICIPAL ENTERPRISES LIM Cust No. 42000005 S MUNICIPAL ENTERPRISES LIM
+ O 315 ROCKY LAKE DRIVE Pur-Ord. 10731374 H REQUIRE -PO -JOB OR EQUIP
+ L PO BOX 48100 P-% 0.0 L-% 0.0 I invoicereceiving@dexter.c
+ D BEDFORD, NS B4A 3Z2 P 48 QUARRYSTONE, NS B4A 3
+G/L # Stock# Multi-use#
+Make Model PIN Number Equipment Meter MC SFR
+JD 544K 1DW544KZEED664197 L109 .0 S
+Prt Cls-PC Lbr Cls-ICL Price Cd-L Prt Tx-0909 Lbr Tx-0909
+
+Item Hrs/Ord Bk-Ord Ship Description/Comments RATE EXTENSION
+-------------------------------------------------------------------------------
+ 3.00 01-16 R/T 04540 REPAIR 205.00 615.00
+ 3.00- 01-16 R/T 04540 REPAIR 205.00 615.00-
+ .75 01-16 R/T 04540 REPAIR 205.00 153.75
+ 1.25 01-16 R/T 04540 REPAIR 205.00 256.25
+ 3.50 01-16 R/T 04540 REPAIR 205.00 717.50
+ .75 01-16 O/T 04540 REPAIR 265.00 198.75
+ 1.00 01-18 R/T 04540 REPAIR 205.00 205.00
+ 1 01-18 1 SERVICE ACCESSORIES 137.81 137.81
+ 1 01-18 1 LABOUR CREDIT AS PER AGREE 522.50- 522.50-
+ 1 01-18 1 CARBON TAX CREDIT 30.63- 30.63-
+ SEG # 02 TOTAL = 561.55 P 7.25 LH 1,531.25 L 415.32-M 1,677.48 T
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ****************************************
+ * Taxable Parts .00 *
+ * Non-Taxable Parts 561.55 *
+ * Total Labor 1,685.00 *
+ * Non-Taxable 1,685.00 *
+ * Misc Charges 434.56-*
+ * GST/HST 271.80 *
+ * Sales Tax .00 *
+ * (Carbon Tax Surcharge will be added) *
+ * TOTAL DUE > 2,083.79 *
+ ****************************************
\ No newline at end of file
diff --git a/Success/JDIS-20230118-13_40_52.txt b/Success/JDIS-20230118-13_40_52.txt
new file mode 100644
index 0000000..37e7fa6
--- /dev/null
+++ b/Success/JDIS-20230118-13_40_52.txt
@@ -0,0 +1,60 @@
+
+
+
+Date 18JAN2023 13:40:49 ** WORK ORDER PREVIEW ** Page 1
+
+Location 42 Work Order 3524330 Seg. 01 Opn Dt 18JAN2023
+Auth by Phone 902-835-3381 Inv Cls Dt
+ CHARGE Slprn
+ S MUNICIPAL ENTERPRISES LIM Cust No. 42000005 S MUNICIPAL ENTERPRISES LIM
+ O 315 ROCKY LAKE DRIVE Pur-Ord. 10731900 H REQUIRE -PO -JOB OR EQUIP
+ L PO BOX 48100 P-% 0.0 L-% 0.0 I invoicereceiving@dexter.c
+ D BEDFORD, NS B4A 3Z2 P 48 QUARRYSTONE, NS B4A 3
+G/L # Stock# Multi-use#
+Make Model PIN Number Equipment Meter MC SFR
+JD 324L 1LU324LXKZB069244 L-124 .0 S
+Prt Cls-PC Lbr Cls-ICL Price Cd-L Prt Tx-0909 Lbr Tx-0909
+
+Item Hrs/Ord Bk-Ord Ship Description/Comments RATE EXTENSION
+-------------------------------------------------------------------------------
+
+ SERVICE CALL TO GOODWOOD
+ PM INTERVAL: 500 HR T
+ EMPID: HALPM1 T
+ PROMISE DATE: 18JAN2023 T
+ SPECIAL INSTRUCTIONS: MILLS DR GOODWOOD NS T
+ CONTACT: MAURICE COMPAGNON 902-717-1354 T
+ EMAIL: MCOMPAGNON@DEXTERS.CA T
+ SEG # 01 TOTAL = .00 P .00 LH .00 L .00 M .00 T
+ Quoted TOTAL = .00 P .00 LH .00 L .00 M .00 T
+
+ PERFOM 500 HOUR SERVICE
+ 2 2 245085L 5L-(4x5) 43.01 86.02
+ 5 5 WDF WASTE DI .10 .50
+ 1 1 MIU800650 OIL FILT 26.20 26.20
+ 1 1 AT171854 AIR FILT 53.24 53.24
+ 1 1 KV16429 AIR FILT 96.66 96.66
+ 1 1 MIU805005 FILTER E 95.99 95.99
+ 1 1 MIU802421 FILTER E 51.97 51.97
+ 1 1 MIU802422 O-RING 19.39 19.39
+ 1 1 LW12202965 FILTER 107.14 107.14
+ .50 01-18 R/T 04540 REPAIR 205.00 102.50
+ PLEASE PICK AND PUT IN BRADS OIL ROOM FOR 3PM!!
+ SEG # 02 TOTAL = 537.11 P .50 LH 102.50 L .00 M 639.61 T
+
+
+
+
+
+
+ ****************************************
+ * Taxable Parts .00 *
+ * Non-Taxable Parts 537.11 *
+ * Total Labor 102.50 *
+ * Non-Taxable 102.50 *
+ * Misc Charges .00 *
+ * GST/HST 95.94 *
+ * Sales Tax .00 *
+ * (Carbon Tax Surcharge will be added) *
+ * TOTAL DUE > 735.55 *
+ ****************************************
\ No newline at end of file
diff --git a/Success/JDIS-20230118-14_58_51.txt b/Success/JDIS-20230118-14_58_51.txt
new file mode 100644
index 0000000..8aaa254
--- /dev/null
+++ b/Success/JDIS-20230118-14_58_51.txt
@@ -0,0 +1,109 @@
+
+
+
+Date 18JAN2023 14:58:47 ** WORK ORDER PREVIEW ** Page 1
+
+Location 48 Work Order 3371564 Seg. 01 Opn Dt 18JAN2023
+Auth by MARY BARBARA Phone 604-591-4011 Inv Cls Dt
+ CHARGE Slprn 48
+ S CITY OF SURREY Cust No. 14421632 S
+ O 13450 104TH AVENUE Pur-Ord. REQUIRED H PO #'S REQ'D ON ALL INV'S
+ L garageinvoices@surrey.ca P-% 0.0 L-% 0.0 I
+ D SURREY, BC V3T 1V8 P
+G/L # Stock# Multi-use#
+Make Model PIN Number Equipment Meter MC SFR
+JD 844J DW844JX602504 O6G367 .0 S
+Prt Cls-PC Lbr Cls-ICL Price Cd-L Prt Tx-0203 Lbr Tx-0203
+
+Item Hrs/Ord Bk-Ord Ship Description/Comments RATE EXTENSION
+-------------------------------------------------------------------------------
+
+ 500 HR SERVICE
+ PM INTERVAL: 500 HR T
+ EMPID: SRYPM1 T
+ PROMISE DATE: 07FEB2023 T
+ SPECIAL INSTRUCTIONS: 19410 22ND AVE SURREY T
+ CONTACT: MARY BARBARA 604-590-7279 T
+ EMAIL: GARAGEINVOICES@SURREY.CA T
+ 1 1 DZ118269 OIL FILTER XY 105.06 .00
+ 1 1 RE515345 FUEL FILTERXY 103.73 .00
+ 1 1 RE506428 FILTER ELEMXY 80.00 .00
+ 1 1 AT223493 FUEL FILTERXY 21.83 .00
+ 1 1 T225008 BREATHER XY 46.38 .00
+ 1 1 AT311066 AIR FILTER XY 279.52 .00
+ 1 1 AT311067 AIR FILTER XY 139.13 .00
+ 1 1 T168220 AIR FILTER XY 71.52 .00
+ 1 1 T156471 AIR FILTER XY 93.72 .00
+ 5 5 AT346594 FLUID KIT XY 52.14 .00
+ SEG # 01 TOTAL = .00 P .00 LH .00 L .00 M .00 T
+ Quoted TOTAL = .00 P .00 LH .00 L .00 M .00 T
+
+ PM SERVICE CALL
+
+ SEG # 02 TOTAL = .00 P .00 LH .00 L .00 M .00 T
+ Quoted TOTAL = .00 P .00 LH .00 L .00 M .00 T
+
+ MISC ITEMS NOT COVERED BY PM INTERVAL
+
+ SEG # 03 TOTAL = .00 P .00 LH .00 L .00 M .00 T
+ Quoted TOTAL = .00 P .00 LH .00 L .00 M .00 T
+
+
+Date 18JAN2023 14:58:47 ** WORK ORDER PREVIEW ** Page 2
+
+Location 48 Work Order 3371564 Seg. 03 Opn Dt 18JAN2023
+Auth by MARY BARBARA Phone 604-591-4011 Inv Cls Dt
+ CHARGE Slprn 48
+ S CITY OF SURREY Cust No. 14421632 S
+ O 13450 104TH AVENUE Pur-Ord. REQUIRED H PO #'S REQ'D ON ALL INV'S
+ L garageinvoices@surrey.ca P-% 0.0 L-% 0.0 I
+ D SURREY, BC V3T 1V8 P
+G/L # Stock# Multi-use#
+Make Model PIN Number Equipment Meter MC SFR
+JD 844J DW844JX602504 O6G367 .0 S
+Prt Cls-PC Lbr Cls-ICL Price Cd-L Prt Tx-0203 Lbr Tx-0203
+
+Item Hrs/Ord Bk-Ord Ship Description/Comments RATE EXTENSION
+-------------------------------------------------------------------------------
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ****************************************
+ * Taxable Parts .00 *
+ * *
+ * Backordered Parts 1,201.59 *
+ * Total Labor .00 *
+ * *
+ * Misc Charges .00 *
+ * *
+ * Sales Tax .00 *
+ * *
+ * TOTAL DUE > .00 *
+ ****************************************
\ No newline at end of file
diff --git a/WorkOrder.cs b/WorkOrder.cs
new file mode 100644
index 0000000..c36386f
--- /dev/null
+++ b/WorkOrder.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace jdis_import
+{
+ public class WorkOrder
+ {
+ public DateTime CreateDate { get; set; }
+ public DateTime OpnDt { get; set; }
+ public string Number { get; set; }
+ public string Segment { get; set; }
+ public string InspectionLevel { get; set; }
+ public string TechnicianUserID { get; set; }
+ public DateTime ScheduledStartDate { get; set; }
+ public string InspectionInterval { get; set; }
+ public string InspectionType { get; set; }
+ public string CodeAndDescriptionOriginal { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/XMLData.cs b/XMLData.cs
new file mode 100644
index 0000000..5fedd7e
--- /dev/null
+++ b/XMLData.cs
@@ -0,0 +1,38 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Xml.Linq;
+using System.Threading.Tasks;
+
+namespace jdis_import
+{
+ public class XMLData
+ {
+ private static Dictionary _cclookup;
+ public static Dictionary CCLookup { get { return _cclookup; } set { _cclookup = value; } }
+
+ private static Dictionary _intervalLookup;
+ public static Dictionary IntervalLookup { get { return _intervalLookup; } set { _intervalLookup = value; } }
+
+ public static void BuildIntervalLookup()
+ {
+ _intervalLookup = new Dictionary();
+ var doc = XDocument.Load(@"IntervalData.xml");
+ var rootNodes = doc.Root.DescendantNodes().OfType();
+ Dictionary dic = rootNodes.ToDictionary(n => n.Name.ToString(), n => n.Value);
+ foreach (KeyValuePair kvp in dic)
+ {
+ _intervalLookup.Add(kvp.Key.Replace("ZZ", ""), int.Parse(kvp.Value));
+ }
+ }
+
+ public static void BuildCCLookup()
+ {
+ _cclookup = new Dictionary();
+ var doc = XDocument.Load(string.Format("CCAddresses.xml"));
+ var rootNodes = doc.Root.DescendantNodes().OfType();
+ _cclookup = rootNodes.ToDictionary(n => n.Name.ToString(), n => n.Value);
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net6.0/Microsoft.Exchange.WebServices.Auth.dll b/bin/Debug/net6.0/Microsoft.Exchange.WebServices.Auth.dll
new file mode 100644
index 0000000..f6dfb6a
Binary files /dev/null and b/bin/Debug/net6.0/Microsoft.Exchange.WebServices.Auth.dll differ
diff --git a/bin/Debug/net6.0/Microsoft.Exchange.WebServices.dll b/bin/Debug/net6.0/Microsoft.Exchange.WebServices.dll
new file mode 100644
index 0000000..143291e
Binary files /dev/null and b/bin/Debug/net6.0/Microsoft.Exchange.WebServices.dll differ
diff --git a/bin/Debug/net6.0/Microsoft.Identity.Client.dll b/bin/Debug/net6.0/Microsoft.Identity.Client.dll
new file mode 100644
index 0000000..822c46e
Binary files /dev/null and b/bin/Debug/net6.0/Microsoft.Identity.Client.dll differ
diff --git a/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll b/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll
new file mode 100644
index 0000000..b8d36b1
Binary files /dev/null and b/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll differ
diff --git a/bin/Debug/net6.0/System.Data.SqlClient.dll b/bin/Debug/net6.0/System.Data.SqlClient.dll
new file mode 100644
index 0000000..5960000
Binary files /dev/null and b/bin/Debug/net6.0/System.Data.SqlClient.dll differ
diff --git a/bin/Debug/net6.0/jdis_import.deps.json b/bin/Debug/net6.0/jdis_import.deps.json
index bca7722..0ec5702 100644
--- a/bin/Debug/net6.0/jdis_import.deps.json
+++ b/bin/Debug/net6.0/jdis_import.deps.json
@@ -10,8 +10,11 @@
"dependencies": {
"Independentsoft.Exchange": "3.0.700",
"Microsoft.AspNet.WebApi.Client": "5.2.9",
+ "Microsoft.Exchange.WebServices": "2.2.0",
+ "Microsoft.Identity.Client": "4.49.1",
"Newtonsoft.Json": "13.0.1",
- "RestSharp": "108.0.2"
+ "RestSharp": "108.0.2",
+ "System.Data.SqlClient": "4.8.5"
},
"runtime": {
"jdis_import.dll": {}
@@ -37,18 +40,55 @@
}
}
},
- "Microsoft.NETCore.Platforms/1.1.0": {},
+ "Microsoft.Exchange.WebServices/2.2.0": {
+ "runtime": {
+ "lib/40/Microsoft.Exchange.WebServices.Auth.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.913.0"
+ },
+ "lib/40/Microsoft.Exchange.WebServices.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.913.15"
+ }
+ }
+ },
+ "Microsoft.Identity.Client/4.49.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "6.22.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.Identity.Client.dll": {
+ "assemblyVersion": "4.49.1.0",
+ "fileVersion": "4.49.1.0"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Abstractions/6.22.0": {
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "assemblyVersion": "6.22.0.0",
+ "fileVersion": "6.22.0.30727"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {},
"Microsoft.NETCore.Targets/1.1.0": {},
"Microsoft.Win32.Primitives/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
+ "Microsoft.Win32.Registry/4.7.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
"NETStandard.Library/1.6.1": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.Win32.Primitives": "4.3.0",
"System.AppContext": "4.3.0",
"System.Collections": "4.3.0",
@@ -127,19 +167,26 @@
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
"runtime.native.System/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0"
}
},
+ "runtime.native.System.Data.SqlClient.sni/4.7.0": {
+ "dependencies": {
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ }
+ },
"runtime.native.System.IO.Compression/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.Net.Http/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0"
}
},
@@ -170,6 +217,33 @@
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "runtimeTargets": {
+ "runtimes/win-arm64/native/sni.dll": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "runtimeTargets": {
+ "runtimes/win-x64/native/sni.dll": {
+ "rid": "win-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "runtimeTargets": {
+ "runtimes/win-x86/native/sni.dll": {
+ "rid": "win-x86",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
"System.AppContext/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
@@ -186,7 +260,7 @@
},
"System.Collections/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
@@ -207,16 +281,43 @@
},
"System.Console/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0"
}
},
+ "System.Data.SqlClient/4.8.5": {
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.7.0"
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/System.Data.SqlClient.dll": {
+ "assemblyVersion": "4.6.1.5",
+ "fileVersion": "4.700.22.51706"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
+ "rid": "unix",
+ "assetType": "runtime",
+ "assemblyVersion": "4.6.1.5",
+ "fileVersion": "4.700.22.51706"
+ },
+ "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
+ "rid": "win",
+ "assetType": "runtime",
+ "assemblyVersion": "4.6.1.5",
+ "fileVersion": "4.700.22.51706"
+ }
+ }
+ },
"System.Diagnostics.Debug/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
@@ -232,28 +333,28 @@
},
"System.Diagnostics.Tools/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Diagnostics.Tracing/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Globalization/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Globalization.Calendars/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Globalization": "4.3.0",
"System.Runtime": "4.3.0"
@@ -261,7 +362,7 @@
},
"System.Globalization.Extensions/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
@@ -271,7 +372,7 @@
},
"System.IO/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0",
@@ -280,7 +381,7 @@
},
"System.IO.Compression/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"System.Buffers": "4.3.0",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
@@ -312,7 +413,7 @@
},
"System.IO.FileSystem/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
@@ -359,7 +460,7 @@
},
"System.Net.Http/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.DiagnosticSource": "4.3.0",
@@ -389,7 +490,7 @@
},
"System.Net.Primitives/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
@@ -397,7 +498,7 @@
},
"System.Net.Sockets/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Net.Primitives": "4.3.0",
@@ -416,7 +517,7 @@
},
"System.Reflection/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
@@ -449,7 +550,7 @@
},
"System.Reflection.Extensions/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
@@ -457,7 +558,7 @@
},
"System.Reflection.Primitives/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
@@ -470,7 +571,7 @@
},
"System.Resources.ResourceManager/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Globalization": "4.3.0",
"System.Reflection": "4.3.0",
@@ -479,27 +580,27 @@
},
"System.Runtime/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"System.Runtime.Extensions/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Handles/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.InteropServices/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
@@ -526,9 +627,15 @@
"System.Runtime.Extensions": "4.3.0"
}
},
+ "System.Security.AccessControl/4.7.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
"System.Security.Cryptography.Algorithms/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"System.Collections": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
@@ -546,7 +653,7 @@
},
"System.Security.Cryptography.Cng/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
@@ -561,7 +668,7 @@
},
"System.Security.Cryptography.Csp/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
@@ -578,7 +685,7 @@
},
"System.Security.Cryptography.Encoding/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Linq": "4.3.0",
@@ -622,7 +729,7 @@
},
"System.Security.Cryptography.X509Certificates/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
@@ -649,16 +756,17 @@
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
}
},
+ "System.Security.Principal.Windows/4.7.0": {},
"System.Text.Encoding/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Text.Encoding.Extensions/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0"
@@ -677,7 +785,7 @@
},
"System.Threading.Tasks/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
@@ -691,7 +799,7 @@
},
"System.Threading.Timer/4.3.0": {
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Platforms": "3.1.0",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
@@ -753,12 +861,33 @@
"path": "microsoft.aspnet.webapi.client/5.2.9",
"hashPath": "microsoft.aspnet.webapi.client.5.2.9.nupkg.sha512"
},
- "Microsoft.NETCore.Platforms/1.1.0": {
+ "Microsoft.Exchange.WebServices/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NlkaTD0uWtg9VbiWq0VDWMBPzHFknH3tmstrxt0acrT09LBGqATTjRpsGOODz6tUdX7/dehBinxsf75U5Uw/+A==",
+ "path": "microsoft.exchange.webservices/2.2.0",
+ "hashPath": "microsoft.exchange.webservices.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Identity.Client/4.49.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vDU3cdXIom4+pxJk8sDJcHYTHPhb6DSVF9zjFY61SoQVs1OxbHZY9+mBnq1gGkG7N/o04WTt42IdV/0gf1+5DA==",
+ "path": "microsoft.identity.client/4.49.1",
+ "hashPath": "microsoft.identity.client.4.49.1.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Abstractions/6.22.0": {
"type": "package",
"serviceable": true,
- "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
- "path": "microsoft.netcore.platforms/1.1.0",
- "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
+ "sha512": "sha512-iI+9V+2ciCrbheeLjpmjcqCnhy+r6yCoEcid3nkoFWerHgjVuT6CPM4HODUTtUPe1uwks4wcnAujJ8u+IKogHQ==",
+ "path": "microsoft.identitymodel.abstractions/6.22.0",
+ "hashPath": "microsoft.identitymodel.abstractions.6.22.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
+ "path": "microsoft.netcore.platforms/3.1.0",
+ "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
},
"Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
@@ -774,6 +903,13 @@
"path": "microsoft.win32.primitives/4.3.0",
"hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
},
+ "Microsoft.Win32.Registry/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "path": "microsoft.win32.registry/4.7.0",
+ "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
+ },
"NETStandard.Library/1.6.1": {
"type": "package",
"serviceable": true,
@@ -830,6 +966,13 @@
"path": "runtime.native.system/4.3.0",
"hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
},
+ "runtime.native.System.Data.SqlClient.sni/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
+ "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
+ "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512"
+ },
"runtime.native.System.IO.Compression/4.3.0": {
"type": "package",
"serviceable": true,
@@ -914,6 +1057,27 @@
"path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
+ "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
+ "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
+ "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
"System.AppContext/4.3.0": {
"type": "package",
"serviceable": true,
@@ -949,6 +1113,13 @@
"path": "system.console/4.3.0",
"hashPath": "system.console.4.3.0.nupkg.sha512"
},
+ "System.Data.SqlClient/4.8.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fRqxut4lrndPHrXD+ht1XRmCL3obuKldm4XjCRYS9p5f7FSR7shBxAwTkDrpFMsHC9BhNgjjmUtiIjvehn5zkg==",
+ "path": "system.data.sqlclient/4.8.5",
+ "hashPath": "system.data.sqlclient.4.8.5.nupkg.sha512"
+ },
"System.Diagnostics.Debug/4.3.0": {
"type": "package",
"serviceable": true,
@@ -1173,6 +1344,13 @@
"path": "system.runtime.numerics/4.3.0",
"hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
},
+ "System.Security.AccessControl/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
+ "path": "system.security.accesscontrol/4.7.0",
+ "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
+ },
"System.Security.Cryptography.Algorithms/4.3.0": {
"type": "package",
"serviceable": true,
@@ -1222,6 +1400,13 @@
"path": "system.security.cryptography.x509certificates/4.3.0",
"hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
},
+ "System.Security.Principal.Windows/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
+ "path": "system.security.principal.windows/4.7.0",
+ "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
+ },
"System.Text.Encoding/4.3.0": {
"type": "package",
"serviceable": true,
diff --git a/bin/Debug/net6.0/jdis_import.dll b/bin/Debug/net6.0/jdis_import.dll
index 5fc2ab1..05e05d8 100644
Binary files a/bin/Debug/net6.0/jdis_import.dll and b/bin/Debug/net6.0/jdis_import.dll differ
diff --git a/bin/Debug/net6.0/jdis_import.pdb b/bin/Debug/net6.0/jdis_import.pdb
index 4892d92..92144d3 100644
Binary files a/bin/Debug/net6.0/jdis_import.pdb and b/bin/Debug/net6.0/jdis_import.pdb differ
diff --git a/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll b/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll
new file mode 100644
index 0000000..bd51de0
Binary files /dev/null and b/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll differ
diff --git a/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll b/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll
new file mode 100644
index 0000000..7b8f9d8
Binary files /dev/null and b/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll differ
diff --git a/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll b/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll
new file mode 100644
index 0000000..c1a05a5
Binary files /dev/null and b/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll differ
diff --git a/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll b/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll
new file mode 100644
index 0000000..5fc21ac
Binary files /dev/null and b/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll differ
diff --git a/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll b/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll
new file mode 100644
index 0000000..63fcfeb
Binary files /dev/null and b/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/._Independentsoft.Exchange.dll b/bin/release/net6.0/ubuntu.20.04-x64/._Independentsoft.Exchange.dll
new file mode 100644
index 0000000..90aefc5
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/._Independentsoft.Exchange.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/Independentsoft.Exchange.dll b/bin/release/net6.0/ubuntu.20.04-x64/Independentsoft.Exchange.dll
new file mode 100644
index 0000000..a5bdb47
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/Independentsoft.Exchange.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.CSharp.dll b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.CSharp.dll
new file mode 100644
index 0000000..40bbedd
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.CSharp.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Exchange.WebServices.Auth.dll b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Exchange.WebServices.Auth.dll
new file mode 100644
index 0000000..f6dfb6a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Exchange.WebServices.Auth.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Exchange.WebServices.dll b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Exchange.WebServices.dll
new file mode 100644
index 0000000..143291e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Exchange.WebServices.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Identity.Client.dll b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Identity.Client.dll
new file mode 100644
index 0000000..822c46e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Identity.Client.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.IdentityModel.Abstractions.dll b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.IdentityModel.Abstractions.dll
new file mode 100644
index 0000000..b8d36b1
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.IdentityModel.Abstractions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.VisualBasic.Core.dll b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.VisualBasic.Core.dll
new file mode 100644
index 0000000..89dd61d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.VisualBasic.Core.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.VisualBasic.dll b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.VisualBasic.dll
new file mode 100644
index 0000000..fae4589
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.VisualBasic.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Win32.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Win32.Primitives.dll
new file mode 100644
index 0000000..2f75eb4
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Win32.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Win32.Registry.dll b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Win32.Registry.dll
new file mode 100644
index 0000000..662641d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Win32.Registry.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/Newtonsoft.Json.Bson.dll b/bin/release/net6.0/ubuntu.20.04-x64/Newtonsoft.Json.Bson.dll
new file mode 100644
index 0000000..22d4c12
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/Newtonsoft.Json.Bson.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/Newtonsoft.Json.dll b/bin/release/net6.0/ubuntu.20.04-x64/Newtonsoft.Json.dll
new file mode 100644
index 0000000..1ffeabe
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/Newtonsoft.Json.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/RestSharp.dll b/bin/release/net6.0/ubuntu.20.04-x64/RestSharp.dll
new file mode 100644
index 0000000..e9220ac
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/RestSharp.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.AppContext.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.AppContext.dll
new file mode 100644
index 0000000..4b2a9c2
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.AppContext.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Buffers.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Buffers.dll
new file mode 100644
index 0000000..7763f79
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Buffers.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.Concurrent.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.Concurrent.dll
new file mode 100644
index 0000000..5fb52c7
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.Concurrent.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.Immutable.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.Immutable.dll
new file mode 100644
index 0000000..3ff7f4b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.Immutable.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.NonGeneric.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.NonGeneric.dll
new file mode 100644
index 0000000..dc40d84
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.NonGeneric.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.Specialized.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.Specialized.dll
new file mode 100644
index 0000000..dc2f83d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.Specialized.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.dll
new file mode 100644
index 0000000..494f91d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.Annotations.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.Annotations.dll
new file mode 100644
index 0000000..dc6f29e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.Annotations.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.DataAnnotations.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.DataAnnotations.dll
new file mode 100644
index 0000000..9511ee8
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.DataAnnotations.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.EventBasedAsync.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.EventBasedAsync.dll
new file mode 100644
index 0000000..1954226
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.EventBasedAsync.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.Primitives.dll
new file mode 100644
index 0000000..dce56b1
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.TypeConverter.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.TypeConverter.dll
new file mode 100644
index 0000000..82e0fda
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.TypeConverter.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.dll
new file mode 100644
index 0000000..b51948d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Configuration.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Configuration.dll
new file mode 100644
index 0000000..14babf6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Configuration.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Console.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Console.dll
new file mode 100644
index 0000000..3eeef4d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Console.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Core.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Core.dll
new file mode 100644
index 0000000..ba08e54
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Core.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Data.Common.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Data.Common.dll
new file mode 100644
index 0000000..1079dfb
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Data.Common.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Data.DataSetExtensions.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Data.DataSetExtensions.dll
new file mode 100644
index 0000000..ecea37a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Data.DataSetExtensions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Data.SqlClient.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Data.SqlClient.dll
new file mode 100644
index 0000000..bd51de0
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Data.SqlClient.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Data.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Data.dll
new file mode 100644
index 0000000..6cb3701
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Data.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Contracts.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Contracts.dll
new file mode 100644
index 0000000..7ee8aa0
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Contracts.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Debug.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Debug.dll
new file mode 100644
index 0000000..5a2a72a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Debug.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.DiagnosticSource.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.DiagnosticSource.dll
new file mode 100644
index 0000000..4e1884e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.DiagnosticSource.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.FileVersionInfo.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.FileVersionInfo.dll
new file mode 100644
index 0000000..3d6cf03
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.FileVersionInfo.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Process.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Process.dll
new file mode 100644
index 0000000..c536cfa
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Process.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.StackTrace.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.StackTrace.dll
new file mode 100644
index 0000000..73e72cc
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.StackTrace.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.TextWriterTraceListener.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.TextWriterTraceListener.dll
new file mode 100644
index 0000000..435e63c
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.TextWriterTraceListener.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Tools.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Tools.dll
new file mode 100644
index 0000000..5d46346
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Tools.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.TraceSource.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.TraceSource.dll
new file mode 100644
index 0000000..dbaa021
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.TraceSource.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Tracing.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Tracing.dll
new file mode 100644
index 0000000..42eec49
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Tracing.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Drawing.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Drawing.Primitives.dll
new file mode 100644
index 0000000..9a4c9cc
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Drawing.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Drawing.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Drawing.dll
new file mode 100644
index 0000000..837c10a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Drawing.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Dynamic.Runtime.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Dynamic.Runtime.dll
new file mode 100644
index 0000000..eb3b3aa
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Dynamic.Runtime.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Formats.Asn1.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Formats.Asn1.dll
new file mode 100644
index 0000000..6ab9840
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Formats.Asn1.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Globalization.Calendars.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Globalization.Calendars.dll
new file mode 100644
index 0000000..aa75566
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Globalization.Calendars.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Globalization.Extensions.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Globalization.Extensions.dll
new file mode 100644
index 0000000..1440c58
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Globalization.Extensions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Globalization.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Globalization.dll
new file mode 100644
index 0000000..b5b0046
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Globalization.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.Brotli.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.Brotli.dll
new file mode 100644
index 0000000..92e42b6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.Brotli.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.FileSystem.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.FileSystem.dll
new file mode 100644
index 0000000..dd500c3
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.FileSystem.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.ZipFile.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.ZipFile.dll
new file mode 100644
index 0000000..dddb3b3
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.ZipFile.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.dll
new file mode 100644
index 0000000..049cca2
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.AccessControl.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.AccessControl.dll
new file mode 100644
index 0000000..35fe0c4
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.AccessControl.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.DriveInfo.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.DriveInfo.dll
new file mode 100644
index 0000000..031f7ee
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.DriveInfo.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.Primitives.dll
new file mode 100644
index 0000000..720e239
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.Watcher.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.Watcher.dll
new file mode 100644
index 0000000..978ada9
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.Watcher.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.dll
new file mode 100644
index 0000000..132bbef
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.IO.IsolatedStorage.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.IsolatedStorage.dll
new file mode 100644
index 0000000..790d7ce
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.IsolatedStorage.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.IO.MemoryMappedFiles.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.MemoryMappedFiles.dll
new file mode 100644
index 0000000..132a23b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.MemoryMappedFiles.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Pipes.AccessControl.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Pipes.AccessControl.dll
new file mode 100644
index 0000000..1c38396
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Pipes.AccessControl.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Pipes.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Pipes.dll
new file mode 100644
index 0000000..ef512bb
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Pipes.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.IO.UnmanagedMemoryStream.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.UnmanagedMemoryStream.dll
new file mode 100644
index 0000000..6d00b8b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.UnmanagedMemoryStream.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.IO.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.dll
new file mode 100644
index 0000000..47deca8
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.IO.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.Expressions.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.Expressions.dll
new file mode 100644
index 0000000..b617903
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.Expressions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.Parallel.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.Parallel.dll
new file mode 100644
index 0000000..afed444
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.Parallel.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.Queryable.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.Queryable.dll
new file mode 100644
index 0000000..1829f91
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.Queryable.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.dll
new file mode 100644
index 0000000..5a86003
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Memory.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Memory.dll
new file mode 100644
index 0000000..eceab8e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Memory.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Http.Formatting.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Http.Formatting.dll
new file mode 100644
index 0000000..27cb2db
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Http.Formatting.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Http.Json.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Http.Json.dll
new file mode 100644
index 0000000..622ce59
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Http.Json.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Http.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Http.dll
new file mode 100644
index 0000000..69fb49b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Http.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.HttpListener.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.HttpListener.dll
new file mode 100644
index 0000000..49fa2f5
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.HttpListener.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Mail.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Mail.dll
new file mode 100644
index 0000000..86c3dbe
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Mail.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.NameResolution.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.NameResolution.dll
new file mode 100644
index 0000000..e10ce63
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.NameResolution.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.NetworkInformation.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.NetworkInformation.dll
new file mode 100644
index 0000000..321c3fe
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.NetworkInformation.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Ping.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Ping.dll
new file mode 100644
index 0000000..b7b4ce4
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Ping.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Primitives.dll
new file mode 100644
index 0000000..8257ff8
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Quic.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Quic.dll
new file mode 100644
index 0000000..62dd3de
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Quic.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Requests.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Requests.dll
new file mode 100644
index 0000000..d67d684
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Requests.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Security.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Security.dll
new file mode 100644
index 0000000..6d35acb
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Security.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.ServicePoint.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.ServicePoint.dll
new file mode 100644
index 0000000..ddb71f2
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.ServicePoint.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Sockets.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Sockets.dll
new file mode 100644
index 0000000..1ad43f6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Sockets.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebClient.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebClient.dll
new file mode 100644
index 0000000..9e0a46e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebClient.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebHeaderCollection.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebHeaderCollection.dll
new file mode 100644
index 0000000..06b4b40
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebHeaderCollection.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebProxy.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebProxy.dll
new file mode 100644
index 0000000..b26340c
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebProxy.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebSockets.Client.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebSockets.Client.dll
new file mode 100644
index 0000000..91f2473
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebSockets.Client.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebSockets.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebSockets.dll
new file mode 100644
index 0000000..d9de9cb
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebSockets.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Net.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.dll
new file mode 100644
index 0000000..094e0bb
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Net.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Numerics.Vectors.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Numerics.Vectors.dll
new file mode 100644
index 0000000..52b6ea2
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Numerics.Vectors.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Numerics.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Numerics.dll
new file mode 100644
index 0000000..0498896
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Numerics.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.ObjectModel.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.ObjectModel.dll
new file mode 100644
index 0000000..7d20c56
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.ObjectModel.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Private.CoreLib.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Private.CoreLib.dll
new file mode 100644
index 0000000..a283d36
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Private.CoreLib.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Private.DataContractSerialization.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Private.DataContractSerialization.dll
new file mode 100644
index 0000000..28492f0
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Private.DataContractSerialization.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Private.Uri.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Private.Uri.dll
new file mode 100644
index 0000000..c5570ab
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Private.Uri.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Private.Xml.Linq.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Private.Xml.Linq.dll
new file mode 100644
index 0000000..0578790
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Private.Xml.Linq.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Private.Xml.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Private.Xml.dll
new file mode 100644
index 0000000..bf5e06b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Private.Xml.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.DispatchProxy.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.DispatchProxy.dll
new file mode 100644
index 0000000..ad0d482
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.DispatchProxy.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Emit.ILGeneration.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Emit.ILGeneration.dll
new file mode 100644
index 0000000..9b4ed5e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Emit.ILGeneration.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Emit.Lightweight.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Emit.Lightweight.dll
new file mode 100644
index 0000000..db30e6b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Emit.Lightweight.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Emit.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Emit.dll
new file mode 100644
index 0000000..904614b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Emit.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Extensions.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Extensions.dll
new file mode 100644
index 0000000..80d1de7
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Extensions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Metadata.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Metadata.dll
new file mode 100644
index 0000000..4516f50
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Metadata.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Primitives.dll
new file mode 100644
index 0000000..51a6643
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.TypeExtensions.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.TypeExtensions.dll
new file mode 100644
index 0000000..588b5db
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.TypeExtensions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.dll
new file mode 100644
index 0000000..7e85ffa
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Resources.Reader.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Resources.Reader.dll
new file mode 100644
index 0000000..e1b2589
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Resources.Reader.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Resources.ResourceManager.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Resources.ResourceManager.dll
new file mode 100644
index 0000000..6c30ae1
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Resources.ResourceManager.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Resources.Writer.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Resources.Writer.dll
new file mode 100644
index 0000000..50a7d50
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Resources.Writer.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.CompilerServices.Unsafe.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..118ba04
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.CompilerServices.VisualC.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.CompilerServices.VisualC.dll
new file mode 100644
index 0000000..d1060f0
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.CompilerServices.VisualC.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Extensions.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Extensions.dll
new file mode 100644
index 0000000..d08e333
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Extensions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Handles.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Handles.dll
new file mode 100644
index 0000000..a9a7d40
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Handles.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.InteropServices.RuntimeInformation.dll
new file mode 100644
index 0000000..bfcdac6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.InteropServices.RuntimeInformation.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.InteropServices.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.InteropServices.dll
new file mode 100644
index 0000000..e6cc7cd
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.InteropServices.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Intrinsics.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Intrinsics.dll
new file mode 100644
index 0000000..86b2ed4
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Intrinsics.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Loader.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Loader.dll
new file mode 100644
index 0000000..d862364
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Loader.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Numerics.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Numerics.dll
new file mode 100644
index 0000000..f67323b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Numerics.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Formatters.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Formatters.dll
new file mode 100644
index 0000000..7d12078
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Formatters.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Json.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Json.dll
new file mode 100644
index 0000000..ca34aec
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Json.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Primitives.dll
new file mode 100644
index 0000000..adebcec
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Xml.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Xml.dll
new file mode 100644
index 0000000..4ca3e6e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Xml.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.dll
new file mode 100644
index 0000000..5ec1d60
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.dll
new file mode 100644
index 0000000..303c5d0
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Security.AccessControl.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.AccessControl.dll
new file mode 100644
index 0000000..9c1171c
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.AccessControl.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Claims.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Claims.dll
new file mode 100644
index 0000000..96739b7
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Claims.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Algorithms.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Algorithms.dll
new file mode 100644
index 0000000..7c52d69
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Algorithms.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Cng.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Cng.dll
new file mode 100644
index 0000000..40f3dc3
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Cng.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Csp.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Csp.dll
new file mode 100644
index 0000000..375e64d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Csp.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Encoding.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Encoding.dll
new file mode 100644
index 0000000..3d84362
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Encoding.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.OpenSsl.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.OpenSsl.dll
new file mode 100644
index 0000000..bd8cdfc
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.OpenSsl.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Primitives.dll
new file mode 100644
index 0000000..56bbbc2
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.X509Certificates.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.X509Certificates.dll
new file mode 100644
index 0000000..ca0de65
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.X509Certificates.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Principal.Windows.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Principal.Windows.dll
new file mode 100644
index 0000000..6fb47b6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Principal.Windows.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Principal.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Principal.dll
new file mode 100644
index 0000000..98c75e3
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Principal.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Security.SecureString.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.SecureString.dll
new file mode 100644
index 0000000..1824acf
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.SecureString.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Security.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.dll
new file mode 100644
index 0000000..206eda6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Security.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.ServiceModel.Web.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.ServiceModel.Web.dll
new file mode 100644
index 0000000..7c35f95
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.ServiceModel.Web.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.ServiceProcess.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.ServiceProcess.dll
new file mode 100644
index 0000000..38cff5a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.ServiceProcess.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encoding.CodePages.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encoding.CodePages.dll
new file mode 100644
index 0000000..7fc1f08
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encoding.CodePages.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encoding.Extensions.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encoding.Extensions.dll
new file mode 100644
index 0000000..42ce87d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encoding.Extensions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encoding.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encoding.dll
new file mode 100644
index 0000000..066a88d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encoding.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encodings.Web.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encodings.Web.dll
new file mode 100644
index 0000000..0a05a51
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encodings.Web.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Json.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Json.dll
new file mode 100644
index 0000000..6fe5de8
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Json.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Text.RegularExpressions.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Text.RegularExpressions.dll
new file mode 100644
index 0000000..9d8a99e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Text.RegularExpressions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Channels.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Channels.dll
new file mode 100644
index 0000000..5fc9c95
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Channels.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Overlapped.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Overlapped.dll
new file mode 100644
index 0000000..39ce01d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Overlapped.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.Dataflow.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.Dataflow.dll
new file mode 100644
index 0000000..a924437
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.Dataflow.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.Extensions.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.Extensions.dll
new file mode 100644
index 0000000..7551d85
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.Extensions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.Parallel.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.Parallel.dll
new file mode 100644
index 0000000..81df15a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.Parallel.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.dll
new file mode 100644
index 0000000..f8ff654
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Thread.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Thread.dll
new file mode 100644
index 0000000..067c76e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Thread.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.ThreadPool.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.ThreadPool.dll
new file mode 100644
index 0000000..c101d97
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.ThreadPool.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Timer.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Timer.dll
new file mode 100644
index 0000000..648d9d0
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Timer.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.dll
new file mode 100644
index 0000000..1991415
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Transactions.Local.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Transactions.Local.dll
new file mode 100644
index 0000000..61005d9
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Transactions.Local.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Transactions.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Transactions.dll
new file mode 100644
index 0000000..83c3549
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Transactions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.ValueTuple.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.ValueTuple.dll
new file mode 100644
index 0000000..1cf559c
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.ValueTuple.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Web.HttpUtility.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Web.HttpUtility.dll
new file mode 100644
index 0000000..fa9b555
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Web.HttpUtility.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Web.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Web.dll
new file mode 100644
index 0000000..92eaaa9
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Web.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Windows.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Windows.dll
new file mode 100644
index 0000000..c1e3783
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Windows.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.Linq.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.Linq.dll
new file mode 100644
index 0000000..ac3cd22
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.Linq.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.ReaderWriter.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.ReaderWriter.dll
new file mode 100644
index 0000000..dab7ff6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.ReaderWriter.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.Serialization.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.Serialization.dll
new file mode 100644
index 0000000..d76189e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.Serialization.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XDocument.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XDocument.dll
new file mode 100644
index 0000000..a66738a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XDocument.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XPath.XDocument.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XPath.XDocument.dll
new file mode 100644
index 0000000..054d1f9
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XPath.XDocument.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XPath.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XPath.dll
new file mode 100644
index 0000000..da2aca6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XPath.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XmlDocument.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XmlDocument.dll
new file mode 100644
index 0000000..ccd058d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XmlDocument.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XmlSerializer.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XmlSerializer.dll
new file mode 100644
index 0000000..20ca999
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XmlSerializer.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.dll
new file mode 100644
index 0000000..d20e6f0
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/System.dll b/bin/release/net6.0/ubuntu.20.04-x64/System.dll
new file mode 100644
index 0000000..82fdec5
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/System.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/WindowsBase.dll b/bin/release/net6.0/ubuntu.20.04-x64/WindowsBase.dll
new file mode 100644
index 0000000..4907d59
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/WindowsBase.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/createdump b/bin/release/net6.0/ubuntu.20.04-x64/createdump
new file mode 100644
index 0000000..67f6c96
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/createdump differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/jdis_import b/bin/release/net6.0/ubuntu.20.04-x64/jdis_import
new file mode 100644
index 0000000..b28be78
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/jdis_import differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.deps.json b/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.deps.json
new file mode 100644
index 0000000..f437fc6
--- /dev/null
+++ b/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.deps.json
@@ -0,0 +1,2538 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v6.0/ubuntu.20.04-x64",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v6.0": {},
+ ".NETCoreApp,Version=v6.0/ubuntu.20.04-x64": {
+ "jdis_import/1.0.0": {
+ "dependencies": {
+ "Independentsoft.Exchange": "3.0.700",
+ "Microsoft.AspNet.WebApi.Client": "5.2.9",
+ "Microsoft.Exchange.WebServices": "2.2.0",
+ "Microsoft.Identity.Client": "4.49.1",
+ "Newtonsoft.Json": "13.0.1",
+ "RestSharp": "108.0.2",
+ "System.Data.SqlClient": "4.8.5",
+ "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64": "6.0.4"
+ },
+ "runtime": {
+ "jdis_import.dll": {}
+ }
+ },
+ "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/6.0.4": {
+ "runtime": {
+ "Microsoft.CSharp.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "Microsoft.VisualBasic.Core.dll": {
+ "assemblyVersion": "11.0.0.0",
+ "fileVersion": "11.100.422.16404"
+ },
+ "Microsoft.VisualBasic.dll": {
+ "assemblyVersion": "10.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "Microsoft.Win32.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "Microsoft.Win32.Registry.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.AppContext.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Buffers.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Collections.Concurrent.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Collections.Immutable.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Collections.NonGeneric.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Collections.Specialized.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Collections.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ComponentModel.Annotations.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ComponentModel.DataAnnotations.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ComponentModel.EventBasedAsync.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ComponentModel.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ComponentModel.TypeConverter.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ComponentModel.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Configuration.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Console.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Core.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Data.Common.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Data.DataSetExtensions.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Data.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.Contracts.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.Debug.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.DiagnosticSource.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.FileVersionInfo.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.Process.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.StackTrace.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.TextWriterTraceListener.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.Tools.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.TraceSource.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.Tracing.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Drawing.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Drawing.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Dynamic.Runtime.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Formats.Asn1.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Globalization.Calendars.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Globalization.Extensions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Globalization.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.Compression.Brotli.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.Compression.FileSystem.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.Compression.ZipFile.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.Compression.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.FileSystem.AccessControl.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.FileSystem.DriveInfo.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.FileSystem.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.FileSystem.Watcher.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.FileSystem.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.IsolatedStorage.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.MemoryMappedFiles.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.Pipes.AccessControl.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.Pipes.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.UnmanagedMemoryStream.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Linq.Expressions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Linq.Parallel.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Linq.Queryable.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Linq.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Memory.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Http.Json.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Http.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.HttpListener.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Mail.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.NameResolution.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.NetworkInformation.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Ping.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Quic.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Requests.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Security.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.ServicePoint.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Sockets.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.WebClient.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.WebHeaderCollection.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.WebProxy.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.WebSockets.Client.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.WebSockets.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Numerics.Vectors.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Numerics.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ObjectModel.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Private.CoreLib.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Private.DataContractSerialization.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Private.Uri.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Private.Xml.Linq.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Private.Xml.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.DispatchProxy.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.Emit.ILGeneration.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.Emit.Lightweight.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.Emit.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.Extensions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.Metadata.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.TypeExtensions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Resources.Reader.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Resources.ResourceManager.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Resources.Writer.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.CompilerServices.Unsafe.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.CompilerServices.VisualC.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Extensions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Handles.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.InteropServices.RuntimeInformation.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.InteropServices.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Intrinsics.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Loader.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Numerics.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Serialization.Formatters.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Serialization.Json.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Serialization.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Serialization.Xml.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Serialization.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.AccessControl.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Claims.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Cryptography.Algorithms.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Cryptography.Cng.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Cryptography.Csp.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Cryptography.Encoding.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Cryptography.OpenSsl.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Cryptography.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Cryptography.X509Certificates.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Principal.Windows.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Principal.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.SecureString.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ServiceModel.Web.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ServiceProcess.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Text.Encoding.CodePages.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Text.Encoding.Extensions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Text.Encoding.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Text.Encodings.Web.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Text.Json.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Text.RegularExpressions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Channels.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Overlapped.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Tasks.Dataflow.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Tasks.Extensions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Tasks.Parallel.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Tasks.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Thread.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.ThreadPool.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Timer.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Transactions.Local.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Transactions.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ValueTuple.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Web.HttpUtility.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Web.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Windows.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.Linq.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.ReaderWriter.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.Serialization.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.XDocument.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.XPath.XDocument.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.XPath.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.XmlDocument.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.XmlSerializer.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "WindowsBase.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "mscorlib.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "netstandard.dll": {
+ "assemblyVersion": "2.1.0.0",
+ "fileVersion": "6.0.422.16404"
+ }
+ },
+ "native": {
+ "createdump": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libSystem.Globalization.Native.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libSystem.IO.Compression.Native.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libSystem.Native.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libSystem.Net.Security.Native.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libSystem.Security.Cryptography.Native.OpenSsl.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libclrjit.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libcoreclr.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libcoreclrtraceptprovider.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libdbgshim.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libhostfxr.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libhostpolicy.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libmscordaccore.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libmscordbi.so": {
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "Independentsoft.Exchange/3.0.700": {
+ "runtime": {
+ "Lib/netcoreapp2.0/Independentsoft.Exchange.dll": {
+ "assemblyVersion": "3.0.700.1",
+ "fileVersion": "3.0.700.1"
+ }
+ }
+ },
+ "Microsoft.AspNet.WebApi.Client/5.2.9": {
+ "dependencies": {
+ "Newtonsoft.Json": "13.0.1",
+ "Newtonsoft.Json.Bson": "1.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Net.Http.Formatting.dll": {
+ "assemblyVersion": "5.2.9.0",
+ "fileVersion": "5.2.61129.10"
+ }
+ }
+ },
+ "Microsoft.Exchange.WebServices/2.2.0": {
+ "runtime": {
+ "lib/40/Microsoft.Exchange.WebServices.Auth.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.913.0"
+ },
+ "lib/40/Microsoft.Exchange.WebServices.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.913.15"
+ }
+ }
+ },
+ "Microsoft.Identity.Client/4.49.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "6.22.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.Identity.Client.dll": {
+ "assemblyVersion": "4.49.1.0",
+ "fileVersion": "4.49.1.0"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Abstractions/6.22.0": {
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "assemblyVersion": "6.22.0.0",
+ "fileVersion": "6.22.0.30727"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.unix.Microsoft.Win32.Primitives": "4.3.0"
+ }
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "NETStandard.Library/1.6.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.Compression.ZipFile": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
+ }
+ },
+ "Newtonsoft.Json/13.0.1": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "13.0.0.0",
+ "fileVersion": "13.0.1.25517"
+ }
+ }
+ },
+ "Newtonsoft.Json.Bson/1.0.1": {
+ "dependencies": {
+ "NETStandard.Library": "1.6.1",
+ "Newtonsoft.Json": "13.0.1"
+ },
+ "runtime": {
+ "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.1.20722"
+ }
+ }
+ },
+ "RestSharp/108.0.2": {
+ "runtime": {
+ "lib/net6.0/RestSharp.dll": {
+ "assemblyVersion": "108.0.2.0",
+ "fileVersion": "108.0.2.0"
+ }
+ }
+ },
+ "runtime.any.System.Collections/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "runtime.any.System.Diagnostics.Tools/4.3.0": {},
+ "runtime.any.System.Diagnostics.Tracing/4.3.0": {},
+ "runtime.any.System.Globalization/4.3.0": {},
+ "runtime.any.System.Globalization.Calendars/4.3.0": {},
+ "runtime.any.System.IO/4.3.0": {},
+ "runtime.any.System.Reflection/4.3.0": {},
+ "runtime.any.System.Reflection.Extensions/4.3.0": {},
+ "runtime.any.System.Reflection.Primitives/4.3.0": {},
+ "runtime.any.System.Resources.ResourceManager/4.3.0": {},
+ "runtime.any.System.Runtime/4.3.0": {
+ "dependencies": {
+ "System.Private.Uri": "4.3.0"
+ }
+ },
+ "runtime.any.System.Runtime.Handles/4.3.0": {},
+ "runtime.any.System.Runtime.InteropServices/4.3.0": {},
+ "runtime.any.System.Text.Encoding/4.3.0": {},
+ "runtime.any.System.Text.Encoding.Extensions/4.3.0": {},
+ "runtime.any.System.Threading.Tasks/4.3.0": {},
+ "runtime.any.System.Threading.Timer/4.3.0": {},
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.native.System/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Data.SqlClient.sni/4.7.0": {
+ "dependencies": {
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ }
+ },
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Net.Http/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "dependencies": {
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
+ }
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "dependencies": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.unix.Microsoft.Win32.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "runtime.unix.System.Console/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "runtime.unix.System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "runtime.unix.System.IO.FileSystem/4.3.0": {
+ "dependencies": {
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "runtime.unix.System.Net.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "runtime.unix.System.Net.Sockets/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.NameResolution": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "runtime.unix.System.Private.Uri/4.3.0": {
+ "dependencies": {
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "runtime.unix.System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "System.Private.Uri": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {},
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {},
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {},
+ "System.AppContext/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Buffers/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Collections": "4.3.0"
+ }
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Console/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.unix.System.Console": "4.3.0"
+ }
+ },
+ "System.Data.SqlClient/4.8.5": {
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.7.0"
+ },
+ "runtime": {
+ "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
+ "assemblyVersion": "4.6.1.5",
+ "fileVersion": "4.700.22.51706"
+ }
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.unix.System.Diagnostics.Debug": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Diagnostics.Tools": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Diagnostics.Tracing": "4.3.0"
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Globalization": "4.3.0"
+ }
+ },
+ "System.Globalization.Calendars/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Globalization.Calendars": "4.3.0"
+ }
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.any.System.IO": "4.3.0"
+ }
+ },
+ "System.IO.Compression/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
+ }
+ },
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "dependencies": {
+ "System.Buffers": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.unix.System.IO.FileSystem": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Linq/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Net.Http/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Net.NameResolution/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Principal.Windows": "4.7.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "System.Net.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "runtime.unix.System.Net.Primitives": "4.3.0"
+ }
+ },
+ "System.Net.Sockets/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.unix.System.Net.Sockets": "4.3.0"
+ }
+ },
+ "System.ObjectModel/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Private.Uri/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.unix.System.Private.Uri": "4.3.0"
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection.Extensions": "4.3.0"
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection.Primitives": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Resources.ResourceManager": "4.3.0"
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.any.System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.unix.System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "runtime.any.System.Runtime.InteropServices": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "System.Runtime.Numerics/4.3.0": {
+ "dependencies": {
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Security.AccessControl/4.7.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Principal.Windows/4.7.0": {},
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.any.System.Text.Encoding.Extensions": "4.3.0"
+ }
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.ThreadPool/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Threading.Timer/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Threading.Timer": "4.3.0"
+ }
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
+ }
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ }
+ }
+ }
+ },
+ "libraries": {
+ "jdis_import/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/6.0.4": {
+ "type": "runtimepack",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Independentsoft.Exchange/3.0.700": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Ry32CWQMX4aS+k083pA7JeJwqxjCZ74aSRXHbF0jlGm1WgsWcf7AQ6X2KjYnQBk3Rm0gv1qxg7kvZYVGORiiGw==",
+ "path": "independentsoft.exchange/3.0.700",
+ "hashPath": "independentsoft.exchange.3.0.700.nupkg.sha512"
+ },
+ "Microsoft.AspNet.WebApi.Client/5.2.9": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cuVhPjjNMSEFpKXweMNBbsG4RUFuuZpFBm8tSyw309U9JEjcnbB6n3EPb4xwgcy9bJ38ctIbv5G8zXUBhlrPWw==",
+ "path": "microsoft.aspnet.webapi.client/5.2.9",
+ "hashPath": "microsoft.aspnet.webapi.client.5.2.9.nupkg.sha512"
+ },
+ "Microsoft.Exchange.WebServices/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NlkaTD0uWtg9VbiWq0VDWMBPzHFknH3tmstrxt0acrT09LBGqATTjRpsGOODz6tUdX7/dehBinxsf75U5Uw/+A==",
+ "path": "microsoft.exchange.webservices/2.2.0",
+ "hashPath": "microsoft.exchange.webservices.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Identity.Client/4.49.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vDU3cdXIom4+pxJk8sDJcHYTHPhb6DSVF9zjFY61SoQVs1OxbHZY9+mBnq1gGkG7N/o04WTt42IdV/0gf1+5DA==",
+ "path": "microsoft.identity.client/4.49.1",
+ "hashPath": "microsoft.identity.client.4.49.1.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Abstractions/6.22.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iI+9V+2ciCrbheeLjpmjcqCnhy+r6yCoEcid3nkoFWerHgjVuT6CPM4HODUTtUPe1uwks4wcnAujJ8u+IKogHQ==",
+ "path": "microsoft.identitymodel.abstractions/6.22.0",
+ "hashPath": "microsoft.identitymodel.abstractions.6.22.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
+ "path": "microsoft.netcore.platforms/3.1.0",
+ "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
+ "path": "microsoft.win32.primitives/4.3.0",
+ "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "path": "microsoft.win32.registry/4.7.0",
+ "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
+ },
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
+ "path": "netstandard.library/1.6.1",
+ "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
+ },
+ "Newtonsoft.Json/13.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
+ "path": "newtonsoft.json/13.0.1",
+ "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
+ },
+ "Newtonsoft.Json.Bson/1.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
+ "path": "newtonsoft.json.bson/1.0.1",
+ "hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512"
+ },
+ "RestSharp/108.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zI1lzI+Jjzl6bcicyUYfLIGmmOAdJRkYepMnSPzrxd1o9RxztPaR/blUOmY8BpXdN3I+XlK9dtwCYRGCxvaODw==",
+ "path": "restsharp/108.0.2",
+ "hashPath": "restsharp.108.0.2.nupkg.sha512"
+ },
+ "runtime.any.System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
+ "path": "runtime.any.system.collections/4.3.0",
+ "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Diagnostics.Tools/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg==",
+ "path": "runtime.any.system.diagnostics.tools/4.3.0",
+ "hashPath": "runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Diagnostics.Tracing/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==",
+ "path": "runtime.any.system.diagnostics.tracing/4.3.0",
+ "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==",
+ "path": "runtime.any.system.globalization/4.3.0",
+ "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Globalization.Calendars/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==",
+ "path": "runtime.any.system.globalization.calendars/4.3.0",
+ "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==",
+ "path": "runtime.any.system.io/4.3.0",
+ "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==",
+ "path": "runtime.any.system.reflection/4.3.0",
+ "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==",
+ "path": "runtime.any.system.reflection.extensions/4.3.0",
+ "hashPath": "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==",
+ "path": "runtime.any.system.reflection.primitives/4.3.0",
+ "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==",
+ "path": "runtime.any.system.resources.resourcemanager/4.3.0",
+ "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
+ "path": "runtime.any.system.runtime/4.3.0",
+ "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==",
+ "path": "runtime.any.system.runtime.handles/4.3.0",
+ "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==",
+ "path": "runtime.any.system.runtime.interopservices/4.3.0",
+ "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==",
+ "path": "runtime.any.system.text.encoding/4.3.0",
+ "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Text.Encoding.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==",
+ "path": "runtime.any.system.text.encoding.extensions/4.3.0",
+ "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==",
+ "path": "runtime.any.system.threading.tasks/4.3.0",
+ "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Threading.Timer/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w==",
+ "path": "runtime.any.system.threading.timer/4.3.0",
+ "hashPath": "runtime.any.system.threading.timer.4.3.0.nupkg.sha512"
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
+ "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
+ "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
+ "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "path": "runtime.native.system/4.3.0",
+ "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Data.SqlClient.sni/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
+ "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
+ "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512"
+ },
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
+ "path": "runtime.native.system.io.compression/4.3.0",
+ "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Net.Http/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
+ "path": "runtime.native.system.net.http/4.3.0",
+ "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "path": "runtime.native.system.security.cryptography.apple/4.3.0",
+ "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
+ "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
+ "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
+ "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.Microsoft.Win32.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2mI2Mfq+CVatgr4RWGvAWBjoCfUafy6VNFU7G9OA52DjO8x/okfIbsEq2UPgeGfdpO7X5gmPXKT8slx0tn0Mhw==",
+ "path": "runtime.unix.microsoft.win32.primitives/4.3.0",
+ "hashPath": "runtime.unix.microsoft.win32.primitives.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.System.Console/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JSEiU9EvE2vJTHUuHnSg9le8XDbvZmjZ/3PhLviICzY1TTDE7c/uNYVtE9qTA9PAOZsqccy5lxvfaZOeBhT3tA==",
+ "path": "runtime.unix.system.console/4.3.0",
+ "hashPath": "runtime.unix.system.console.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WV8KLRHWVUVUDduFnvGMHt0FsEt2wK6xPl1EgDKlaMx2KnZ43A/O0GzP8wIuvAC7mq4T9V1mm90r+PXkL9FPdQ==",
+ "path": "runtime.unix.system.diagnostics.debug/4.3.0",
+ "hashPath": "runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.System.IO.FileSystem/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ajmTcjrqc3vgV1TH54DRioshbEniaFbOAJ0kReGuNsp9uIcqYle0RmUo6+Qlwqe3JIs4TDxgnqs3UzX3gRJ1rA==",
+ "path": "runtime.unix.system.io.filesystem/4.3.0",
+ "hashPath": "runtime.unix.system.io.filesystem.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.System.Net.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AZcRXhH7Gamr+bckUfX3iHefPIrujJTt9XWQWo0elNiP1SNasX0KBWINZkDKY0GsOrsyJ7cB4MgIRTZzLlsTKg==",
+ "path": "runtime.unix.system.net.primitives/4.3.0",
+ "hashPath": "runtime.unix.system.net.primitives.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.System.Net.Sockets/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4NcLbqajFaD3PvhOdmbieeBlKY4d8/kBfgJ5g28n6k1jWEICabvLM62gvmUS/CvyfvcZxVanKPl+E9LhPzfXZw==",
+ "path": "runtime.unix.system.net.sockets/4.3.0",
+ "hashPath": "runtime.unix.system.net.sockets.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.System.Private.Uri/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ooWzobr5RAq34r9uan1r/WPXJYG1XWy9KanrxNvEnBzbFdQbMG7Y3bVi4QxR7xZMNLOxLLTAyXvnSkfj5boZSg==",
+ "path": "runtime.unix.system.private.uri/4.3.0",
+ "hashPath": "runtime.unix.system.private.uri.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zQiTBVpiLftTQZW8GFsV0gjYikB1WMkEPIxF5O6RkUrSV/OgvRRTYgeFQha/0keBpuS0HYweraGRwhfhJ7dj7w==",
+ "path": "runtime.unix.system.runtime.extensions/4.3.0",
+ "hashPath": "runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
+ "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
+ "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
+ "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "System.AppContext/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
+ "path": "system.appcontext/4.3.0",
+ "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
+ },
+ "System.Buffers/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
+ "path": "system.buffers/4.3.0",
+ "hashPath": "system.buffers.4.3.0.nupkg.sha512"
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "path": "system.collections/4.3.0",
+ "hashPath": "system.collections.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
+ "path": "system.collections.concurrent/4.3.0",
+ "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
+ },
+ "System.Console/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
+ "path": "system.console/4.3.0",
+ "hashPath": "system.console.4.3.0.nupkg.sha512"
+ },
+ "System.Data.SqlClient/4.8.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fRqxut4lrndPHrXD+ht1XRmCL3obuKldm4XjCRYS9p5f7FSR7shBxAwTkDrpFMsHC9BhNgjjmUtiIjvehn5zkg==",
+ "path": "system.data.sqlclient/4.8.5",
+ "hashPath": "system.data.sqlclient.4.8.5.nupkg.sha512"
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "path": "system.diagnostics.debug/4.3.0",
+ "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
+ "path": "system.diagnostics.diagnosticsource/4.3.0",
+ "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
+ "path": "system.diagnostics.tools/4.3.0",
+ "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
+ "path": "system.diagnostics.tracing/4.3.0",
+ "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "path": "system.globalization/4.3.0",
+ "hashPath": "system.globalization.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization.Calendars/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
+ "path": "system.globalization.calendars/4.3.0",
+ "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
+ "path": "system.globalization.extensions/4.3.0",
+ "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "path": "system.io/4.3.0",
+ "hashPath": "system.io.4.3.0.nupkg.sha512"
+ },
+ "System.IO.Compression/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
+ "path": "system.io.compression/4.3.0",
+ "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
+ },
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
+ "path": "system.io.compression.zipfile/4.3.0",
+ "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
+ "path": "system.io.filesystem/4.3.0",
+ "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
+ "path": "system.io.filesystem.primitives/4.3.0",
+ "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "path": "system.linq/4.3.0",
+ "hashPath": "system.linq.4.3.0.nupkg.sha512"
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "path": "system.linq.expressions/4.3.0",
+ "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
+ },
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
+ "path": "system.net.http/4.3.0",
+ "hashPath": "system.net.http.4.3.0.nupkg.sha512"
+ },
+ "System.Net.NameResolution/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
+ "path": "system.net.nameresolution/4.3.0",
+ "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
+ },
+ "System.Net.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
+ "path": "system.net.primitives/4.3.0",
+ "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Net.Sockets/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
+ "path": "system.net.sockets/4.3.0",
+ "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "path": "system.objectmodel/4.3.0",
+ "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
+ },
+ "System.Private.Uri/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
+ "path": "system.private.uri/4.3.0",
+ "hashPath": "system.private.uri.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "path": "system.reflection/4.3.0",
+ "hashPath": "system.reflection.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "path": "system.reflection.emit/4.3.0",
+ "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "path": "system.reflection.extensions/4.3.0",
+ "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "path": "system.reflection.primitives/4.3.0",
+ "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "path": "system.runtime/4.3.0",
+ "hashPath": "system.runtime.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "path": "system.runtime.extensions/4.3.0",
+ "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "path": "system.runtime.handles/4.3.0",
+ "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "path": "system.runtime.interopservices/4.3.0",
+ "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
+ "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
+ "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Numerics/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
+ "path": "system.runtime.numerics/4.3.0",
+ "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
+ },
+ "System.Security.AccessControl/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
+ "path": "system.security.accesscontrol/4.7.0",
+ "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
+ "path": "system.security.cryptography.algorithms/4.3.0",
+ "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
+ "path": "system.security.cryptography.cng/4.3.0",
+ "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
+ "path": "system.security.cryptography.csp/4.3.0",
+ "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
+ "path": "system.security.cryptography.encoding/4.3.0",
+ "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
+ "path": "system.security.cryptography.openssl/4.3.0",
+ "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
+ "path": "system.security.cryptography.primitives/4.3.0",
+ "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
+ "path": "system.security.cryptography.x509certificates/4.3.0",
+ "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
+ "path": "system.security.principal.windows/4.7.0",
+ "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "path": "system.text.encoding/4.3.0",
+ "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
+ "path": "system.text.encoding.extensions/4.3.0",
+ "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
+ "path": "system.text.regularexpressions/4.3.0",
+ "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "path": "system.threading/4.3.0",
+ "hashPath": "system.threading.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "path": "system.threading.tasks/4.3.0",
+ "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
+ "path": "system.threading.tasks.extensions/4.3.0",
+ "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.ThreadPool/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
+ "path": "system.threading.threadpool/4.3.0",
+ "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Timer/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
+ "path": "system.threading.timer/4.3.0",
+ "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
+ "path": "system.xml.readerwriter/4.3.0",
+ "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
+ "path": "system.xml.xdocument/4.3.0",
+ "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
+ }
+ },
+ "runtimes": {
+ "ubuntu.20.04-x64": [
+ "ubuntu.20.04",
+ "ubuntu-x64",
+ "ubuntu",
+ "debian-x64",
+ "debian",
+ "linux-x64",
+ "linux",
+ "unix-x64",
+ "unix",
+ "any",
+ "base"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.dll b/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.dll
new file mode 100644
index 0000000..2c31171
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.pdb b/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.pdb
new file mode 100644
index 0000000..e8f0732
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.pdb differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.runtimeconfig.json b/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.runtimeconfig.json
new file mode 100644
index 0000000..cafd731
--- /dev/null
+++ b/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.runtimeconfig.json
@@ -0,0 +1,14 @@
+{
+ "runtimeOptions": {
+ "tfm": "net6.0",
+ "includedFrameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "6.0.4"
+ }
+ ],
+ "configProperties": {
+ "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Globalization.Native.so b/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Globalization.Native.so
new file mode 100644
index 0000000..a4ed7cd
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Globalization.Native.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/libSystem.IO.Compression.Native.so b/bin/release/net6.0/ubuntu.20.04-x64/libSystem.IO.Compression.Native.so
new file mode 100644
index 0000000..23c3790
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/libSystem.IO.Compression.Native.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Native.so b/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Native.so
new file mode 100644
index 0000000..2f36237
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Native.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Net.Security.Native.so b/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Net.Security.Native.so
new file mode 100644
index 0000000..5c7cae7
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Net.Security.Native.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Security.Cryptography.Native.OpenSsl.so b/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Security.Cryptography.Native.OpenSsl.so
new file mode 100644
index 0000000..cd7045e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Security.Cryptography.Native.OpenSsl.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/libclrjit.so b/bin/release/net6.0/ubuntu.20.04-x64/libclrjit.so
new file mode 100644
index 0000000..2743ec2
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/libclrjit.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/libcoreclr.so b/bin/release/net6.0/ubuntu.20.04-x64/libcoreclr.so
new file mode 100644
index 0000000..4bf2ad6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/libcoreclr.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/libcoreclrtraceptprovider.so b/bin/release/net6.0/ubuntu.20.04-x64/libcoreclrtraceptprovider.so
new file mode 100644
index 0000000..2966568
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/libcoreclrtraceptprovider.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/libdbgshim.so b/bin/release/net6.0/ubuntu.20.04-x64/libdbgshim.so
new file mode 100644
index 0000000..bc2c3d1
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/libdbgshim.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/libhostfxr.so b/bin/release/net6.0/ubuntu.20.04-x64/libhostfxr.so
new file mode 100644
index 0000000..5052309
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/libhostfxr.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/libhostpolicy.so b/bin/release/net6.0/ubuntu.20.04-x64/libhostpolicy.so
new file mode 100644
index 0000000..5c6152c
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/libhostpolicy.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/libmscordaccore.so b/bin/release/net6.0/ubuntu.20.04-x64/libmscordaccore.so
new file mode 100644
index 0000000..11485e6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/libmscordaccore.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/libmscordbi.so b/bin/release/net6.0/ubuntu.20.04-x64/libmscordbi.so
new file mode 100644
index 0000000..484f9e6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/libmscordbi.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/mscorlib.dll b/bin/release/net6.0/ubuntu.20.04-x64/mscorlib.dll
new file mode 100644
index 0000000..393e60a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/mscorlib.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/netstandard.dll b/bin/release/net6.0/ubuntu.20.04-x64/netstandard.dll
new file mode 100644
index 0000000..a0a7e1e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/netstandard.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/Independentsoft.Exchange.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/Independentsoft.Exchange.dll
new file mode 100644
index 0000000..a5bdb47
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/Independentsoft.Exchange.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.CSharp.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.CSharp.dll
new file mode 100644
index 0000000..40bbedd
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.CSharp.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Exchange.WebServices.Auth.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Exchange.WebServices.Auth.dll
new file mode 100644
index 0000000..f6dfb6a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Exchange.WebServices.Auth.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Exchange.WebServices.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Exchange.WebServices.dll
new file mode 100644
index 0000000..143291e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Exchange.WebServices.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Identity.Client.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Identity.Client.dll
new file mode 100644
index 0000000..822c46e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Identity.Client.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.IdentityModel.Abstractions.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.IdentityModel.Abstractions.dll
new file mode 100644
index 0000000..b8d36b1
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.IdentityModel.Abstractions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.VisualBasic.Core.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.VisualBasic.Core.dll
new file mode 100644
index 0000000..89dd61d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.VisualBasic.Core.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.VisualBasic.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.VisualBasic.dll
new file mode 100644
index 0000000..fae4589
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.VisualBasic.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Win32.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Win32.Primitives.dll
new file mode 100644
index 0000000..2f75eb4
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Win32.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Win32.Registry.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Win32.Registry.dll
new file mode 100644
index 0000000..662641d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Win32.Registry.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/Newtonsoft.Json.Bson.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/Newtonsoft.Json.Bson.dll
new file mode 100644
index 0000000..22d4c12
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/Newtonsoft.Json.Bson.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/Newtonsoft.Json.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/Newtonsoft.Json.dll
new file mode 100644
index 0000000..1ffeabe
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/Newtonsoft.Json.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/RestSharp.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/RestSharp.dll
new file mode 100644
index 0000000..e9220ac
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/RestSharp.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.AppContext.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.AppContext.dll
new file mode 100644
index 0000000..4b2a9c2
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.AppContext.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Buffers.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Buffers.dll
new file mode 100644
index 0000000..7763f79
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Buffers.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.Concurrent.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.Concurrent.dll
new file mode 100644
index 0000000..5fb52c7
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.Concurrent.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.Immutable.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.Immutable.dll
new file mode 100644
index 0000000..3ff7f4b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.Immutable.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.NonGeneric.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.NonGeneric.dll
new file mode 100644
index 0000000..dc40d84
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.NonGeneric.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.Specialized.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.Specialized.dll
new file mode 100644
index 0000000..dc2f83d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.Specialized.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.dll
new file mode 100644
index 0000000..494f91d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.Annotations.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.Annotations.dll
new file mode 100644
index 0000000..dc6f29e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.Annotations.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.DataAnnotations.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.DataAnnotations.dll
new file mode 100644
index 0000000..9511ee8
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.DataAnnotations.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.EventBasedAsync.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.EventBasedAsync.dll
new file mode 100644
index 0000000..1954226
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.EventBasedAsync.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.Primitives.dll
new file mode 100644
index 0000000..dce56b1
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.TypeConverter.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.TypeConverter.dll
new file mode 100644
index 0000000..82e0fda
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.TypeConverter.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.dll
new file mode 100644
index 0000000..b51948d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Configuration.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Configuration.dll
new file mode 100644
index 0000000..14babf6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Configuration.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Console.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Console.dll
new file mode 100644
index 0000000..3eeef4d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Console.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Core.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Core.dll
new file mode 100644
index 0000000..ba08e54
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Core.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.Common.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.Common.dll
new file mode 100644
index 0000000..1079dfb
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.Common.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.DataSetExtensions.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.DataSetExtensions.dll
new file mode 100644
index 0000000..ecea37a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.DataSetExtensions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.SqlClient.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.SqlClient.dll
new file mode 100644
index 0000000..bd51de0
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.SqlClient.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.dll
new file mode 100644
index 0000000..6cb3701
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Contracts.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Contracts.dll
new file mode 100644
index 0000000..7ee8aa0
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Contracts.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Debug.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Debug.dll
new file mode 100644
index 0000000..5a2a72a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Debug.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.DiagnosticSource.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.DiagnosticSource.dll
new file mode 100644
index 0000000..4e1884e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.DiagnosticSource.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.FileVersionInfo.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.FileVersionInfo.dll
new file mode 100644
index 0000000..3d6cf03
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.FileVersionInfo.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Process.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Process.dll
new file mode 100644
index 0000000..c536cfa
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Process.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.StackTrace.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.StackTrace.dll
new file mode 100644
index 0000000..73e72cc
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.StackTrace.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.TextWriterTraceListener.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.TextWriterTraceListener.dll
new file mode 100644
index 0000000..435e63c
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.TextWriterTraceListener.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Tools.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Tools.dll
new file mode 100644
index 0000000..5d46346
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Tools.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.TraceSource.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.TraceSource.dll
new file mode 100644
index 0000000..dbaa021
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.TraceSource.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Tracing.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Tracing.dll
new file mode 100644
index 0000000..42eec49
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Tracing.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Drawing.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Drawing.Primitives.dll
new file mode 100644
index 0000000..9a4c9cc
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Drawing.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Drawing.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Drawing.dll
new file mode 100644
index 0000000..837c10a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Drawing.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Dynamic.Runtime.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Dynamic.Runtime.dll
new file mode 100644
index 0000000..eb3b3aa
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Dynamic.Runtime.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Formats.Asn1.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Formats.Asn1.dll
new file mode 100644
index 0000000..6ab9840
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Formats.Asn1.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Globalization.Calendars.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Globalization.Calendars.dll
new file mode 100644
index 0000000..aa75566
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Globalization.Calendars.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Globalization.Extensions.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Globalization.Extensions.dll
new file mode 100644
index 0000000..1440c58
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Globalization.Extensions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Globalization.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Globalization.dll
new file mode 100644
index 0000000..b5b0046
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Globalization.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.Brotli.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.Brotli.dll
new file mode 100644
index 0000000..92e42b6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.Brotli.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.FileSystem.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.FileSystem.dll
new file mode 100644
index 0000000..dd500c3
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.FileSystem.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.ZipFile.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.ZipFile.dll
new file mode 100644
index 0000000..dddb3b3
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.ZipFile.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.dll
new file mode 100644
index 0000000..049cca2
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.AccessControl.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.AccessControl.dll
new file mode 100644
index 0000000..35fe0c4
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.AccessControl.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.DriveInfo.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.DriveInfo.dll
new file mode 100644
index 0000000..031f7ee
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.DriveInfo.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.Primitives.dll
new file mode 100644
index 0000000..720e239
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.Watcher.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.Watcher.dll
new file mode 100644
index 0000000..978ada9
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.Watcher.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.dll
new file mode 100644
index 0000000..132bbef
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.IsolatedStorage.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.IsolatedStorage.dll
new file mode 100644
index 0000000..790d7ce
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.IsolatedStorage.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.MemoryMappedFiles.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.MemoryMappedFiles.dll
new file mode 100644
index 0000000..132a23b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.MemoryMappedFiles.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Pipes.AccessControl.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Pipes.AccessControl.dll
new file mode 100644
index 0000000..1c38396
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Pipes.AccessControl.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Pipes.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Pipes.dll
new file mode 100644
index 0000000..ef512bb
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Pipes.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.UnmanagedMemoryStream.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.UnmanagedMemoryStream.dll
new file mode 100644
index 0000000..6d00b8b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.UnmanagedMemoryStream.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.dll
new file mode 100644
index 0000000..47deca8
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.Expressions.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.Expressions.dll
new file mode 100644
index 0000000..b617903
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.Expressions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.Parallel.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.Parallel.dll
new file mode 100644
index 0000000..afed444
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.Parallel.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.Queryable.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.Queryable.dll
new file mode 100644
index 0000000..1829f91
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.Queryable.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.dll
new file mode 100644
index 0000000..5a86003
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Memory.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Memory.dll
new file mode 100644
index 0000000..eceab8e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Memory.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Http.Formatting.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Http.Formatting.dll
new file mode 100644
index 0000000..27cb2db
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Http.Formatting.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Http.Json.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Http.Json.dll
new file mode 100644
index 0000000..622ce59
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Http.Json.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Http.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Http.dll
new file mode 100644
index 0000000..69fb49b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Http.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.HttpListener.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.HttpListener.dll
new file mode 100644
index 0000000..49fa2f5
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.HttpListener.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Mail.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Mail.dll
new file mode 100644
index 0000000..86c3dbe
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Mail.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.NameResolution.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.NameResolution.dll
new file mode 100644
index 0000000..e10ce63
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.NameResolution.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.NetworkInformation.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.NetworkInformation.dll
new file mode 100644
index 0000000..321c3fe
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.NetworkInformation.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Ping.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Ping.dll
new file mode 100644
index 0000000..b7b4ce4
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Ping.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Primitives.dll
new file mode 100644
index 0000000..8257ff8
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Quic.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Quic.dll
new file mode 100644
index 0000000..62dd3de
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Quic.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Requests.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Requests.dll
new file mode 100644
index 0000000..d67d684
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Requests.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Security.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Security.dll
new file mode 100644
index 0000000..6d35acb
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Security.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.ServicePoint.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.ServicePoint.dll
new file mode 100644
index 0000000..ddb71f2
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.ServicePoint.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Sockets.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Sockets.dll
new file mode 100644
index 0000000..1ad43f6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Sockets.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebClient.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebClient.dll
new file mode 100644
index 0000000..9e0a46e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebClient.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebHeaderCollection.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebHeaderCollection.dll
new file mode 100644
index 0000000..06b4b40
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebHeaderCollection.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebProxy.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebProxy.dll
new file mode 100644
index 0000000..b26340c
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebProxy.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebSockets.Client.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebSockets.Client.dll
new file mode 100644
index 0000000..91f2473
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebSockets.Client.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebSockets.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebSockets.dll
new file mode 100644
index 0000000..d9de9cb
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebSockets.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.dll
new file mode 100644
index 0000000..094e0bb
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Numerics.Vectors.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Numerics.Vectors.dll
new file mode 100644
index 0000000..52b6ea2
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Numerics.Vectors.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Numerics.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Numerics.dll
new file mode 100644
index 0000000..0498896
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Numerics.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ObjectModel.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ObjectModel.dll
new file mode 100644
index 0000000..7d20c56
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ObjectModel.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.CoreLib.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.CoreLib.dll
new file mode 100644
index 0000000..a283d36
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.CoreLib.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.DataContractSerialization.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.DataContractSerialization.dll
new file mode 100644
index 0000000..28492f0
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.DataContractSerialization.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.Uri.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.Uri.dll
new file mode 100644
index 0000000..c5570ab
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.Uri.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.Xml.Linq.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.Xml.Linq.dll
new file mode 100644
index 0000000..0578790
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.Xml.Linq.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.Xml.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.Xml.dll
new file mode 100644
index 0000000..bf5e06b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.Xml.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.DispatchProxy.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.DispatchProxy.dll
new file mode 100644
index 0000000..ad0d482
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.DispatchProxy.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Emit.ILGeneration.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Emit.ILGeneration.dll
new file mode 100644
index 0000000..9b4ed5e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Emit.ILGeneration.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Emit.Lightweight.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Emit.Lightweight.dll
new file mode 100644
index 0000000..db30e6b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Emit.Lightweight.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Emit.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Emit.dll
new file mode 100644
index 0000000..904614b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Emit.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Extensions.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Extensions.dll
new file mode 100644
index 0000000..80d1de7
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Extensions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Metadata.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Metadata.dll
new file mode 100644
index 0000000..4516f50
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Metadata.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Primitives.dll
new file mode 100644
index 0000000..51a6643
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.TypeExtensions.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.TypeExtensions.dll
new file mode 100644
index 0000000..588b5db
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.TypeExtensions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.dll
new file mode 100644
index 0000000..7e85ffa
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Resources.Reader.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Resources.Reader.dll
new file mode 100644
index 0000000..e1b2589
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Resources.Reader.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Resources.ResourceManager.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Resources.ResourceManager.dll
new file mode 100644
index 0000000..6c30ae1
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Resources.ResourceManager.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Resources.Writer.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Resources.Writer.dll
new file mode 100644
index 0000000..50a7d50
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Resources.Writer.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.CompilerServices.Unsafe.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..118ba04
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.CompilerServices.VisualC.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.CompilerServices.VisualC.dll
new file mode 100644
index 0000000..d1060f0
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.CompilerServices.VisualC.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Extensions.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Extensions.dll
new file mode 100644
index 0000000..d08e333
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Extensions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Handles.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Handles.dll
new file mode 100644
index 0000000..a9a7d40
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Handles.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.InteropServices.RuntimeInformation.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.InteropServices.RuntimeInformation.dll
new file mode 100644
index 0000000..bfcdac6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.InteropServices.RuntimeInformation.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.InteropServices.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.InteropServices.dll
new file mode 100644
index 0000000..e6cc7cd
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.InteropServices.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Intrinsics.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Intrinsics.dll
new file mode 100644
index 0000000..86b2ed4
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Intrinsics.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Loader.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Loader.dll
new file mode 100644
index 0000000..d862364
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Loader.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Numerics.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Numerics.dll
new file mode 100644
index 0000000..f67323b
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Numerics.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Formatters.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Formatters.dll
new file mode 100644
index 0000000..7d12078
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Formatters.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Json.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Json.dll
new file mode 100644
index 0000000..ca34aec
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Json.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Primitives.dll
new file mode 100644
index 0000000..adebcec
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Xml.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Xml.dll
new file mode 100644
index 0000000..4ca3e6e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Xml.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.dll
new file mode 100644
index 0000000..5ec1d60
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.dll
new file mode 100644
index 0000000..303c5d0
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.AccessControl.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.AccessControl.dll
new file mode 100644
index 0000000..9c1171c
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.AccessControl.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Claims.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Claims.dll
new file mode 100644
index 0000000..96739b7
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Claims.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Algorithms.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Algorithms.dll
new file mode 100644
index 0000000..7c52d69
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Algorithms.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Cng.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Cng.dll
new file mode 100644
index 0000000..40f3dc3
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Cng.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Csp.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Csp.dll
new file mode 100644
index 0000000..375e64d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Csp.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Encoding.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Encoding.dll
new file mode 100644
index 0000000..3d84362
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Encoding.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.OpenSsl.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.OpenSsl.dll
new file mode 100644
index 0000000..bd8cdfc
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.OpenSsl.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Primitives.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Primitives.dll
new file mode 100644
index 0000000..56bbbc2
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Primitives.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.X509Certificates.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.X509Certificates.dll
new file mode 100644
index 0000000..ca0de65
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.X509Certificates.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Principal.Windows.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Principal.Windows.dll
new file mode 100644
index 0000000..6fb47b6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Principal.Windows.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Principal.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Principal.dll
new file mode 100644
index 0000000..98c75e3
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Principal.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.SecureString.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.SecureString.dll
new file mode 100644
index 0000000..1824acf
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.SecureString.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.dll
new file mode 100644
index 0000000..206eda6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ServiceModel.Web.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ServiceModel.Web.dll
new file mode 100644
index 0000000..7c35f95
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ServiceModel.Web.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ServiceProcess.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ServiceProcess.dll
new file mode 100644
index 0000000..38cff5a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ServiceProcess.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encoding.CodePages.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encoding.CodePages.dll
new file mode 100644
index 0000000..7fc1f08
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encoding.CodePages.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encoding.Extensions.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encoding.Extensions.dll
new file mode 100644
index 0000000..42ce87d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encoding.Extensions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encoding.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encoding.dll
new file mode 100644
index 0000000..066a88d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encoding.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encodings.Web.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encodings.Web.dll
new file mode 100644
index 0000000..0a05a51
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encodings.Web.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Json.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Json.dll
new file mode 100644
index 0000000..6fe5de8
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Json.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.RegularExpressions.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.RegularExpressions.dll
new file mode 100644
index 0000000..9d8a99e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.RegularExpressions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Channels.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Channels.dll
new file mode 100644
index 0000000..5fc9c95
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Channels.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Overlapped.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Overlapped.dll
new file mode 100644
index 0000000..39ce01d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Overlapped.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.Dataflow.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.Dataflow.dll
new file mode 100644
index 0000000..a924437
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.Dataflow.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.Extensions.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.Extensions.dll
new file mode 100644
index 0000000..7551d85
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.Extensions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.Parallel.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.Parallel.dll
new file mode 100644
index 0000000..81df15a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.Parallel.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.dll
new file mode 100644
index 0000000..f8ff654
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Thread.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Thread.dll
new file mode 100644
index 0000000..067c76e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Thread.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.ThreadPool.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.ThreadPool.dll
new file mode 100644
index 0000000..c101d97
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.ThreadPool.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Timer.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Timer.dll
new file mode 100644
index 0000000..648d9d0
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Timer.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.dll
new file mode 100644
index 0000000..1991415
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Transactions.Local.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Transactions.Local.dll
new file mode 100644
index 0000000..61005d9
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Transactions.Local.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Transactions.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Transactions.dll
new file mode 100644
index 0000000..83c3549
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Transactions.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ValueTuple.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ValueTuple.dll
new file mode 100644
index 0000000..1cf559c
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ValueTuple.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Web.HttpUtility.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Web.HttpUtility.dll
new file mode 100644
index 0000000..fa9b555
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Web.HttpUtility.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Web.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Web.dll
new file mode 100644
index 0000000..92eaaa9
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Web.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Windows.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Windows.dll
new file mode 100644
index 0000000..c1e3783
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Windows.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.Linq.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.Linq.dll
new file mode 100644
index 0000000..ac3cd22
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.Linq.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.ReaderWriter.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.ReaderWriter.dll
new file mode 100644
index 0000000..dab7ff6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.ReaderWriter.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.Serialization.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.Serialization.dll
new file mode 100644
index 0000000..d76189e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.Serialization.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XDocument.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XDocument.dll
new file mode 100644
index 0000000..a66738a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XDocument.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XPath.XDocument.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XPath.XDocument.dll
new file mode 100644
index 0000000..054d1f9
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XPath.XDocument.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XPath.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XPath.dll
new file mode 100644
index 0000000..da2aca6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XPath.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XmlDocument.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XmlDocument.dll
new file mode 100644
index 0000000..ccd058d
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XmlDocument.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XmlSerializer.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XmlSerializer.dll
new file mode 100644
index 0000000..20ca999
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XmlSerializer.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.dll
new file mode 100644
index 0000000..d20e6f0
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/System.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.dll
new file mode 100644
index 0000000..82fdec5
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/System.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/WindowsBase.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/WindowsBase.dll
new file mode 100644
index 0000000..4907d59
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/WindowsBase.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/createdump b/bin/release/net6.0/ubuntu.20.04-x64/publish/createdump
new file mode 100644
index 0000000..67f6c96
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/createdump differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import b/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import
new file mode 100644
index 0000000..b28be78
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.deps.json b/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.deps.json
new file mode 100644
index 0000000..f437fc6
--- /dev/null
+++ b/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.deps.json
@@ -0,0 +1,2538 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v6.0/ubuntu.20.04-x64",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v6.0": {},
+ ".NETCoreApp,Version=v6.0/ubuntu.20.04-x64": {
+ "jdis_import/1.0.0": {
+ "dependencies": {
+ "Independentsoft.Exchange": "3.0.700",
+ "Microsoft.AspNet.WebApi.Client": "5.2.9",
+ "Microsoft.Exchange.WebServices": "2.2.0",
+ "Microsoft.Identity.Client": "4.49.1",
+ "Newtonsoft.Json": "13.0.1",
+ "RestSharp": "108.0.2",
+ "System.Data.SqlClient": "4.8.5",
+ "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64": "6.0.4"
+ },
+ "runtime": {
+ "jdis_import.dll": {}
+ }
+ },
+ "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/6.0.4": {
+ "runtime": {
+ "Microsoft.CSharp.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "Microsoft.VisualBasic.Core.dll": {
+ "assemblyVersion": "11.0.0.0",
+ "fileVersion": "11.100.422.16404"
+ },
+ "Microsoft.VisualBasic.dll": {
+ "assemblyVersion": "10.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "Microsoft.Win32.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "Microsoft.Win32.Registry.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.AppContext.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Buffers.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Collections.Concurrent.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Collections.Immutable.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Collections.NonGeneric.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Collections.Specialized.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Collections.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ComponentModel.Annotations.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ComponentModel.DataAnnotations.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ComponentModel.EventBasedAsync.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ComponentModel.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ComponentModel.TypeConverter.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ComponentModel.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Configuration.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Console.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Core.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Data.Common.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Data.DataSetExtensions.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Data.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.Contracts.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.Debug.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.DiagnosticSource.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.FileVersionInfo.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.Process.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.StackTrace.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.TextWriterTraceListener.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.Tools.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.TraceSource.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Diagnostics.Tracing.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Drawing.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Drawing.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Dynamic.Runtime.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Formats.Asn1.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Globalization.Calendars.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Globalization.Extensions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Globalization.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.Compression.Brotli.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.Compression.FileSystem.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.Compression.ZipFile.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.Compression.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.FileSystem.AccessControl.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.FileSystem.DriveInfo.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.FileSystem.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.FileSystem.Watcher.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.FileSystem.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.IsolatedStorage.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.MemoryMappedFiles.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.Pipes.AccessControl.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.Pipes.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.UnmanagedMemoryStream.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.IO.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Linq.Expressions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Linq.Parallel.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Linq.Queryable.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Linq.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Memory.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Http.Json.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Http.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.HttpListener.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Mail.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.NameResolution.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.NetworkInformation.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Ping.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Quic.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Requests.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Security.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.ServicePoint.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.Sockets.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.WebClient.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.WebHeaderCollection.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.WebProxy.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.WebSockets.Client.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.WebSockets.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Net.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Numerics.Vectors.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Numerics.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ObjectModel.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Private.CoreLib.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Private.DataContractSerialization.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Private.Uri.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Private.Xml.Linq.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Private.Xml.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.DispatchProxy.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.Emit.ILGeneration.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.Emit.Lightweight.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.Emit.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.Extensions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.Metadata.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.TypeExtensions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Reflection.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Resources.Reader.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Resources.ResourceManager.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Resources.Writer.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.CompilerServices.Unsafe.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.CompilerServices.VisualC.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Extensions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Handles.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.InteropServices.RuntimeInformation.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.InteropServices.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Intrinsics.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Loader.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Numerics.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Serialization.Formatters.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Serialization.Json.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Serialization.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Serialization.Xml.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.Serialization.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Runtime.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.AccessControl.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Claims.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Cryptography.Algorithms.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Cryptography.Cng.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Cryptography.Csp.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Cryptography.Encoding.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Cryptography.OpenSsl.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Cryptography.Primitives.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Cryptography.X509Certificates.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Principal.Windows.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.Principal.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.SecureString.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Security.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ServiceModel.Web.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ServiceProcess.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Text.Encoding.CodePages.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Text.Encoding.Extensions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Text.Encoding.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Text.Encodings.Web.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Text.Json.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Text.RegularExpressions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Channels.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Overlapped.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Tasks.Dataflow.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Tasks.Extensions.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Tasks.Parallel.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Tasks.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Thread.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.ThreadPool.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.Timer.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Threading.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Transactions.Local.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Transactions.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.ValueTuple.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Web.HttpUtility.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Web.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Windows.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.Linq.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.ReaderWriter.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.Serialization.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.XDocument.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.XPath.XDocument.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.XPath.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.XmlDocument.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.XmlSerializer.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.Xml.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "System.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "WindowsBase.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "mscorlib.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "6.0.422.16404"
+ },
+ "netstandard.dll": {
+ "assemblyVersion": "2.1.0.0",
+ "fileVersion": "6.0.422.16404"
+ }
+ },
+ "native": {
+ "createdump": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libSystem.Globalization.Native.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libSystem.IO.Compression.Native.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libSystem.Native.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libSystem.Net.Security.Native.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libSystem.Security.Cryptography.Native.OpenSsl.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libclrjit.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libcoreclr.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libcoreclrtraceptprovider.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libdbgshim.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libhostfxr.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libhostpolicy.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libmscordaccore.so": {
+ "fileVersion": "0.0.0.0"
+ },
+ "libmscordbi.so": {
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "Independentsoft.Exchange/3.0.700": {
+ "runtime": {
+ "Lib/netcoreapp2.0/Independentsoft.Exchange.dll": {
+ "assemblyVersion": "3.0.700.1",
+ "fileVersion": "3.0.700.1"
+ }
+ }
+ },
+ "Microsoft.AspNet.WebApi.Client/5.2.9": {
+ "dependencies": {
+ "Newtonsoft.Json": "13.0.1",
+ "Newtonsoft.Json.Bson": "1.0.1"
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Net.Http.Formatting.dll": {
+ "assemblyVersion": "5.2.9.0",
+ "fileVersion": "5.2.61129.10"
+ }
+ }
+ },
+ "Microsoft.Exchange.WebServices/2.2.0": {
+ "runtime": {
+ "lib/40/Microsoft.Exchange.WebServices.Auth.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.913.0"
+ },
+ "lib/40/Microsoft.Exchange.WebServices.dll": {
+ "assemblyVersion": "15.0.0.0",
+ "fileVersion": "15.0.913.15"
+ }
+ }
+ },
+ "Microsoft.Identity.Client/4.49.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "6.22.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.Identity.Client.dll": {
+ "assemblyVersion": "4.49.1.0",
+ "fileVersion": "4.49.1.0"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Abstractions/6.22.0": {
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "assemblyVersion": "6.22.0.0",
+ "fileVersion": "6.22.0.30727"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {},
+ "Microsoft.NETCore.Targets/1.1.0": {},
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.unix.Microsoft.Win32.Primitives": "4.3.0"
+ }
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "NETStandard.Library/1.6.1": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.Compression.ZipFile": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
+ }
+ },
+ "Newtonsoft.Json/13.0.1": {
+ "runtime": {
+ "lib/netstandard2.0/Newtonsoft.Json.dll": {
+ "assemblyVersion": "13.0.0.0",
+ "fileVersion": "13.0.1.25517"
+ }
+ }
+ },
+ "Newtonsoft.Json.Bson/1.0.1": {
+ "dependencies": {
+ "NETStandard.Library": "1.6.1",
+ "Newtonsoft.Json": "13.0.1"
+ },
+ "runtime": {
+ "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.1.20722"
+ }
+ }
+ },
+ "RestSharp/108.0.2": {
+ "runtime": {
+ "lib/net6.0/RestSharp.dll": {
+ "assemblyVersion": "108.0.2.0",
+ "fileVersion": "108.0.2.0"
+ }
+ }
+ },
+ "runtime.any.System.Collections/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "runtime.any.System.Diagnostics.Tools/4.3.0": {},
+ "runtime.any.System.Diagnostics.Tracing/4.3.0": {},
+ "runtime.any.System.Globalization/4.3.0": {},
+ "runtime.any.System.Globalization.Calendars/4.3.0": {},
+ "runtime.any.System.IO/4.3.0": {},
+ "runtime.any.System.Reflection/4.3.0": {},
+ "runtime.any.System.Reflection.Extensions/4.3.0": {},
+ "runtime.any.System.Reflection.Primitives/4.3.0": {},
+ "runtime.any.System.Resources.ResourceManager/4.3.0": {},
+ "runtime.any.System.Runtime/4.3.0": {
+ "dependencies": {
+ "System.Private.Uri": "4.3.0"
+ }
+ },
+ "runtime.any.System.Runtime.Handles/4.3.0": {},
+ "runtime.any.System.Runtime.InteropServices/4.3.0": {},
+ "runtime.any.System.Text.Encoding/4.3.0": {},
+ "runtime.any.System.Text.Encoding.Extensions/4.3.0": {},
+ "runtime.any.System.Threading.Tasks/4.3.0": {},
+ "runtime.any.System.Threading.Timer/4.3.0": {},
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.native.System/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Data.SqlClient.sni/4.7.0": {
+ "dependencies": {
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ }
+ },
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Net.Http/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ }
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "dependencies": {
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
+ }
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "dependencies": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
+ "runtime.unix.Microsoft.Win32.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "runtime.unix.System.Console/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "runtime.unix.System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "runtime.unix.System.IO.FileSystem/4.3.0": {
+ "dependencies": {
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "runtime.unix.System.Net.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "runtime.unix.System.Net.Sockets/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.NameResolution": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "runtime.unix.System.Private.Uri/4.3.0": {
+ "dependencies": {
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "runtime.unix.System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "System.Private.Uri": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {},
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {},
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {},
+ "System.AppContext/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Buffers/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Collections/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Collections": "4.3.0"
+ }
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Console/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.unix.System.Console": "4.3.0"
+ }
+ },
+ "System.Data.SqlClient/4.8.5": {
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.7.0"
+ },
+ "runtime": {
+ "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
+ "assemblyVersion": "4.6.1.5",
+ "fileVersion": "4.700.22.51706"
+ }
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.unix.System.Diagnostics.Debug": "4.3.0"
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Diagnostics.Tools": "4.3.0"
+ }
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Diagnostics.Tracing": "4.3.0"
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Globalization": "4.3.0"
+ }
+ },
+ "System.Globalization.Calendars/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Globalization.Calendars": "4.3.0"
+ }
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
+ }
+ },
+ "System.IO/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.any.System.IO": "4.3.0"
+ }
+ },
+ "System.IO.Compression/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
+ }
+ },
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "dependencies": {
+ "System.Buffers": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.unix.System.IO.FileSystem": "4.3.0"
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Linq/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Net.Http/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Net.NameResolution/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Principal.Windows": "4.7.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "System.Net.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "runtime.unix.System.Net.Primitives": "4.3.0"
+ }
+ },
+ "System.Net.Sockets/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.unix.System.Net.Sockets": "4.3.0"
+ }
+ },
+ "System.ObjectModel/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Private.Uri/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.unix.System.Private.Uri": "4.3.0"
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "dependencies": {
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection.Extensions": "4.3.0"
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Reflection.Primitives": "4.3.0"
+ }
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Resources.ResourceManager": "4.3.0"
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "runtime.any.System.Runtime": "4.3.0"
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.unix.System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "runtime.any.System.Runtime.InteropServices": "4.3.0"
+ }
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "dependencies": {
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
+ }
+ },
+ "System.Runtime.Numerics/4.3.0": {
+ "dependencies": {
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ }
+ },
+ "System.Security.AccessControl/4.7.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ }
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ }
+ },
+ "System.Security.Principal.Windows/4.7.0": {},
+ "System.Text.Encoding/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Text.Encoding": "4.3.0"
+ }
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.any.System.Text.Encoding.Extensions": "4.3.0"
+ }
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ }
+ },
+ "System.Threading/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ }
+ },
+ "System.Threading.ThreadPool/4.3.0": {
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ }
+ },
+ "System.Threading.Timer/4.3.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "runtime.any.System.Threading.Timer": "4.3.0"
+ }
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
+ }
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
+ }
+ }
+ }
+ },
+ "libraries": {
+ "jdis_import/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/6.0.4": {
+ "type": "runtimepack",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Independentsoft.Exchange/3.0.700": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Ry32CWQMX4aS+k083pA7JeJwqxjCZ74aSRXHbF0jlGm1WgsWcf7AQ6X2KjYnQBk3Rm0gv1qxg7kvZYVGORiiGw==",
+ "path": "independentsoft.exchange/3.0.700",
+ "hashPath": "independentsoft.exchange.3.0.700.nupkg.sha512"
+ },
+ "Microsoft.AspNet.WebApi.Client/5.2.9": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cuVhPjjNMSEFpKXweMNBbsG4RUFuuZpFBm8tSyw309U9JEjcnbB6n3EPb4xwgcy9bJ38ctIbv5G8zXUBhlrPWw==",
+ "path": "microsoft.aspnet.webapi.client/5.2.9",
+ "hashPath": "microsoft.aspnet.webapi.client.5.2.9.nupkg.sha512"
+ },
+ "Microsoft.Exchange.WebServices/2.2.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NlkaTD0uWtg9VbiWq0VDWMBPzHFknH3tmstrxt0acrT09LBGqATTjRpsGOODz6tUdX7/dehBinxsf75U5Uw/+A==",
+ "path": "microsoft.exchange.webservices/2.2.0",
+ "hashPath": "microsoft.exchange.webservices.2.2.0.nupkg.sha512"
+ },
+ "Microsoft.Identity.Client/4.49.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-vDU3cdXIom4+pxJk8sDJcHYTHPhb6DSVF9zjFY61SoQVs1OxbHZY9+mBnq1gGkG7N/o04WTt42IdV/0gf1+5DA==",
+ "path": "microsoft.identity.client/4.49.1",
+ "hashPath": "microsoft.identity.client.4.49.1.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Abstractions/6.22.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iI+9V+2ciCrbheeLjpmjcqCnhy+r6yCoEcid3nkoFWerHgjVuT6CPM4HODUTtUPe1uwks4wcnAujJ8u+IKogHQ==",
+ "path": "microsoft.identitymodel.abstractions/6.22.0",
+ "hashPath": "microsoft.identitymodel.abstractions.6.22.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
+ "path": "microsoft.netcore.platforms/3.1.0",
+ "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
+ "path": "microsoft.win32.primitives/4.3.0",
+ "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "path": "microsoft.win32.registry/4.7.0",
+ "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
+ },
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
+ "path": "netstandard.library/1.6.1",
+ "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
+ },
+ "Newtonsoft.Json/13.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
+ "path": "newtonsoft.json/13.0.1",
+ "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
+ },
+ "Newtonsoft.Json.Bson/1.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
+ "path": "newtonsoft.json.bson/1.0.1",
+ "hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512"
+ },
+ "RestSharp/108.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zI1lzI+Jjzl6bcicyUYfLIGmmOAdJRkYepMnSPzrxd1o9RxztPaR/blUOmY8BpXdN3I+XlK9dtwCYRGCxvaODw==",
+ "path": "restsharp/108.0.2",
+ "hashPath": "restsharp.108.0.2.nupkg.sha512"
+ },
+ "runtime.any.System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
+ "path": "runtime.any.system.collections/4.3.0",
+ "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Diagnostics.Tools/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg==",
+ "path": "runtime.any.system.diagnostics.tools/4.3.0",
+ "hashPath": "runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Diagnostics.Tracing/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==",
+ "path": "runtime.any.system.diagnostics.tracing/4.3.0",
+ "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==",
+ "path": "runtime.any.system.globalization/4.3.0",
+ "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Globalization.Calendars/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==",
+ "path": "runtime.any.system.globalization.calendars/4.3.0",
+ "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==",
+ "path": "runtime.any.system.io/4.3.0",
+ "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==",
+ "path": "runtime.any.system.reflection/4.3.0",
+ "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==",
+ "path": "runtime.any.system.reflection.extensions/4.3.0",
+ "hashPath": "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==",
+ "path": "runtime.any.system.reflection.primitives/4.3.0",
+ "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==",
+ "path": "runtime.any.system.resources.resourcemanager/4.3.0",
+ "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
+ "path": "runtime.any.system.runtime/4.3.0",
+ "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==",
+ "path": "runtime.any.system.runtime.handles/4.3.0",
+ "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==",
+ "path": "runtime.any.system.runtime.interopservices/4.3.0",
+ "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==",
+ "path": "runtime.any.system.text.encoding/4.3.0",
+ "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Text.Encoding.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==",
+ "path": "runtime.any.system.text.encoding.extensions/4.3.0",
+ "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==",
+ "path": "runtime.any.system.threading.tasks/4.3.0",
+ "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "runtime.any.System.Threading.Timer/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w==",
+ "path": "runtime.any.system.threading.timer/4.3.0",
+ "hashPath": "runtime.any.system.threading.timer.4.3.0.nupkg.sha512"
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
+ "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
+ "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
+ "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "path": "runtime.native.system/4.3.0",
+ "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Data.SqlClient.sni/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
+ "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
+ "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512"
+ },
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
+ "path": "runtime.native.system.io.compression/4.3.0",
+ "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Net.Http/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
+ "path": "runtime.native.system.net.http/4.3.0",
+ "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "path": "runtime.native.system.security.cryptography.apple/4.3.0",
+ "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
+ "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
+ "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
+ "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
+ "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.Microsoft.Win32.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2mI2Mfq+CVatgr4RWGvAWBjoCfUafy6VNFU7G9OA52DjO8x/okfIbsEq2UPgeGfdpO7X5gmPXKT8slx0tn0Mhw==",
+ "path": "runtime.unix.microsoft.win32.primitives/4.3.0",
+ "hashPath": "runtime.unix.microsoft.win32.primitives.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.System.Console/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JSEiU9EvE2vJTHUuHnSg9le8XDbvZmjZ/3PhLviICzY1TTDE7c/uNYVtE9qTA9PAOZsqccy5lxvfaZOeBhT3tA==",
+ "path": "runtime.unix.system.console/4.3.0",
+ "hashPath": "runtime.unix.system.console.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WV8KLRHWVUVUDduFnvGMHt0FsEt2wK6xPl1EgDKlaMx2KnZ43A/O0GzP8wIuvAC7mq4T9V1mm90r+PXkL9FPdQ==",
+ "path": "runtime.unix.system.diagnostics.debug/4.3.0",
+ "hashPath": "runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.System.IO.FileSystem/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ajmTcjrqc3vgV1TH54DRioshbEniaFbOAJ0kReGuNsp9uIcqYle0RmUo6+Qlwqe3JIs4TDxgnqs3UzX3gRJ1rA==",
+ "path": "runtime.unix.system.io.filesystem/4.3.0",
+ "hashPath": "runtime.unix.system.io.filesystem.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.System.Net.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AZcRXhH7Gamr+bckUfX3iHefPIrujJTt9XWQWo0elNiP1SNasX0KBWINZkDKY0GsOrsyJ7cB4MgIRTZzLlsTKg==",
+ "path": "runtime.unix.system.net.primitives/4.3.0",
+ "hashPath": "runtime.unix.system.net.primitives.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.System.Net.Sockets/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4NcLbqajFaD3PvhOdmbieeBlKY4d8/kBfgJ5g28n6k1jWEICabvLM62gvmUS/CvyfvcZxVanKPl+E9LhPzfXZw==",
+ "path": "runtime.unix.system.net.sockets/4.3.0",
+ "hashPath": "runtime.unix.system.net.sockets.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.System.Private.Uri/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ooWzobr5RAq34r9uan1r/WPXJYG1XWy9KanrxNvEnBzbFdQbMG7Y3bVi4QxR7xZMNLOxLLTAyXvnSkfj5boZSg==",
+ "path": "runtime.unix.system.private.uri/4.3.0",
+ "hashPath": "runtime.unix.system.private.uri.4.3.0.nupkg.sha512"
+ },
+ "runtime.unix.System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-zQiTBVpiLftTQZW8GFsV0gjYikB1WMkEPIxF5O6RkUrSV/OgvRRTYgeFQha/0keBpuS0HYweraGRwhfhJ7dj7w==",
+ "path": "runtime.unix.system.runtime.extensions/4.3.0",
+ "hashPath": "runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
+ "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
+ "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
+ "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
+ },
+ "System.AppContext/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
+ "path": "system.appcontext/4.3.0",
+ "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
+ },
+ "System.Buffers/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
+ "path": "system.buffers/4.3.0",
+ "hashPath": "system.buffers.4.3.0.nupkg.sha512"
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "path": "system.collections/4.3.0",
+ "hashPath": "system.collections.4.3.0.nupkg.sha512"
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
+ "path": "system.collections.concurrent/4.3.0",
+ "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
+ },
+ "System.Console/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
+ "path": "system.console/4.3.0",
+ "hashPath": "system.console.4.3.0.nupkg.sha512"
+ },
+ "System.Data.SqlClient/4.8.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fRqxut4lrndPHrXD+ht1XRmCL3obuKldm4XjCRYS9p5f7FSR7shBxAwTkDrpFMsHC9BhNgjjmUtiIjvehn5zkg==",
+ "path": "system.data.sqlclient/4.8.5",
+ "hashPath": "system.data.sqlclient.4.8.5.nupkg.sha512"
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "path": "system.diagnostics.debug/4.3.0",
+ "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
+ "path": "system.diagnostics.diagnosticsource/4.3.0",
+ "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Tools/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
+ "path": "system.diagnostics.tools/4.3.0",
+ "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
+ "path": "system.diagnostics.tracing/4.3.0",
+ "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "path": "system.globalization/4.3.0",
+ "hashPath": "system.globalization.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization.Calendars/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
+ "path": "system.globalization.calendars/4.3.0",
+ "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
+ "path": "system.globalization.extensions/4.3.0",
+ "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "path": "system.io/4.3.0",
+ "hashPath": "system.io.4.3.0.nupkg.sha512"
+ },
+ "System.IO.Compression/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
+ "path": "system.io.compression/4.3.0",
+ "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
+ },
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
+ "path": "system.io.compression.zipfile/4.3.0",
+ "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
+ "path": "system.io.filesystem/4.3.0",
+ "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
+ "path": "system.io.filesystem.primitives/4.3.0",
+ "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "path": "system.linq/4.3.0",
+ "hashPath": "system.linq.4.3.0.nupkg.sha512"
+ },
+ "System.Linq.Expressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
+ "path": "system.linq.expressions/4.3.0",
+ "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
+ },
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
+ "path": "system.net.http/4.3.0",
+ "hashPath": "system.net.http.4.3.0.nupkg.sha512"
+ },
+ "System.Net.NameResolution/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
+ "path": "system.net.nameresolution/4.3.0",
+ "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
+ },
+ "System.Net.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
+ "path": "system.net.primitives/4.3.0",
+ "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Net.Sockets/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
+ "path": "system.net.sockets/4.3.0",
+ "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
+ },
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
+ "path": "system.objectmodel/4.3.0",
+ "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
+ },
+ "System.Private.Uri/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
+ "path": "system.private.uri/4.3.0",
+ "hashPath": "system.private.uri.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "path": "system.reflection/4.3.0",
+ "hashPath": "system.reflection.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
+ "path": "system.reflection.emit/4.3.0",
+ "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
+ "path": "system.reflection.emit.ilgeneration/4.3.0",
+ "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
+ "path": "system.reflection.emit.lightweight/4.3.0",
+ "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
+ "path": "system.reflection.extensions/4.3.0",
+ "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "path": "system.reflection.primitives/4.3.0",
+ "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
+ "path": "system.reflection.typeextensions/4.3.0",
+ "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "path": "system.runtime/4.3.0",
+ "hashPath": "system.runtime.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "path": "system.runtime.extensions/4.3.0",
+ "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "path": "system.runtime.handles/4.3.0",
+ "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "path": "system.runtime.interopservices/4.3.0",
+ "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
+ "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
+ "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
+ },
+ "System.Runtime.Numerics/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
+ "path": "system.runtime.numerics/4.3.0",
+ "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
+ },
+ "System.Security.AccessControl/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
+ "path": "system.security.accesscontrol/4.7.0",
+ "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
+ "path": "system.security.cryptography.algorithms/4.3.0",
+ "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
+ "path": "system.security.cryptography.cng/4.3.0",
+ "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
+ "path": "system.security.cryptography.csp/4.3.0",
+ "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
+ "path": "system.security.cryptography.encoding/4.3.0",
+ "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
+ "path": "system.security.cryptography.openssl/4.3.0",
+ "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
+ "path": "system.security.cryptography.primitives/4.3.0",
+ "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
+ "path": "system.security.cryptography.x509certificates/4.3.0",
+ "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/4.7.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
+ "path": "system.security.principal.windows/4.7.0",
+ "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "path": "system.text.encoding/4.3.0",
+ "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
+ },
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
+ "path": "system.text.encoding.extensions/4.3.0",
+ "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Text.RegularExpressions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
+ "path": "system.text.regularexpressions/4.3.0",
+ "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "path": "system.threading/4.3.0",
+ "hashPath": "system.threading.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "path": "system.threading.tasks/4.3.0",
+ "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Tasks.Extensions/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
+ "path": "system.threading.tasks.extensions/4.3.0",
+ "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.ThreadPool/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
+ "path": "system.threading.threadpool/4.3.0",
+ "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
+ },
+ "System.Threading.Timer/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
+ "path": "system.threading.timer/4.3.0",
+ "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
+ "path": "system.xml.readerwriter/4.3.0",
+ "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
+ "path": "system.xml.xdocument/4.3.0",
+ "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
+ }
+ },
+ "runtimes": {
+ "ubuntu.20.04-x64": [
+ "ubuntu.20.04",
+ "ubuntu-x64",
+ "ubuntu",
+ "debian-x64",
+ "debian",
+ "linux-x64",
+ "linux",
+ "unix-x64",
+ "unix",
+ "any",
+ "base"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.dll
new file mode 100644
index 0000000..2c31171
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.pdb b/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.pdb
new file mode 100644
index 0000000..e8f0732
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.pdb differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.runtimeconfig.json b/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.runtimeconfig.json
new file mode 100644
index 0000000..cafd731
--- /dev/null
+++ b/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.runtimeconfig.json
@@ -0,0 +1,14 @@
+{
+ "runtimeOptions": {
+ "tfm": "net6.0",
+ "includedFrameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "6.0.4"
+ }
+ ],
+ "configProperties": {
+ "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Globalization.Native.so b/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Globalization.Native.so
new file mode 100644
index 0000000..a4ed7cd
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Globalization.Native.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.IO.Compression.Native.so b/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.IO.Compression.Native.so
new file mode 100644
index 0000000..23c3790
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.IO.Compression.Native.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Native.so b/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Native.so
new file mode 100644
index 0000000..2f36237
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Native.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Net.Security.Native.so b/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Net.Security.Native.so
new file mode 100644
index 0000000..5c7cae7
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Net.Security.Native.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Security.Cryptography.Native.OpenSsl.so b/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Security.Cryptography.Native.OpenSsl.so
new file mode 100644
index 0000000..cd7045e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Security.Cryptography.Native.OpenSsl.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/libclrjit.so b/bin/release/net6.0/ubuntu.20.04-x64/publish/libclrjit.so
new file mode 100644
index 0000000..2743ec2
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/libclrjit.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/libcoreclr.so b/bin/release/net6.0/ubuntu.20.04-x64/publish/libcoreclr.so
new file mode 100644
index 0000000..4bf2ad6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/libcoreclr.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/libcoreclrtraceptprovider.so b/bin/release/net6.0/ubuntu.20.04-x64/publish/libcoreclrtraceptprovider.so
new file mode 100644
index 0000000..2966568
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/libcoreclrtraceptprovider.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/libdbgshim.so b/bin/release/net6.0/ubuntu.20.04-x64/publish/libdbgshim.so
new file mode 100644
index 0000000..bc2c3d1
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/libdbgshim.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/libhostfxr.so b/bin/release/net6.0/ubuntu.20.04-x64/publish/libhostfxr.so
new file mode 100644
index 0000000..5052309
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/libhostfxr.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/libhostpolicy.so b/bin/release/net6.0/ubuntu.20.04-x64/publish/libhostpolicy.so
new file mode 100644
index 0000000..5c6152c
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/libhostpolicy.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/libmscordaccore.so b/bin/release/net6.0/ubuntu.20.04-x64/publish/libmscordaccore.so
new file mode 100644
index 0000000..11485e6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/libmscordaccore.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/libmscordbi.so b/bin/release/net6.0/ubuntu.20.04-x64/publish/libmscordbi.so
new file mode 100644
index 0000000..484f9e6
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/libmscordbi.so differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/mscorlib.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/mscorlib.dll
new file mode 100644
index 0000000..393e60a
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/mscorlib.dll differ
diff --git a/bin/release/net6.0/ubuntu.20.04-x64/publish/netstandard.dll b/bin/release/net6.0/ubuntu.20.04-x64/publish/netstandard.dll
new file mode 100644
index 0000000..a0a7e1e
Binary files /dev/null and b/bin/release/net6.0/ubuntu.20.04-x64/publish/netstandard.dll differ
diff --git a/jdis_import.csproj b/jdis_import.csproj
index 82c5758..0ae5f08 100644
--- a/jdis_import.csproj
+++ b/jdis_import.csproj
@@ -5,11 +5,20 @@
net6.0
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Always
+
+
+ Always
+
+
diff --git a/obj/Debug/net6.0/jdis_import.assets.cache b/obj/Debug/net6.0/jdis_import.assets.cache
index 1fc5cef..a5c468a 100644
Binary files a/obj/Debug/net6.0/jdis_import.assets.cache and b/obj/Debug/net6.0/jdis_import.assets.cache differ
diff --git a/obj/Debug/net6.0/jdis_import.csproj.AssemblyReference.cache b/obj/Debug/net6.0/jdis_import.csproj.AssemblyReference.cache
index 2f38a9f..39c8251 100644
Binary files a/obj/Debug/net6.0/jdis_import.csproj.AssemblyReference.cache and b/obj/Debug/net6.0/jdis_import.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/net6.0/jdis_import.csproj.CoreCompileInputs.cache b/obj/Debug/net6.0/jdis_import.csproj.CoreCompileInputs.cache
index c4141e1..9c11a34 100644
--- a/obj/Debug/net6.0/jdis_import.csproj.CoreCompileInputs.cache
+++ b/obj/Debug/net6.0/jdis_import.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-64a94084883e29b033b4d6beb74f0c016eb327ed
+94c50df1582a0e3620abccdf5d1a9c8226fb4d34
diff --git a/obj/Debug/net6.0/jdis_import.csproj.FileListAbsolute.txt b/obj/Debug/net6.0/jdis_import.csproj.FileListAbsolute.txt
index 813b5e1..ec6a29b 100644
--- a/obj/Debug/net6.0/jdis_import.csproj.FileListAbsolute.txt
+++ b/obj/Debug/net6.0/jdis_import.csproj.FileListAbsolute.txt
@@ -19,3 +19,13 @@
/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/Debug/net6.0/System.Net.Http.Formatting.dll
/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/Debug/net6.0/Newtonsoft.Json.Bson.dll
/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/Debug/net6.0/RestSharp.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/Debug/net6.0/Microsoft.Identity.Client.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/Debug/net6.0/Microsoft.Exchange.WebServices.Auth.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/Debug/net6.0/Microsoft.Exchange.WebServices.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/Debug/net6.0/System.Data.SqlClient.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll
diff --git a/obj/Debug/net6.0/jdis_import.dll b/obj/Debug/net6.0/jdis_import.dll
index 5fc2ab1..05e05d8 100644
Binary files a/obj/Debug/net6.0/jdis_import.dll and b/obj/Debug/net6.0/jdis_import.dll differ
diff --git a/obj/Debug/net6.0/jdis_import.pdb b/obj/Debug/net6.0/jdis_import.pdb
index 4892d92..92144d3 100644
Binary files a/obj/Debug/net6.0/jdis_import.pdb and b/obj/Debug/net6.0/jdis_import.pdb differ
diff --git a/obj/Debug/net6.0/ref/jdis_import.dll b/obj/Debug/net6.0/ref/jdis_import.dll
index b8111e0..8d23e00 100644
Binary files a/obj/Debug/net6.0/ref/jdis_import.dll and b/obj/Debug/net6.0/ref/jdis_import.dll differ
diff --git a/obj/Debug/net6.0/refint/jdis_import.dll b/obj/Debug/net6.0/refint/jdis_import.dll
index b8111e0..8d23e00 100644
Binary files a/obj/Debug/net6.0/refint/jdis_import.dll and b/obj/Debug/net6.0/refint/jdis_import.dll differ
diff --git a/obj/jdis_import.csproj.nuget.dgspec.json b/obj/jdis_import.csproj.nuget.dgspec.json
index e497eb7..94b8188 100644
--- a/obj/jdis_import.csproj.nuget.dgspec.json
+++ b/obj/jdis_import.csproj.nuget.dgspec.json
@@ -49,6 +49,14 @@
"target": "Package",
"version": "[5.2.9, )"
},
+ "Microsoft.Exchange.WebServices": {
+ "target": "Package",
+ "version": "[2.2.0, )"
+ },
+ "Microsoft.Identity.Client": {
+ "target": "Package",
+ "version": "[4.49.1, )"
+ },
"Newtonsoft.Json": {
"target": "Package",
"version": "[13.0.1, )"
@@ -56,6 +64,10 @@
"RestSharp": {
"target": "Package",
"version": "[108.0.2, )"
+ },
+ "System.Data.SqlClient": {
+ "target": "Package",
+ "version": "[4.8.5, )"
}
},
"imports": [
diff --git a/obj/project.assets.json b/obj/project.assets.json
index 054f9a9..aaf74d6 100644
--- a/obj/project.assets.json
+++ b/obj/project.assets.json
@@ -24,7 +24,39 @@
"lib/netstandard2.0/System.Net.Http.Formatting.dll": {}
}
},
- "Microsoft.NETCore.Platforms/1.1.0": {
+ "Microsoft.Exchange.WebServices/2.2.0": {
+ "type": "package",
+ "compile": {
+ "lib/40/Microsoft.Exchange.WebServices.Auth.dll": {},
+ "lib/40/Microsoft.Exchange.WebServices.dll": {}
+ },
+ "runtime": {
+ "lib/40/Microsoft.Exchange.WebServices.Auth.dll": {},
+ "lib/40/Microsoft.Exchange.WebServices.dll": {}
+ }
+ },
+ "Microsoft.Identity.Client/4.49.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "6.22.0"
+ },
+ "compile": {
+ "lib/net6.0/Microsoft.Identity.Client.dll": {}
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.Identity.Client.dll": {}
+ }
+ },
+ "Microsoft.IdentityModel.Abstractions/6.22.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -53,6 +85,29 @@
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
+ "Microsoft.Win32.Registry/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.AccessControl": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
"NETStandard.Library/1.6.1": {
"type": "package",
"dependencies": {
@@ -173,6 +228,14 @@
"lib/netstandard1.0/_._": {}
}
},
+ "runtime.native.System.Data.SqlClient.sni/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
+ }
+ },
"runtime.native.System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
@@ -304,6 +367,33 @@
}
}
},
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/win-arm64/native/sni.dll": {
+ "assetType": "native",
+ "rid": "win-arm64"
+ }
+ }
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/win-x64/native/sni.dll": {
+ "assetType": "native",
+ "rid": "win-x64"
+ }
+ }
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/win-x86/native/sni.dll": {
+ "assetType": "native",
+ "rid": "win-x86"
+ }
+ }
+ },
"System.AppContext/4.3.0": {
"type": "package",
"dependencies": {
@@ -377,6 +467,30 @@
"ref/netstandard1.3/System.Console.dll": {}
}
},
+ "System.Data.SqlClient/4.8.5": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Win32.Registry": "4.7.0",
+ "System.Security.Principal.Windows": "4.7.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.7.0"
+ },
+ "compile": {
+ "ref/netcoreapp2.1/System.Data.SqlClient.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/System.Data.SqlClient.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
"System.Diagnostics.Debug/4.3.0": {
"type": "package",
"dependencies": {
@@ -893,6 +1007,25 @@
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
}
},
+ "System.Security.AccessControl/4.7.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "3.1.0",
+ "System.Security.Principal.Windows": "4.7.0"
+ },
+ "compile": {
+ "ref/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.AccessControl.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
"System.Security.Cryptography.Algorithms/4.3.0": {
"type": "package",
"dependencies": {
@@ -1110,6 +1243,25 @@
}
}
},
+ "System.Security.Principal.Windows/4.7.0": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp3.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
"System.Text.Encoding/4.3.0": {
"type": "package",
"dependencies": {
@@ -13244,19 +13396,98 @@
"microsoft.aspnet.webapi.client.nuspec"
]
},
- "Microsoft.NETCore.Platforms/1.1.0": {
- "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
+ "Microsoft.Exchange.WebServices/2.2.0": {
+ "sha512": "NlkaTD0uWtg9VbiWq0VDWMBPzHFknH3tmstrxt0acrT09LBGqATTjRpsGOODz6tUdX7/dehBinxsf75U5Uw/+A==",
"type": "package",
- "path": "microsoft.netcore.platforms/1.1.0",
+ "path": "microsoft.exchange.webservices/2.2.0",
"files": [
".nupkg.metadata",
".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
+ "doc/License Terms.rtf",
+ "doc/README.htm",
+ "doc/Redist.txt",
+ "lib/40/Microsoft.Exchange.WebServices.Auth.dll",
+ "lib/40/Microsoft.Exchange.WebServices.Auth.pdb",
+ "lib/40/Microsoft.Exchange.WebServices.Auth.xml",
+ "lib/40/Microsoft.Exchange.WebServices.dll",
+ "lib/40/Microsoft.Exchange.WebServices.pdb",
+ "lib/40/Microsoft.Exchange.WebServices.xml",
+ "microsoft.exchange.webservices.2.2.0.nupkg.sha512",
+ "microsoft.exchange.webservices.nuspec"
+ ]
+ },
+ "Microsoft.Identity.Client/4.49.1": {
+ "sha512": "vDU3cdXIom4+pxJk8sDJcHYTHPhb6DSVF9zjFY61SoQVs1OxbHZY9+mBnq1gGkG7N/o04WTt42IdV/0gf1+5DA==",
+ "type": "package",
+ "path": "microsoft.identity.client/4.49.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
+ "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
+ "lib/monoandroid90/Microsoft.Identity.Client.dll",
+ "lib/monoandroid90/Microsoft.Identity.Client.xml",
+ "lib/net45/Microsoft.Identity.Client.dll",
+ "lib/net45/Microsoft.Identity.Client.xml",
+ "lib/net461/Microsoft.Identity.Client.dll",
+ "lib/net461/Microsoft.Identity.Client.xml",
+ "lib/net6.0-android31.0/Microsoft.Identity.Client.dll",
+ "lib/net6.0-android31.0/Microsoft.Identity.Client.xml",
+ "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll",
+ "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml",
+ "lib/net6.0-windows10.0.17763/Microsoft.Identity.Client.dll",
+ "lib/net6.0-windows10.0.17763/Microsoft.Identity.Client.xml",
+ "lib/net6.0/Microsoft.Identity.Client.dll",
+ "lib/net6.0/Microsoft.Identity.Client.xml",
+ "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
+ "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
+ "lib/netstandard2.0/Microsoft.Identity.Client.dll",
+ "lib/netstandard2.0/Microsoft.Identity.Client.xml",
+ "lib/uap10.0.17763/Microsoft.Identity.Client.dll",
+ "lib/uap10.0.17763/Microsoft.Identity.Client.pri",
+ "lib/uap10.0.17763/Microsoft.Identity.Client.xml",
+ "lib/xamarinios10/Microsoft.Identity.Client.dll",
+ "lib/xamarinios10/Microsoft.Identity.Client.xml",
+ "microsoft.identity.client.4.49.1.nupkg.sha512",
+ "microsoft.identity.client.nuspec"
+ ]
+ },
+ "Microsoft.IdentityModel.Abstractions/6.22.0": {
+ "sha512": "iI+9V+2ciCrbheeLjpmjcqCnhy+r6yCoEcid3nkoFWerHgjVuT6CPM4HODUTtUPe1uwks4wcnAujJ8u+IKogHQ==",
+ "type": "package",
+ "path": "microsoft.identitymodel.abstractions/6.22.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net45/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
+ "microsoft.identitymodel.abstractions.6.22.0.nupkg.sha512",
+ "microsoft.identitymodel.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/3.1.0": {
+ "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/3.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
"lib/netstandard1.0/_._",
- "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
"microsoft.netcore.platforms.nuspec",
- "runtime.json"
+ "runtime.json",
+ "useSharedDesignerContext.txt",
+ "version.txt"
]
},
"Microsoft.NETCore.Targets/1.1.0": {
@@ -13312,6 +13543,53 @@
"ref/xamarinwatchos10/_._"
]
},
+ "Microsoft.Win32.Registry/4.7.0": {
+ "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
+ "type": "package",
+ "path": "microsoft.win32.registry/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/Microsoft.Win32.Registry.dll",
+ "lib/net461/Microsoft.Win32.Registry.dll",
+ "lib/net461/Microsoft.Win32.Registry.xml",
+ "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "microsoft.win32.registry.4.7.0.nupkg.sha512",
+ "microsoft.win32.registry.nuspec",
+ "ref/net46/Microsoft.Win32.Registry.dll",
+ "ref/net461/Microsoft.Win32.Registry.dll",
+ "ref/net461/Microsoft.Win32.Registry.xml",
+ "ref/net472/Microsoft.Win32.Registry.dll",
+ "ref/net472/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
+ "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
+ "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
+ "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
+ "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
"NETStandard.Library/1.6.1": {
"sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
"type": "package",
@@ -13441,6 +13719,21 @@
"runtime.native.system.nuspec"
]
},
+ "runtime.native.System.Data.SqlClient.sni/4.7.0": {
+ "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
+ "type": "package",
+ "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
+ "runtime.native.system.data.sqlclient.sni.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
"runtime.native.System.IO.Compression/4.3.0": {
"sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
"type": "package",
@@ -13609,6 +13902,54 @@
"runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
+ "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
+ "type": "package",
+ "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
+ "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
+ "runtimes/win-arm64/native/sni.dll",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
+ "type": "package",
+ "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
+ "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
+ "runtimes/win-x64/native/sni.dll",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
+ "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
+ "type": "package",
+ "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
+ "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
+ "runtimes/win-x86/native/sni.dll",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
"System.AppContext/4.3.0": {
"sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
"type": "package",
@@ -13853,6 +14194,92 @@
"system.console.nuspec"
]
},
+ "System.Data.SqlClient/4.8.5": {
+ "sha512": "fRqxut4lrndPHrXD+ht1XRmCL3obuKldm4XjCRYS9p5f7FSR7shBxAwTkDrpFMsHC9BhNgjjmUtiIjvehn5zkg==",
+ "type": "package",
+ "path": "system.data.sqlclient/4.8.5",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net451/System.Data.SqlClient.dll",
+ "lib/net46/System.Data.SqlClient.dll",
+ "lib/net461/System.Data.SqlClient.dll",
+ "lib/net461/System.Data.SqlClient.xml",
+ "lib/netcoreapp2.1/System.Data.SqlClient.dll",
+ "lib/netcoreapp2.1/System.Data.SqlClient.xml",
+ "lib/netstandard1.2/System.Data.SqlClient.dll",
+ "lib/netstandard1.2/System.Data.SqlClient.xml",
+ "lib/netstandard1.3/System.Data.SqlClient.dll",
+ "lib/netstandard1.3/System.Data.SqlClient.xml",
+ "lib/netstandard2.0/System.Data.SqlClient.dll",
+ "lib/netstandard2.0/System.Data.SqlClient.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net451/System.Data.SqlClient.dll",
+ "ref/net46/System.Data.SqlClient.dll",
+ "ref/net461/System.Data.SqlClient.dll",
+ "ref/net461/System.Data.SqlClient.xml",
+ "ref/netcoreapp2.1/System.Data.SqlClient.dll",
+ "ref/netcoreapp2.1/System.Data.SqlClient.xml",
+ "ref/netstandard1.2/System.Data.SqlClient.dll",
+ "ref/netstandard1.2/System.Data.SqlClient.xml",
+ "ref/netstandard1.2/de/System.Data.SqlClient.xml",
+ "ref/netstandard1.2/es/System.Data.SqlClient.xml",
+ "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
+ "ref/netstandard1.2/it/System.Data.SqlClient.xml",
+ "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
+ "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
+ "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
+ "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
+ "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
+ "ref/netstandard1.3/System.Data.SqlClient.dll",
+ "ref/netstandard1.3/System.Data.SqlClient.xml",
+ "ref/netstandard1.3/de/System.Data.SqlClient.xml",
+ "ref/netstandard1.3/es/System.Data.SqlClient.xml",
+ "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
+ "ref/netstandard1.3/it/System.Data.SqlClient.xml",
+ "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
+ "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
+ "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
+ "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
+ "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
+ "ref/netstandard2.0/System.Data.SqlClient.dll",
+ "ref/netstandard2.0/System.Data.SqlClient.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll",
+ "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml",
+ "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
+ "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
+ "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml",
+ "runtimes/win/lib/net451/System.Data.SqlClient.dll",
+ "runtimes/win/lib/net46/System.Data.SqlClient.dll",
+ "runtimes/win/lib/net461/System.Data.SqlClient.dll",
+ "runtimes/win/lib/net461/System.Data.SqlClient.xml",
+ "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll",
+ "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml",
+ "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
+ "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
+ "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml",
+ "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll",
+ "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml",
+ "system.data.sqlclient.4.8.5.nupkg.sha512",
+ "system.data.sqlclient.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
"System.Diagnostics.Debug/4.3.0": {
"sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"type": "package",
@@ -15757,6 +16184,52 @@
"system.runtime.numerics.nuspec"
]
},
+ "System.Security.AccessControl/4.7.0": {
+ "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
+ "type": "package",
+ "path": "system.security.accesscontrol/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/System.Security.AccessControl.dll",
+ "lib/net461/System.Security.AccessControl.dll",
+ "lib/net461/System.Security.AccessControl.xml",
+ "lib/netstandard1.3/System.Security.AccessControl.dll",
+ "lib/netstandard2.0/System.Security.AccessControl.dll",
+ "lib/netstandard2.0/System.Security.AccessControl.xml",
+ "lib/uap10.0.16299/_._",
+ "ref/net46/System.Security.AccessControl.dll",
+ "ref/net461/System.Security.AccessControl.dll",
+ "ref/net461/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/System.Security.AccessControl.dll",
+ "ref/netstandard1.3/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/de/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/es/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/it/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
+ "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
+ "ref/netstandard2.0/System.Security.AccessControl.dll",
+ "ref/netstandard2.0/System.Security.AccessControl.xml",
+ "ref/uap10.0.16299/_._",
+ "runtimes/win/lib/net46/System.Security.AccessControl.dll",
+ "runtimes/win/lib/net461/System.Security.AccessControl.dll",
+ "runtimes/win/lib/net461/System.Security.AccessControl.xml",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
+ "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
+ "runtimes/win/lib/uap10.0.16299/_._",
+ "system.security.accesscontrol.4.7.0.nupkg.sha512",
+ "system.security.accesscontrol.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
"System.Security.Cryptography.Algorithms/4.3.0": {
"sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
"type": "package",
@@ -16000,6 +16473,60 @@
"system.security.cryptography.x509certificates.nuspec"
]
},
+ "System.Security.Principal.Windows/4.7.0": {
+ "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
+ "type": "package",
+ "path": "system.security.principal.windows/4.7.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net46/System.Security.Principal.Windows.dll",
+ "lib/net461/System.Security.Principal.Windows.dll",
+ "lib/net461/System.Security.Principal.Windows.xml",
+ "lib/netstandard1.3/System.Security.Principal.Windows.dll",
+ "lib/netstandard2.0/System.Security.Principal.Windows.dll",
+ "lib/netstandard2.0/System.Security.Principal.Windows.xml",
+ "lib/uap10.0.16299/_._",
+ "ref/net46/System.Security.Principal.Windows.dll",
+ "ref/net461/System.Security.Principal.Windows.dll",
+ "ref/net461/System.Security.Principal.Windows.xml",
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
+ "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/System.Security.Principal.Windows.dll",
+ "ref/netstandard1.3/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
+ "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
+ "ref/netstandard2.0/System.Security.Principal.Windows.dll",
+ "ref/netstandard2.0/System.Security.Principal.Windows.xml",
+ "ref/uap10.0.16299/_._",
+ "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
+ "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
+ "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
+ "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
+ "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
+ "runtimes/win/lib/uap10.0.16299/_._",
+ "system.security.principal.windows.4.7.0.nupkg.sha512",
+ "system.security.principal.windows.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
"System.Text.Encoding/4.3.0": {
"sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"type": "package",
@@ -16578,8 +17105,11 @@
"net6.0": [
"Independentsoft.Exchange >= 3.0.700",
"Microsoft.AspNet.WebApi.Client >= 5.2.9",
+ "Microsoft.Exchange.WebServices >= 2.2.0",
+ "Microsoft.Identity.Client >= 4.49.1",
"Newtonsoft.Json >= 13.0.1",
- "RestSharp >= 108.0.2"
+ "RestSharp >= 108.0.2",
+ "System.Data.SqlClient >= 4.8.5"
]
},
"packageFolders": {
@@ -16631,6 +17161,14 @@
"target": "Package",
"version": "[5.2.9, )"
},
+ "Microsoft.Exchange.WebServices": {
+ "target": "Package",
+ "version": "[2.2.0, )"
+ },
+ "Microsoft.Identity.Client": {
+ "target": "Package",
+ "version": "[4.49.1, )"
+ },
"Newtonsoft.Json": {
"target": "Package",
"version": "[13.0.1, )"
@@ -16638,6 +17176,10 @@
"RestSharp": {
"target": "Package",
"version": "[108.0.2, )"
+ },
+ "System.Data.SqlClient": {
+ "target": "Package",
+ "version": "[4.8.5, )"
}
},
"imports": [
@@ -16658,5 +17200,17 @@
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/6.0.202/RuntimeIdentifierGraph.json"
}
}
- }
+ },
+ "logs": [
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'Microsoft.Exchange.WebServices 2.2.0' 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 'net6.0'. This package may not be fully compatible with your project.",
+ "libraryId": "Microsoft.Exchange.WebServices",
+ "targetGraphs": [
+ "net6.0"
+ ]
+ }
+ ]
}
\ No newline at end of file
diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache
index db1e39f..5160f32 100644
--- a/obj/project.nuget.cache
+++ b/obj/project.nuget.cache
@@ -1,14 +1,18 @@
{
"version": 2,
- "dgSpecHash": "csqDwayzimzpd4E9InNGgTrYxqE8SoVlATYAgtNwlBKnX9VV2wL79LAlQ7odcd0Du9G9NkpCDL003ZgQCDoWOw==",
+ "dgSpecHash": "yCEDNUYW3S+NPVUitZgCq0Zzd2salgusOl/uboaSGXrcbUqnihPgluMO8u5X7reQ2j28Rm9HNSzDTOWKDbVJ8Q==",
"success": true,
"projectFilePath": "/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/jdis_import.csproj",
"expectedPackageFiles": [
"/Users/michielcarman/.nuget/packages/independentsoft.exchange/3.0.700/independentsoft.exchange.3.0.700.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/microsoft.aspnet.webapi.client/5.2.9/microsoft.aspnet.webapi.client.5.2.9.nupkg.sha512",
- "/Users/michielcarman/.nuget/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "/Users/michielcarman/.nuget/packages/microsoft.exchange.webservices/2.2.0/microsoft.exchange.webservices.2.2.0.nupkg.sha512",
+ "/Users/michielcarman/.nuget/packages/microsoft.identity.client/4.49.1/microsoft.identity.client.4.49.1.nupkg.sha512",
+ "/Users/michielcarman/.nuget/packages/microsoft.identitymodel.abstractions/6.22.0/microsoft.identitymodel.abstractions.6.22.0.nupkg.sha512",
+ "/Users/michielcarman/.nuget/packages/microsoft.netcore.platforms/3.1.0/microsoft.netcore.platforms.3.1.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg.sha512",
+ "/Users/michielcarman/.nuget/packages/microsoft.win32.registry/4.7.0/microsoft.win32.registry.4.7.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/newtonsoft.json.bson/1.0.1/newtonsoft.json.bson.1.0.1.nupkg.sha512",
@@ -17,6 +21,7 @@
"/Users/michielcarman/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512",
+ "/Users/michielcarman/.nuget/packages/runtime.native.system.data.sqlclient.sni/4.7.0/runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
@@ -29,11 +34,15 @@
"/Users/michielcarman/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "/Users/michielcarman/.nuget/packages/runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
+ "/Users/michielcarman/.nuget/packages/runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
+ "/Users/michielcarman/.nuget/packages/runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0/runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.buffers/4.3.0/system.buffers.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.console/4.3.0/system.console.4.3.0.nupkg.sha512",
+ "/Users/michielcarman/.nuget/packages/system.data.sqlclient/4.8.5/system.data.sqlclient.4.8.5.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.diagnostics.diagnosticsource/4.3.0/system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg.sha512",
@@ -66,6 +75,7 @@
"/Users/michielcarman/.nuget/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg.sha512",
+ "/Users/michielcarman/.nuget/packages/system.security.accesscontrol/4.7.0/system.security.accesscontrol.4.7.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg.sha512",
@@ -73,6 +83,7 @@
"/Users/michielcarman/.nuget/packages/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
+ "/Users/michielcarman/.nuget/packages/system.security.principal.windows/4.7.0/system.security.principal.windows.4.7.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg.sha512",
@@ -83,5 +94,16 @@
"/Users/michielcarman/.nuget/packages/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg.sha512",
"/Users/michielcarman/.nuget/packages/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg.sha512"
],
- "logs": []
+ "logs": [
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'Microsoft.Exchange.WebServices 2.2.0' 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 'net6.0'. This package may not be fully compatible with your project.",
+ "libraryId": "Microsoft.Exchange.WebServices",
+ "targetGraphs": [
+ "net6.0"
+ ]
+ }
+ ]
}
\ No newline at end of file
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/release/net6.0/ubuntu.20.04-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..f795be5
--- /dev/null
+++ b/obj/release/net6.0/ubuntu.20.04-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/PublishOutputs.2eb90d0424.txt b/obj/release/net6.0/ubuntu.20.04-x64/PublishOutputs.2eb90d0424.txt
new file mode 100644
index 0000000..8b73e8e
--- /dev/null
+++ b/obj/release/net6.0/ubuntu.20.04-x64/PublishOutputs.2eb90d0424.txt
@@ -0,0 +1,194 @@
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/Independentsoft.Exchange.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.deps.json
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.runtimeconfig.json
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/jdis_import.pdb
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.CSharp.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.VisualBasic.Core.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.VisualBasic.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Win32.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Win32.Registry.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.AppContext.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Buffers.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.Concurrent.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.Immutable.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.NonGeneric.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.Specialized.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Collections.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.Annotations.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.DataAnnotations.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.EventBasedAsync.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.TypeConverter.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ComponentModel.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Configuration.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Console.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Core.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.Common.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.DataSetExtensions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Contracts.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Debug.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.DiagnosticSource.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.FileVersionInfo.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Process.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.StackTrace.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.TextWriterTraceListener.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Tools.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.TraceSource.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Diagnostics.Tracing.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Drawing.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Drawing.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Dynamic.Runtime.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Formats.Asn1.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Globalization.Calendars.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Globalization.Extensions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Globalization.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.Brotli.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.FileSystem.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.ZipFile.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Compression.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.AccessControl.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.DriveInfo.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.Watcher.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.FileSystem.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.IsolatedStorage.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.MemoryMappedFiles.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Pipes.AccessControl.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.Pipes.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.UnmanagedMemoryStream.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.IO.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.Expressions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.Parallel.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.Queryable.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Linq.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Memory.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Http.Json.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Http.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.HttpListener.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Mail.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.NameResolution.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.NetworkInformation.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Ping.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Quic.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Requests.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Security.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.ServicePoint.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Sockets.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebClient.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebHeaderCollection.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebProxy.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebSockets.Client.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.WebSockets.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Numerics.Vectors.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Numerics.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ObjectModel.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.CoreLib.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.DataContractSerialization.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.Uri.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.Xml.Linq.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Private.Xml.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.DispatchProxy.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Emit.ILGeneration.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Emit.Lightweight.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Emit.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Extensions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Metadata.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.TypeExtensions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Reflection.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Resources.Reader.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Resources.ResourceManager.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Resources.Writer.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.CompilerServices.Unsafe.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.CompilerServices.VisualC.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Extensions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Handles.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.InteropServices.RuntimeInformation.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.InteropServices.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Intrinsics.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Loader.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Numerics.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Formatters.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Json.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.Xml.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.Serialization.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Runtime.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.AccessControl.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Claims.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Algorithms.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Cng.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Csp.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Encoding.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.OpenSsl.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Cryptography.X509Certificates.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Principal.Windows.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.Principal.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.SecureString.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Security.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ServiceModel.Web.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ServiceProcess.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encoding.CodePages.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encoding.Extensions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encoding.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Encodings.Web.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.Json.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Text.RegularExpressions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Channels.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Overlapped.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.Dataflow.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.Extensions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.Parallel.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Tasks.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Thread.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.ThreadPool.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.Timer.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Threading.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Transactions.Local.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Transactions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.ValueTuple.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Web.HttpUtility.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Web.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Windows.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.Linq.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.ReaderWriter.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.Serialization.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XDocument.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XPath.XDocument.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XPath.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XmlDocument.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.XmlSerializer.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Xml.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/WindowsBase.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/mscorlib.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/netstandard.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/createdump
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Globalization.Native.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.IO.Compression.Native.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Native.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Net.Security.Native.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/libSystem.Security.Cryptography.Native.OpenSsl.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/libclrjit.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/libcoreclr.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/libcoreclrtraceptprovider.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/libdbgshim.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/libhostfxr.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/libhostpolicy.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/libmscordaccore.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/libmscordbi.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Net.Http.Formatting.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Exchange.WebServices.Auth.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Exchange.WebServices.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.Identity.Client.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/Microsoft.IdentityModel.Abstractions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/Newtonsoft.Json.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/Newtonsoft.Json.Bson.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/RestSharp.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/publish/System.Data.SqlClient.dll
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/apphost b/obj/release/net6.0/ubuntu.20.04-x64/apphost
new file mode 100644
index 0000000..b28be78
Binary files /dev/null and b/obj/release/net6.0/ubuntu.20.04-x64/apphost differ
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.AssemblyInfo.cs b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.AssemblyInfo.cs
new file mode 100644
index 0000000..ab07407
--- /dev/null
+++ b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("jdis_import")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("jdis_import")]
+[assembly: System.Reflection.AssemblyTitleAttribute("jdis_import")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.AssemblyInfoInputs.cache b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..d2362c0
--- /dev/null
+++ b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+0a56fbe6246c4c6c9f6d28794398deb24ab7d084
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.GeneratedMSBuildEditorConfig.editorconfig b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..0c5632b
--- /dev/null
+++ b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,10 @@
+is_global = true
+build_property.TargetFramework = net6.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = jdis_import
+build_property.ProjectDir = /Volumes/New2TBDrive/apps/acumatica/console/jdis_import/
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.assets.cache b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.assets.cache
new file mode 100644
index 0000000..8c31c63
Binary files /dev/null and b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.assets.cache differ
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.csproj.AssemblyReference.cache b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..72675e0
Binary files /dev/null and b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.csproj.AssemblyReference.cache differ
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.csproj.CopyComplete b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.csproj.CopyComplete
new file mode 100644
index 0000000..e69de29
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.csproj.CoreCompileInputs.cache b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..f09d0d9
--- /dev/null
+++ b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+ce174b79bc6968fecb687ef8aa7c43ef18e29c73
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.csproj.FileListAbsolute.txt b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..79c52a2
--- /dev/null
+++ b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.csproj.FileListAbsolute.txt
@@ -0,0 +1,205 @@
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/jdis_import
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/Independentsoft.Exchange.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.deps.json
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.runtimeconfig.json
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/jdis_import.pdb
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Http.Formatting.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Exchange.WebServices.Auth.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Exchange.WebServices.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Identity.Client.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.IdentityModel.Abstractions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/Newtonsoft.Json.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/Newtonsoft.Json.Bson.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/RestSharp.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Data.SqlClient.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.CSharp.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.VisualBasic.Core.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.VisualBasic.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Win32.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/Microsoft.Win32.Registry.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.AppContext.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Buffers.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.Concurrent.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.Immutable.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.NonGeneric.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.Specialized.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Collections.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.Annotations.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.DataAnnotations.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.EventBasedAsync.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.TypeConverter.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.ComponentModel.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Configuration.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Console.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Core.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Data.Common.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Data.DataSetExtensions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Data.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Contracts.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Debug.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.DiagnosticSource.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.FileVersionInfo.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Process.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.StackTrace.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.TextWriterTraceListener.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Tools.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.TraceSource.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Diagnostics.Tracing.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Drawing.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Drawing.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Dynamic.Runtime.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Formats.Asn1.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Globalization.Calendars.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Globalization.Extensions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Globalization.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.Brotli.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.FileSystem.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.ZipFile.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Compression.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.AccessControl.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.DriveInfo.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.Watcher.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.IO.FileSystem.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.IO.IsolatedStorage.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.IO.MemoryMappedFiles.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Pipes.AccessControl.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.IO.Pipes.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.IO.UnmanagedMemoryStream.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.IO.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.Expressions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.Parallel.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.Queryable.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Linq.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Memory.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Http.Json.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Http.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.HttpListener.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Mail.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.NameResolution.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.NetworkInformation.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Ping.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Quic.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Requests.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Security.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.ServicePoint.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.Sockets.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebClient.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebHeaderCollection.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebProxy.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebSockets.Client.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.WebSockets.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Net.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Numerics.Vectors.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Numerics.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.ObjectModel.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Private.CoreLib.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Private.DataContractSerialization.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Private.Uri.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Private.Xml.Linq.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Private.Xml.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.DispatchProxy.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Emit.ILGeneration.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Emit.Lightweight.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Emit.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Extensions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Metadata.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.TypeExtensions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Reflection.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Resources.Reader.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Resources.ResourceManager.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Resources.Writer.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.CompilerServices.Unsafe.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.CompilerServices.VisualC.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Extensions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Handles.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.InteropServices.RuntimeInformation.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.InteropServices.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Intrinsics.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Loader.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Numerics.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Formatters.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Json.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.Xml.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.Serialization.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Runtime.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Security.AccessControl.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Claims.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Algorithms.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Cng.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Csp.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Encoding.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.OpenSsl.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.Primitives.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Cryptography.X509Certificates.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Principal.Windows.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Security.Principal.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Security.SecureString.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Security.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.ServiceModel.Web.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.ServiceProcess.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encoding.CodePages.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encoding.Extensions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encoding.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Encodings.Web.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Text.Json.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Text.RegularExpressions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Channels.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Overlapped.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.Dataflow.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.Extensions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.Parallel.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Tasks.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Thread.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.ThreadPool.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.Timer.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Threading.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Transactions.Local.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Transactions.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.ValueTuple.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Web.HttpUtility.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Web.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Windows.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.Linq.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.ReaderWriter.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.Serialization.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XDocument.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XPath.XDocument.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XPath.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XmlDocument.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.XmlSerializer.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.Xml.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/System.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/WindowsBase.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/mscorlib.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/netstandard.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/createdump
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Globalization.Native.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/libSystem.IO.Compression.Native.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Native.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Net.Security.Native.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/libSystem.Security.Cryptography.Native.OpenSsl.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/libclrjit.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/libcoreclr.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/libcoreclrtraceptprovider.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/libdbgshim.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/libhostfxr.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/libhostpolicy.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/libmscordaccore.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/bin/release/net6.0/ubuntu.20.04-x64/libmscordbi.so
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.csproj.AssemblyReference.cache
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.GeneratedMSBuildEditorConfig.editorconfig
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.AssemblyInfoInputs.cache
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.AssemblyInfo.cs
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.csproj.CoreCompileInputs.cache
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.csproj.CopyComplete
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/obj/release/net6.0/ubuntu.20.04-x64/refint/jdis_import.dll
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.pdb
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.genruntimeconfig.cache
+/Volumes/New2TBDrive/apps/acumatica/console/jdis_import/obj/release/net6.0/ubuntu.20.04-x64/ref/jdis_import.dll
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.dll b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.dll
new file mode 100644
index 0000000..2c31171
Binary files /dev/null and b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.dll differ
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.genruntimeconfig.cache b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.genruntimeconfig.cache
new file mode 100644
index 0000000..a47eaa7
--- /dev/null
+++ b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.genruntimeconfig.cache
@@ -0,0 +1 @@
+1e6a84486224aee46b80a263e0e0dcca1404e530
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.pdb b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.pdb
new file mode 100644
index 0000000..e8f0732
Binary files /dev/null and b/obj/release/net6.0/ubuntu.20.04-x64/jdis_import.pdb differ
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/ref/jdis_import.dll b/obj/release/net6.0/ubuntu.20.04-x64/ref/jdis_import.dll
new file mode 100644
index 0000000..7d01225
Binary files /dev/null and b/obj/release/net6.0/ubuntu.20.04-x64/ref/jdis_import.dll differ
diff --git a/obj/release/net6.0/ubuntu.20.04-x64/refint/jdis_import.dll b/obj/release/net6.0/ubuntu.20.04-x64/refint/jdis_import.dll
new file mode 100644
index 0000000..7d01225
Binary files /dev/null and b/obj/release/net6.0/ubuntu.20.04-x64/refint/jdis_import.dll differ