| @@ -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/importer.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" | |||
| } | |||
| ] | |||
| } | |||
| "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/importer.dll", | |||
| "args": ["foley", "michielcarman"], | |||
| "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" | |||
| } | |||
| ] | |||
| } | |||
| @@ -17,6 +17,8 @@ namespace importer | |||
| { | |||
| if (Program.Args[0] == "brandt") | |||
| return JDISImport.ServiceUrl; | |||
| else if (Program.Args[0] == "foley") | |||
| return PDAImport.ServiceUrl; | |||
| else return string.Empty; | |||
| } | |||
| } | |||
| @@ -0,0 +1,104 @@ | |||
| using System; | |||
| using System.Text; | |||
| using System.Linq; | |||
| using System.Collections.Generic; | |||
| using importer.RestObjects; | |||
| using importer.ImportObjects; | |||
| using System.IO; | |||
| using ExcelDataReader; | |||
| using System.Data; | |||
| namespace importer | |||
| { | |||
| public class PDAImport | |||
| { | |||
| private static string _serviceUrl; | |||
| private static RESTService _rservice; | |||
| private static List<Customer> _customers; | |||
| private static List<Make> _makes; | |||
| private static List<Product> _products; | |||
| private static List<Model> _models; | |||
| private static List<InspectionType> _inspectionTypes; | |||
| private static List<Template> _templates; | |||
| private static List<User> _users; | |||
| private static Status _status; | |||
| private static Priority _priority; | |||
| private static Reason _reason; | |||
| public static string ServiceUrl { get { return _serviceUrl; } set { _serviceUrl = value; } } | |||
| public static Dictionary<string, int> InspectionType; | |||
| public static DataTable ReadFile() | |||
| { | |||
| string filePath = Path.Combine(Global.StorageDir, "PDAFILE.XLS"); | |||
| System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance); | |||
| using (var stream = File.Open(filePath, FileMode.Open, FileAccess.Read)) | |||
| { | |||
| IExcelDataReader reader; | |||
| if (Path.GetExtension(filePath).ToUpper() == ".XLS") | |||
| { | |||
| //1.1 Reading from a binary Excel file ('97-2003 format; *.xls) | |||
| reader = ExcelReaderFactory.CreateBinaryReader(stream); | |||
| } | |||
| else | |||
| { | |||
| //1.2 Reading from a OpenXml Excel file (2007 format; *.xlsx) | |||
| reader = ExcelReaderFactory.CreateOpenXmlReader(stream); | |||
| } | |||
| //reader = ExcelDataReader.ExcelReaderFactory.CreateReader(stream); | |||
| var conf = new ExcelDataSetConfiguration | |||
| { | |||
| ConfigureDataTable = _ => new ExcelDataTableConfiguration | |||
| { | |||
| UseHeaderRow = true | |||
| } | |||
| }; | |||
| var dataSet = reader.AsDataSet(conf); | |||
| return dataSet.Tables[0]; | |||
| } | |||
| } | |||
| //Test Comment | |||
| public static List<string> DistinctWorkOrders(DataTable data) | |||
| { | |||
| List<string> list = new List<string>(); | |||
| var info = (from row in data.AsEnumerable() | |||
| where (row.Field<string>("Segment Number") == "02" || | |||
| row.Field<string>("Segment Number") == "03") && | |||
| !string.IsNullOrEmpty(row.Field<string>("Service Tech")) | |||
| select row.Field<string>("DBS Workorder Number")).Distinct(); | |||
| list.AddRange(info); | |||
| return list; | |||
| } | |||
| public static void BuildDefaults() | |||
| { | |||
| if (Global.Settings.Remote) | |||
| _serviceUrl = Global.Settings.Prelub.RemoteService; | |||
| else _serviceUrl = Global.Settings.Prelub.LocalService; | |||
| _rservice = new RESTService(); | |||
| _customers = _rservice.RestGet<Customer>("customers.svc"); | |||
| _makes = _rservice.RestGet<Make>("makes.svc"); | |||
| _products = _rservice.RestGet<Product>("products.svc"); | |||
| _models = _rservice.RestGet<Model>("models.svc"); | |||
| _inspectionTypes = _rservice.RestGet<InspectionType>("inspectionTypes.svc"); | |||
| _templates = _rservice.RestGet<Template>("templates.svc"); | |||
| _users = _rservice.RestGet<User>("users.svc"); | |||
| _status = new Status(); | |||
| _status.ID = 1; | |||
| _status.Name = "Open"; | |||
| _priority = new Priority(); | |||
| _priority.ID = 3; | |||
| _priority.Name = "Medium"; | |||
| _reason = new Reason(); | |||
| _reason.ID = 9; | |||
| _reason.Name = "Cust. Request"; | |||
| _reason.IsActive = true; | |||
| _reason.CreateDate = new DateTime(2013, 10, 1, 9, 23, 7); | |||
| _reason.CreateUserID = -1; | |||
| _reason.UpdateDate = new DateTime(2013, 10, 1, 9, 23, 7); | |||
| _reason.UpdateUserID = -1; | |||
| } | |||
| } | |||
| } | |||
| @@ -1,7 +1,7 @@ | |||
| using System; | |||
| using System.Collections.Generic; | |||
| using System.Threading.Tasks; | |||
| using System.Timers; | |||
| using System.Data; | |||
| using Microsoft.Identity.Client; | |||
| using Microsoft.Exchange.WebServices.Data; | |||
| using System.IO; | |||
| @@ -62,6 +62,18 @@ namespace importer | |||
| else hasRun = false; | |||
| } | |||
| } | |||
| if (_args[0] == "foley") | |||
| { | |||
| _jdislog = Path.Combine(Global.StorageDir, "foley.log"); | |||
| JDISLog.Begin(_jdislog); | |||
| DataTable data = PDAImport.ReadFile(); | |||
| //Get Distinct Work Orders; | |||
| List<string> list = PDAImport.DistinctWorkOrders(data); | |||
| if (list.Count > 0) | |||
| { | |||
| PDAImport.BuildDefaults(); | |||
| } | |||
| } | |||
| //add more to the if statement to account for other imports | |||
| } | |||
| static async System.Threading.Tasks.Task MailService() | |||
| @@ -0,0 +1,21 @@ | |||
| { | |||
| "MailProperties": { | |||
| "Username": "cmobile@prelub.com", | |||
| "Password": "Gr@nt@cc3$$", | |||
| "Mailbox": "connexionmobile@rpmindustries.org", | |||
| "Url": "https://outlook.office365.com/ews/Exchange.asmx", | |||
| "Filter": "Brandt Import; brandt import; Brandt import; brandt Import; BRANDT IMPORT", | |||
| "AppID": "489776b1-ee79-4b14-bc44-9f6bf47332db", | |||
| "TenentID": "1fd06c96-d3a4-45e9-9ed7-bcecb394d277", | |||
| "ObjectId": "c7647074-edb6-4e8e-8a01-a1ed924fdae9", | |||
| "SecretID": "cba04a6c-a233-4646-909b-b50921edbe1c", | |||
| "SecretV": "up-8Q~y46~JyQZjJlsAJ-zpXpglpmuPIJ1Gx3a2O", | |||
| "Scope": "https://outlook.office365.com/.default" | |||
| }, | |||
| "Remote": false, | |||
| "LogFile": "jdis.log", | |||
| "Prelub": { | |||
| "LocalService": "http://foleyeqservices.rpmindustries.com:8087/", | |||
| "RemoteService": "https://foleyeqservices.rpmindustries.com/" | |||
| } | |||
| } | |||
| @@ -8,16 +8,38 @@ | |||
| ".NETCoreApp,Version=v6.0": { | |||
| "importer/1.0.0": { | |||
| "dependencies": { | |||
| "ExcelDataReader": "3.7.0-develop00310", | |||
| "ExcelDataReader.DataSet": "3.7.0-develop00310", | |||
| "Microsoft.AspNet.WebApi.Client": "5.2.9", | |||
| "Microsoft.Exchange.WebServices": "2.2.0", | |||
| "Microsoft.Identity.Client": "4.49.1", | |||
| "Newtonsoft.Json": "13.0.2", | |||
| "RestSharp": "108.0.3" | |||
| "RestSharp": "108.0.3", | |||
| "System.Text.Encoding.CodePages": "7.0.0" | |||
| }, | |||
| "runtime": { | |||
| "importer.dll": {} | |||
| } | |||
| }, | |||
| "ExcelDataReader/3.7.0-develop00310": { | |||
| "runtime": { | |||
| "lib/netstandard2.0/ExcelDataReader.dll": { | |||
| "assemblyVersion": "3.7.0.0", | |||
| "fileVersion": "3.7.0.0" | |||
| } | |||
| } | |||
| }, | |||
| "ExcelDataReader.DataSet/3.7.0-develop00310": { | |||
| "dependencies": { | |||
| "ExcelDataReader": "3.7.0-develop00310" | |||
| }, | |||
| "runtime": { | |||
| "lib/netstandard2.0/ExcelDataReader.DataSet.dll": { | |||
| "assemblyVersion": "3.7.0.0", | |||
| "fileVersion": "3.7.0.0" | |||
| } | |||
| } | |||
| }, | |||
| "Microsoft.AspNet.WebApi.Client/5.2.9": { | |||
| "dependencies": { | |||
| "Newtonsoft.Json": "13.0.2", | |||
| @@ -507,6 +529,7 @@ | |||
| "Microsoft.NETCore.Targets": "1.1.0" | |||
| } | |||
| }, | |||
| "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, | |||
| "System.Runtime.Extensions/4.3.0": { | |||
| "dependencies": { | |||
| "Microsoft.NETCore.Platforms": "1.1.0", | |||
| @@ -680,6 +703,25 @@ | |||
| "System.Runtime": "4.3.0" | |||
| } | |||
| }, | |||
| "System.Text.Encoding.CodePages/7.0.0": { | |||
| "dependencies": { | |||
| "System.Runtime.CompilerServices.Unsafe": "6.0.0" | |||
| }, | |||
| "runtime": { | |||
| "lib/net6.0/System.Text.Encoding.CodePages.dll": { | |||
| "assemblyVersion": "7.0.0.0", | |||
| "fileVersion": "7.0.22.51805" | |||
| } | |||
| }, | |||
| "runtimeTargets": { | |||
| "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { | |||
| "rid": "win", | |||
| "assetType": "runtime", | |||
| "assemblyVersion": "7.0.0.0", | |||
| "fileVersion": "7.0.22.51805" | |||
| } | |||
| } | |||
| }, | |||
| "System.Text.Encoding.Extensions/4.3.0": { | |||
| "dependencies": { | |||
| "Microsoft.NETCore.Platforms": "1.1.0", | |||
| @@ -763,6 +805,20 @@ | |||
| "serviceable": false, | |||
| "sha512": "" | |||
| }, | |||
| "ExcelDataReader/3.7.0-develop00310": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-ox77cjWP8h1z0cH1VR/hsvGYHng/9o6uxaE/Ui14xphEUU1Ovluipcn7gJE5ZmXSBCzT2x6c2OTBwyMBk+ysDw==", | |||
| "path": "exceldatareader/3.7.0-develop00310", | |||
| "hashPath": "exceldatareader.3.7.0-develop00310.nupkg.sha512" | |||
| }, | |||
| "ExcelDataReader.DataSet/3.7.0-develop00310": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-FaHmT/X9naMmfVT64Kis7kJQYnD8swrsPFRCHVtqIghVOFkjU7OuAVme+UVXxkZePmJw+ZJ0Zn6v+IXUDweckQ==", | |||
| "path": "exceldatareader.dataset/3.7.0-develop00310", | |||
| "hashPath": "exceldatareader.dataset.3.7.0-develop00310.nupkg.sha512" | |||
| }, | |||
| "Microsoft.AspNet.WebApi.Client/5.2.9": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| @@ -1176,6 +1232,13 @@ | |||
| "path": "system.runtime/4.3.0", | |||
| "hashPath": "system.runtime.4.3.0.nupkg.sha512" | |||
| }, | |||
| "System.Runtime.CompilerServices.Unsafe/6.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", | |||
| "path": "system.runtime.compilerservices.unsafe/6.0.0", | |||
| "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" | |||
| }, | |||
| "System.Runtime.Extensions/4.3.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| @@ -1267,6 +1330,13 @@ | |||
| "path": "system.text.encoding/4.3.0", | |||
| "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" | |||
| }, | |||
| "System.Text.Encoding.CodePages/7.0.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| "sha512": "sha512-LSyCblMpvOe0N3E+8e0skHcrIhgV2huaNcjUUEa8hRtgEAm36aGkRoC8Jxlb6Ra6GSfF29ftduPNywin8XolzQ==", | |||
| "path": "system.text.encoding.codepages/7.0.0", | |||
| "hashPath": "system.text.encoding.codepages.7.0.0.nupkg.sha512" | |||
| }, | |||
| "System.Text.Encoding.Extensions/4.3.0": { | |||
| "type": "package", | |||
| "serviceable": true, | |||
| @@ -3,9 +3,12 @@ | |||
| <PropertyGroup> | |||
| <OutputType>Exe</OutputType> | |||
| <TargetFramework>net6.0</TargetFramework> | |||
| <_EnableMacOSCodeSign>false</_EnableMacOSCodeSign> | |||
| </PropertyGroup> | |||
| <ItemGroup> | |||
| <PackageReference Include="ExcelDataReader" Version="3.7.0-develop00310" /> | |||
| <PackageReference Include="ExcelDataReader.DataSet" Version="3.7.0-develop00310" /> | |||
| <PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.9" /> | |||
| <Content Include="*.json"> | |||
| <CopyToOutputDirectory>Always</CopyToOutputDirectory> | |||
| @@ -17,6 +20,7 @@ | |||
| <PackageReference Include="Microsoft.Identity.Client" Version="4.49.1" /> | |||
| <PackageReference Include="Newtonsoft.Json" Version="13.0.2" /> | |||
| <PackageReference Include="RestSharp" Version="108.0.3" /> | |||
| <PackageReference Include="System.Text.Encoding.CodePages" Version="7.0.0" /> | |||
| </ItemGroup> | |||
| </Project> | |||
| @@ -1 +1 @@ | |||
| 356cbabbf9055bd39336266cda00d34fddaa0e92 | |||
| 0dcdb7b0dd287e4d7dc151ad494c856169d4d571 | |||
| @@ -23,3 +23,33 @@ | |||
| /Volumes/easystore/importer/bin/Debug/net6.0/Newtonsoft.Json.Bson.dll | |||
| /Volumes/easystore/importer/bin/Debug/net6.0/RestSharp.dll | |||
| /Volumes/easystore/importer/obj/Debug/net6.0/importer.csproj.CopyComplete | |||
| /Volumes/mcarman/MyApps/importer_v2.0/obj/Debug/net6.0/importer.csproj.AssemblyReference.cache | |||
| /Volumes/mcarman/MyApps/importer_v2.0/obj/Debug/net6.0/importer.GeneratedMSBuildEditorConfig.editorconfig | |||
| /Volumes/mcarman/MyApps/importer_v2.0/obj/Debug/net6.0/importer.AssemblyInfoInputs.cache | |||
| /Volumes/mcarman/MyApps/importer_v2.0/obj/Debug/net6.0/importer.AssemblyInfo.cs | |||
| /Volumes/mcarman/MyApps/importer_v2.0/obj/Debug/net6.0/importer.csproj.CoreCompileInputs.cache | |||
| /Volumes/mcarman/MyApps/importer_v2.0/obj/Debug/net6.0/importer.dll | |||
| /Volumes/mcarman/MyApps/importer_v2.0/obj/Debug/net6.0/refint/importer.dll | |||
| /Volumes/mcarman/MyApps/importer_v2.0/obj/Debug/net6.0/importer.pdb | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/importer | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/brandt.json | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/foley.json | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/importer.deps.json | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/importer.runtimeconfig.json | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/importer.dll | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/importer.pdb | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/ExcelDataReader.dll | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/System.Net.Http.Formatting.dll | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/Microsoft.Exchange.WebServices.Auth.dll | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/Microsoft.Exchange.WebServices.dll | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/Microsoft.Identity.Client.dll | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/Newtonsoft.Json.dll | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/Newtonsoft.Json.Bson.dll | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/RestSharp.dll | |||
| /Volumes/mcarman/MyApps/importer_v2.0/obj/Debug/net6.0/importer.csproj.CopyComplete | |||
| /Volumes/mcarman/MyApps/importer_v2.0/obj/Debug/net6.0/importer.genruntimeconfig.cache | |||
| /Volumes/mcarman/MyApps/importer_v2.0/obj/Debug/net6.0/ref/importer.dll | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/ExcelDataReader.DataSet.dll | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/System.Text.Encoding.CodePages.dll | |||
| /Volumes/mcarman/MyApps/importer_v2.0/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll | |||
| @@ -1 +1 @@ | |||
| da06678a6dbe5bc90e7ffbe510f1eb9bb28bed49 | |||
| 55ccddd83d27a757f9ec96fc8a3c6d6569dbca6c | |||
| @@ -1,17 +1,17 @@ | |||
| { | |||
| "format": 1, | |||
| "restore": { | |||
| "/Volumes/easystore/importer/importer.csproj": {} | |||
| "/Volumes/mcarman/MyApps/importer_v2.0/importer.csproj": {} | |||
| }, | |||
| "projects": { | |||
| "/Volumes/easystore/importer/importer.csproj": { | |||
| "/Volumes/mcarman/MyApps/importer_v2.0/importer.csproj": { | |||
| "version": "1.0.0", | |||
| "restore": { | |||
| "projectUniqueName": "/Volumes/easystore/importer/importer.csproj", | |||
| "projectUniqueName": "/Volumes/mcarman/MyApps/importer_v2.0/importer.csproj", | |||
| "projectName": "importer", | |||
| "projectPath": "/Volumes/easystore/importer/importer.csproj", | |||
| "projectPath": "/Volumes/mcarman/MyApps/importer_v2.0/importer.csproj", | |||
| "packagesPath": "/Users/michielcarman/.nuget/packages/", | |||
| "outputPath": "/Volumes/easystore/importer/obj/", | |||
| "outputPath": "/Volumes/mcarman/MyApps/importer_v2.0/obj/", | |||
| "projectStyle": "PackageReference", | |||
| "fallbackFolders": [ | |||
| "/usr/local/share/dotnet/sdk/NuGetFallbackFolder" | |||
| @@ -41,6 +41,14 @@ | |||
| "net6.0": { | |||
| "targetAlias": "net6.0", | |||
| "dependencies": { | |||
| "ExcelDataReader": { | |||
| "target": "Package", | |||
| "version": "[3.7.0-develop00310, )" | |||
| }, | |||
| "ExcelDataReader.DataSet": { | |||
| "target": "Package", | |||
| "version": "[3.7.0-develop00310, )" | |||
| }, | |||
| "Microsoft.AspNet.WebApi.Client": { | |||
| "target": "Package", | |||
| "version": "[5.2.9, )" | |||
| @@ -60,6 +68,10 @@ | |||
| "RestSharp": { | |||
| "target": "Package", | |||
| "version": "[108.0.3, )" | |||
| }, | |||
| "System.Text.Encoding.CodePages": { | |||
| "target": "Package", | |||
| "version": "[7.0.0, )" | |||
| } | |||
| }, | |||
| "imports": [ | |||
| @@ -72,20 +84,6 @@ | |||
| ], | |||
| "assetTargetFallback": true, | |||
| "warn": true, | |||
| "downloadDependencies": [ | |||
| { | |||
| "name": "Microsoft.AspNetCore.App.Runtime.linux-x64", | |||
| "version": "[6.0.4, 6.0.4]" | |||
| }, | |||
| { | |||
| "name": "Microsoft.NETCore.App.Host.linux-x64", | |||
| "version": "[6.0.4, 6.0.4]" | |||
| }, | |||
| { | |||
| "name": "Microsoft.NETCore.App.Runtime.linux-x64", | |||
| "version": "[6.0.4, 6.0.4]" | |||
| } | |||
| ], | |||
| "frameworkReferences": { | |||
| "Microsoft.NETCore.App": { | |||
| "privateAssets": "all" | |||
| @@ -93,11 +91,6 @@ | |||
| }, | |||
| "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/6.0.202/RuntimeIdentifierGraph.json" | |||
| } | |||
| }, | |||
| "runtimes": { | |||
| "ubuntu.18.04-x64": { | |||
| "#import": [] | |||
| } | |||
| } | |||
| } | |||
| } | |||
| @@ -1,9 +1,11 @@ | |||
| { | |||
| "version": 2, | |||
| "dgSpecHash": "tAPERq/DA+XkYbwRoW1rM5prEITWT+SvQbR+VRy4iwv93O5OPvfJlkMkxSijikftXGC7t+VasKEmF5aZBz9Akg==", | |||
| "dgSpecHash": "NfFx0LBE1/75v0T48JshACG0d3c10FZErVNzZrReFSozijFVOlkhN/+RS9RX3665uLSHI336sSCHvQfe0s9bEQ==", | |||
| "success": true, | |||
| "projectFilePath": "/Volumes/easystore/importer/importer.csproj", | |||
| "projectFilePath": "/Volumes/mcarman/MyApps/importer_v2.0/importer.csproj", | |||
| "expectedPackageFiles": [ | |||
| "/Users/michielcarman/.nuget/packages/exceldatareader/3.7.0-develop00310/exceldatareader.3.7.0-develop00310.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/exceldatareader.dataset/3.7.0-develop00310/exceldatareader.dataset.3.7.0-develop00310.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.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", | |||
| @@ -15,23 +17,6 @@ | |||
| "/Users/michielcarman/.nuget/packages/newtonsoft.json/13.0.2/newtonsoft.json.13.0.2.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/newtonsoft.json.bson/1.0.1/newtonsoft.json.bson.1.0.1.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/restsharp/108.0.3/restsharp.108.0.3.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.collections/4.3.0/runtime.any.system.collections.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.diagnostics.tools/4.3.0/runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.diagnostics.tracing/4.3.0/runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.globalization/4.3.0/runtime.any.system.globalization.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.globalization.calendars/4.3.0/runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.io/4.3.0/runtime.any.system.io.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.reflection/4.3.0/runtime.any.system.reflection.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.reflection.extensions/4.3.0/runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.reflection.primitives/4.3.0/runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.resources.resourcemanager/4.3.0/runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.runtime/4.3.0/runtime.any.system.runtime.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.runtime.handles/4.3.0/runtime.any.system.runtime.handles.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.runtime.interopservices/4.3.0/runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.text.encoding/4.3.0/runtime.any.system.text.encoding.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.text.encoding.extensions/4.3.0/runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.threading.tasks/4.3.0/runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.any.system.threading.timer/4.3.0/runtime.any.system.threading.timer.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", | |||
| "/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", | |||
| @@ -48,14 +33,6 @@ | |||
| "/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.unix.microsoft.win32.primitives/4.3.0/runtime.unix.microsoft.win32.primitives.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.unix.system.console/4.3.0/runtime.unix.system.console.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.unix.system.diagnostics.debug/4.3.0/runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.unix.system.io.filesystem/4.3.0/runtime.unix.system.io.filesystem.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.unix.system.net.primitives/4.3.0/runtime.unix.system.net.primitives.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.unix.system.net.sockets/4.3.0/runtime.unix.system.net.sockets.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.unix.system.private.uri/4.3.0/runtime.unix.system.private.uri.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/runtime.unix.system.runtime.extensions/4.3.0/runtime.unix.system.runtime.extensions.4.3.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", | |||
| @@ -76,11 +53,9 @@ | |||
| "/Users/michielcarman/.nuget/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.net.http/4.3.0/system.net.http.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.net.nameresolution/4.3.0/system.net.nameresolution.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.private.uri/4.3.0/system.private.uri.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", | |||
| @@ -90,12 +65,12 @@ | |||
| "/Users/michielcarman/.nuget/packages/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512", | |||
| "/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.claims/4.3.0/system.security.claims.4.3.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", | |||
| @@ -103,21 +78,16 @@ | |||
| "/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/4.3.0/system.security.principal.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.security.principal.windows/4.3.0/system.security.principal.windows.4.3.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.codepages/7.0.0/system.text.encoding.codepages.7.0.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", | |||
| "/Users/michielcarman/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.threading.threadpool/4.3.0/system.threading.threadpool.4.3.0.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg.sha512", | |||
| "/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", | |||
| "/Users/michielcarman/.nuget/packages/microsoft.netcore.app.runtime.linux-x64/6.0.4/microsoft.netcore.app.runtime.linux-x64.6.0.4.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/microsoft.aspnetcore.app.runtime.linux-x64/6.0.4/microsoft.aspnetcore.app.runtime.linux-x64.6.0.4.nupkg.sha512", | |||
| "/Users/michielcarman/.nuget/packages/microsoft.netcore.app.host.linux-x64/6.0.4/microsoft.netcore.app.host.linux-x64.6.0.4.nupkg.sha512" | |||
| "/Users/michielcarman/.nuget/packages/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg.sha512" | |||
| ], | |||
| "logs": [ | |||
| { | |||