diff --git a/API.cs b/API.cs index 81b4e21..5ac71a8 100644 --- a/API.cs +++ b/API.cs @@ -191,7 +191,7 @@ static void resetHeaders(HttpClient client) Trace.WriteLine(client.DefaultRequestHeaders); } - +// @TODO refactor this whole insane mess. public static void APICalls(CurrentQuery query) { // Have CurrentQuery - QueryMode - tell @@ -205,6 +205,14 @@ public static void APICalls(CurrentQuery query) Trace.WriteLine("Called callWordsAPI"); // I am removing the limit of 1 definition -- going to return all at once // Uri requestURL = new Uri(baseURL + "words/?lemma=" + query.UserEnteredWord + "&limit=1"); + string queryURL; + if ((! query.IncludeObsolete) || (! query.OptionsMenuIncludeObsolete)) { + queryURL = @"words/?lemma=" + query.UserEnteredWord + @"?obsolete=false"; + } + else { + queryURL = @"words/?lemma=" + query.UserEnteredWord; + } + Uri requestURL = new Uri(baseURL + "words/?lemma=" + query.UserEnteredWord); Trace.WriteLine("Making the request"); @@ -216,19 +224,11 @@ public static void APICalls(CurrentQuery query) - Action callWordsByIdAPI = (Object obj) => - { - Trace.WriteLine("Called callWordsByIdAPI"); - Uri requestURL = new Uri(baseURL + @"word/orchestra\_nn01?include\_senses=false&include\_quotations=false"); - Trace.WriteLine("Making the request"); - Trace.WriteLine(client.GetStringAsync(requestURL)); - }; - Action callSensesAPI = (Object obj) => { Trace.WriteLine("Called callSensesAPI"); string queryURL; - if (! query.IncludeObsolete) { + if ((! query.IncludeObsolete) || (! query.OptionsMenuIncludeObsolete)) { queryURL = @"word/" + query.Definitions[0].WordID + @"/senses/?obsolete=false"; } else { @@ -359,6 +359,15 @@ public static void APICalls(CurrentQuery query) Definition tempDefinition = new Definition(); tempDefinition.WordDefinition = data[i].GetProperty("definition").ToString(); tempDefinition.WordID = data[i].GetProperty("id").ToString(); + tempDefinition.RecordedFirstUseSource = data[i].GetProperty("first_use").ToString(); + tempDefinition.RecordedFirstUseYear = int.Parse(data[i].GetProperty("daterange").GetProperty("start").ToString()); + var parts = data[i].GetProperty("parts_of_speech").EnumerateArray(); + while (parts.MoveNext()) + { + var part = parts.Current; + tempDefinition.PartsOfSpeech.Add(part.GetString()); + } + if (data[i].GetProperty("main_entry").ToString().ToLower() == "true") { tempDefinition.IsWordMainDefinition = true; diff --git a/ConsoleUI.cs b/ConsoleUI.cs index 0fa35fc..64106fe 100644 --- a/ConsoleUI.cs +++ b/ConsoleUI.cs @@ -1,5 +1,7 @@ using System; using System.Diagnostics; +using System.Linq; +using System.Collections.Generic; namespace OxfordV2 { @@ -22,10 +24,79 @@ private static string processInput(CurrentQuery query, string userInput) if (userInput.Contains("-o")) { query.IncludeObsolete = false; } - var inputTokens = userInput.Split(" "); + string[] inputTokens = userInput.Split(" "); + + List result = inputTokens.Where(t => t.All(char.IsDigit)).ToList(); + // @TODO improve this so queries like "robot - 1900" work + // @TODO improve so queries with no space between dates works. + if (result.Count() == 1) { + query.StartYear = int.Parse(result[0]); + query.OpenStart = true; + + } + else if (result.Count() == 2) { + query.StartYear = int.Parse(result[0]); + query.EndYear = int.Parse(result[1]); + query.OpenStart = false; + } + return inputTokens[0]; } + static void showDefinitions(CurrentQuery query) + { + + for (int i = 0; i < query.Definitions.Count; i++) + { + int dNum = i + 1; + Console.WriteLine("Definition #{0}:", dNum); + Console.WriteLine(); + Console.WriteLine(query.Definitions[i].WordDefinition.ToString()); + Console.WriteLine(); + + if (query.OptionsMenuVerboseMode) { + string outputPartsOfSpeech = ""; + string mainDefinition = ""; + string firstUseSource = ""; + string firstUseYear = ""; + string isObsolete = ""; + + if (query.Definitions[i].PartsOfSpeech.Count != 0) + { + + query.Definitions[i].FormatPartsOfSpeech(); + foreach (var p in query.Definitions[i].FormattedPartsOfSpeech) + { + outputPartsOfSpeech += p.ToString() + ". "; + } + } + if (query.Definitions[i].IsWordMainDefinition) + { + mainDefinition = "Listed as a main definition."; + } else + { + mainDefinition = "NOT listed as a main definition."; + } + + if (query.Definitions[i].IsWordObsolete) + { + isObsolete = "This usage is now obsolete."; + } else { + isObsolete = ""; + } + + firstUseSource = query.Definitions[i].RecordedFirstUseSource; + firstUseYear = query.Definitions[i].RecordedFirstUseYear.ToString(); + Console.WriteLine(outputPartsOfSpeech + isObsolete + " " + mainDefinition + + " The original source of this word is the {0}. This word was first recored in {1}", + firstUseSource, firstUseYear); + Console.WriteLine(); + } + + + } + } + static void MainMenu(CurrentQuery query) { Trace.WriteLine("In MainMenu()"); @@ -38,28 +109,13 @@ static void MainMenu(CurrentQuery query) Trace.WriteLine(query.UserEnteredWord); query.QueryMode = Modes.Word; API.APICalls(query); - for (int i = 0; i < query.Definitions.Count; i++) - { - int dNum = i + 1; - Console.WriteLine("Definition #{0}", dNum); - Console.WriteLine(""); - Console.WriteLine(query.Definitions[i].WordDefinition.ToString()); - Console.WriteLine(""); - if (query.Definitions[i].IsWordMainDefinition) - { - Console.WriteLine("This definition is listed as a main definition."); - } else - { - Console.WriteLine("This definition is NOT listed as a main definition."); - } - Console.WriteLine(""); - - } } + } catch (Exception ex) { Trace.WriteLine("Exception on automatic word look up"); Trace.WriteLine(ex); } + showDefinitions(query); } Console.WriteLine(); Console.WriteLine("-------------------------"); @@ -91,7 +147,7 @@ static void MainMenu(CurrentQuery query) } else { - Console.WriteLine(query.Definitions[0].WordDefinition); + showDefinitions(query); } break; diff --git a/CurrentQuery.cs b/CurrentQuery.cs index 49db622..e10c4b6 100644 --- a/CurrentQuery.cs +++ b/CurrentQuery.cs @@ -32,6 +32,8 @@ public class CurrentQuery : IDisposable public Modes QueryMode { get; set; } public bool HasLookedUpWord { get; set; } + public bool OptionsMenuIncludeObsolete { get; set; } + public bool OptionsMenuVerboseMode { get; set;} public bool IncludeObsolete { get; set; } public bool DateRangeSet { get; set; } @@ -45,6 +47,8 @@ public CurrentQuery() { this.HasLookedUpWord = false; this.DateRangeSet = false; this.IncludeObsolete = true; + this.OptionsMenuIncludeObsolete = true; + this.OptionsMenuVerboseMode = true; this.Definitions = new List(); this.Quotes = new List(); this.Senses = new List(); diff --git a/Definition.cs b/Definition.cs index 776df1c..3521c0f 100644 --- a/Definition.cs +++ b/Definition.cs @@ -11,5 +11,160 @@ public class Definition public string WordDefinition { get; set; } public string WordID { get; set; } public bool IsWordMainDefinition { get; set; } + public bool IsWordObsolete { get; set; } + public string RecordedFirstUseSource { get; set; } + public int RecordedFirstUseYear { get; set; } + public List PartsOfSpeech { get; set;} + public List FormattedPartsOfSpeech { get; set; } + + public Definition() { + this.PartsOfSpeech = new List(); + this.FormattedPartsOfSpeech = new List(); + } + + public void FormatPartsOfSpeech() { + foreach (string p in this.PartsOfSpeech) + switch (p) { + case("VBN"): + FormattedPartsOfSpeech.Add("Verb, past participle"); + break; + + case("NN"): + FormattedPartsOfSpeech.Add("Noun"); + break; + + case("NNS"): + FormattedPartsOfSpeech.Add("Plural noun"); + break; + + case("PRP"): + FormattedPartsOfSpeech.Add("Personal pronoun"); + break; + + case("PRP$"): + FormattedPartsOfSpeech.Add("Possessive pronoun"); + break; + + case("WP"): + FormattedPartsOfSpeech.Add("wh-pronoun"); + break; + + case("WP$"): + FormattedPartsOfSpeech.Add("Possessive wh-pronoun"); + break; + + case("JJ"): + FormattedPartsOfSpeech.Add("Adjective"); + break; + + case("JJR"): + FormattedPartsOfSpeech.Add("Comparative adjective"); + break; + + case("JJS"): + FormattedPartsOfSpeech.Add("Superlative adjective"); + break; + + case("MD"): + FormattedPartsOfSpeech.Add("Modal"); + break; + + case("VB"): + FormattedPartsOfSpeech.Add("Verb"); + break; + + case("VBD"): + FormattedPartsOfSpeech.Add("Verb, past tense"); + break; + + case("VBG"): + FormattedPartsOfSpeech.Add("Verb, present participle"); + break; + + case("VBZ"): + FormattedPartsOfSpeech.Add("Verb, 3rd person singular present"); + break; + + case("RB"): + FormattedPartsOfSpeech.Add("Comparative adverb"); + break; + + case("RBR"): + FormattedPartsOfSpeech.Add("Comparative adverb"); + break; + + case("RBS"): + FormattedPartsOfSpeech.Add("Superlative adverb"); + break; + + case("WRB"): + FormattedPartsOfSpeech.Add("Wh-adverb"); + break; + + case("IN"): + FormattedPartsOfSpeech.Add("Preposition"); + break; + + case("CC"): + FormattedPartsOfSpeech.Add("Coordinating conjunction"); + break; + + case("UH"): + FormattedPartsOfSpeech.Add("Interjection"); + break; + + case("NNP"): + FormattedPartsOfSpeech.Add("Proper noun"); + break; + + case("CD"): + FormattedPartsOfSpeech.Add("Cardinal number"); + break; + + case("DT"): + FormattedPartsOfSpeech.Add("Determiner"); + break; + + case("EX"): + FormattedPartsOfSpeech.Add("Existential there"); + break; + + case("PDT"): + FormattedPartsOfSpeech.Add("Predeterminer"); + break; + + case("WDT"): + FormattedPartsOfSpeech.Add("Wh-determiner"); + break; + + case("FW"): + FormattedPartsOfSpeech.Add("Foreign word"); + break; + + case("POS"): + FormattedPartsOfSpeech.Add("Possessive ending"); + break; + + case("RP"): + FormattedPartsOfSpeech.Add("Particle"); + break; + + case("SYM"): + FormattedPartsOfSpeech.Add("Symbol"); + break; + + case("TO"): + FormattedPartsOfSpeech.Add("Infinitive to"); + break; + + default: + FormattedPartsOfSpeech.Add(p.ToString()); + break; + + + } + + } + } } diff --git a/OptionsMenu.cs b/OptionsMenu.cs index 5f0daf9..085a217 100644 --- a/OptionsMenu.cs +++ b/OptionsMenu.cs @@ -32,7 +32,7 @@ public static void ShowOptionsMenu(CurrentQuery query) } Console.WriteLine($"Delete old XML file and saved quotations on export?: {yesNo}"); - if (query.IncludeObsolete == true) + if (query.OptionsMenuIncludeObsolete == true) { yesNo = "Yes"; } @@ -49,6 +49,16 @@ public static void ShowOptionsMenu(CurrentQuery query) } Console.WriteLine($"Is a date range set?: {yesNo}"); + if (query.OptionsMenuVerboseMode) + { + yesNo = "On"; + } + else { + yesNo = "Off"; + } + Console.WriteLine($"Verbose mode: {yesNo}"); + + if (query.DateRangeSet) { string printStart = ""; @@ -68,6 +78,7 @@ public static void ShowOptionsMenu(CurrentQuery query) Console.WriteLine("----------------------------"); Console.WriteLine("Toggle obsolete usage - O"); + Console.WriteLine("Toggle verbose mode - V"); Console.WriteLine("Delete old XML on Export - E"); Console.WriteLine("Set date range: - D"); Console.WriteLine("Exit to main menu - X"); @@ -76,8 +87,14 @@ public static void ShowOptionsMenu(CurrentQuery query) { case ("o" or "obsolete" or "ob"): Console.WriteLine("Toggle Obsolete"); - query.IncludeObsolete = !query.IncludeObsolete; + query.OptionsMenuIncludeObsolete = !query.OptionsMenuIncludeObsolete; + break; + + case ("v" or "verbose"): + Console.WriteLine("Toggle Verbose Mode"); + query.OptionsMenuVerboseMode = !query.OptionsMenuVerboseMode; break; + case ("e" or "export" or "delete"): SavedQueries.DeleteOnExport = !SavedQueries.DeleteOnExport; break; diff --git a/bin/Debug/net5.0/OxfordV2.dll b/bin/Debug/net5.0/OxfordV2.dll index 84250d6..af7f6e3 100644 Binary files a/bin/Debug/net5.0/OxfordV2.dll and b/bin/Debug/net5.0/OxfordV2.dll differ diff --git a/bin/Debug/net5.0/OxfordV2.pdb b/bin/Debug/net5.0/OxfordV2.pdb index 759091d..98eda4e 100644 Binary files a/bin/Debug/net5.0/OxfordV2.pdb and b/bin/Debug/net5.0/OxfordV2.pdb differ diff --git a/bin/Debug/net5.0/osx-x64/Microsoft.CSharp.dll b/bin/Debug/net5.0/osx-x64/Microsoft.CSharp.dll new file mode 100644 index 0000000..25c5db7 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/Microsoft.CSharp.dll differ diff --git a/bin/Debug/net5.0/osx-x64/Microsoft.VisualBasic.Core.dll b/bin/Debug/net5.0/osx-x64/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..39f8590 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/Microsoft.VisualBasic.Core.dll differ diff --git a/bin/Debug/net5.0/osx-x64/Microsoft.VisualBasic.dll b/bin/Debug/net5.0/osx-x64/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..312022b Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/Microsoft.VisualBasic.dll differ diff --git a/bin/Debug/net5.0/osx-x64/Microsoft.Win32.Primitives.dll b/bin/Debug/net5.0/osx-x64/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..2cfe5a6 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/Microsoft.Win32.Primitives.dll differ diff --git a/bin/Debug/net5.0/osx-x64/Microsoft.Win32.Registry.dll b/bin/Debug/net5.0/osx-x64/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..864bbb8 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/Microsoft.Win32.Registry.dll differ diff --git a/bin/Debug/net5.0/osx-x64/OxfordV2 b/bin/Debug/net5.0/osx-x64/OxfordV2 new file mode 100644 index 0000000..b6c0c2a Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/OxfordV2 differ diff --git a/bin/Debug/net5.0/osx-x64/OxfordV2.deps.json b/bin/Debug/net5.0/osx-x64/OxfordV2.deps.json new file mode 100644 index 0000000..ea513e0 --- /dev/null +++ b/bin/Debug/net5.0/osx-x64/OxfordV2.deps.json @@ -0,0 +1,861 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0/osx-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": {}, + ".NETCoreApp,Version=v5.0/osx-x64": { + "OxfordV2/1.0.0": { + "dependencies": { + "runtimepack.Microsoft.NETCore.App.Runtime.osx-x64": "5.0.6" + }, + "runtime": { + "OxfordV2.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.osx-x64/5.0.6": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "10.0.6.0", + "fileVersion": "11.0.621.22011" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.AppContext.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Buffers.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Console.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Data.Common.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Drawing.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Globalization.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Linq.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Memory.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Http.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Security.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "0.0.0.0" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.621.22011" + }, + "System.Text.Json.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "WindowsBase.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + } + }, + "native": { + "createdump": { + "fileVersion": "0.0.0.0" + }, + "libSystem.IO.Compression.Native.a": { + "fileVersion": "0.0.0.0" + }, + "libSystem.IO.Compression.Native.dylib": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Native.a": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Native.dylib": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Net.Security.Native.a": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Net.Security.Native.dylib": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Security.Cryptography.Native.Apple.a": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Security.Cryptography.Native.Apple.dylib": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Security.Cryptography.Native.OpenSsl.a": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Security.Cryptography.Native.OpenSsl.dylib": { + "fileVersion": "0.0.0.0" + }, + "libclrjit.dylib": { + "fileVersion": "0.0.0.0" + }, + "libcoreclr.dylib": { + "fileVersion": "0.0.0.0" + }, + "libdbgshim.dylib": { + "fileVersion": "0.0.0.0" + }, + "libhostfxr.dylib": { + "fileVersion": "0.0.0.0" + }, + "libhostpolicy.dylib": { + "fileVersion": "0.0.0.0" + }, + "libmscordaccore.dylib": { + "fileVersion": "0.0.0.0" + }, + "libmscordbi.dylib": { + "fileVersion": "0.0.0.0" + } + } + } + } + }, + "libraries": { + "OxfordV2/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.osx-x64/5.0.6": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + } + }, + "runtimes": { + "osx-x64": [ + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.10.10-x64": [ + "osx.10.10", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.10.11-x64": [ + "osx.10.11", + "osx.10.10-x64", + "osx.10.10", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.10.12-x64": [ + "osx.10.12", + "osx.10.11-x64", + "osx.10.11", + "osx.10.10-x64", + "osx.10.10", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.10.13-x64": [ + "osx.10.13", + "osx.10.12-x64", + "osx.10.12", + "osx.10.11-x64", + "osx.10.11", + "osx.10.10-x64", + "osx.10.10", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.10.14-x64": [ + "osx.10.14", + "osx.10.13-x64", + "osx.10.13", + "osx.10.12-x64", + "osx.10.12", + "osx.10.11-x64", + "osx.10.11", + "osx.10.10-x64", + "osx.10.10", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.10.15-x64": [ + "osx.10.15", + "osx.10.14-x64", + "osx.10.14", + "osx.10.13-x64", + "osx.10.13", + "osx.10.12-x64", + "osx.10.12", + "osx.10.11-x64", + "osx.10.11", + "osx.10.10-x64", + "osx.10.10", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.11-x64": [ + "osx.11", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.11.0-x64": [ + "osx.11.0", + "osx.11-x64", + "osx.11", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/bin/Debug/net5.0/osx-x64/OxfordV2.dll b/bin/Debug/net5.0/osx-x64/OxfordV2.dll new file mode 100644 index 0000000..8716d92 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/OxfordV2.dll differ diff --git a/bin/Debug/net5.0/osx-x64/OxfordV2.pdb b/bin/Debug/net5.0/osx-x64/OxfordV2.pdb new file mode 100644 index 0000000..6084b19 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/OxfordV2.pdb differ diff --git a/bin/Debug/net5.0/osx-x64/OxfordV2.runtimeconfig.dev.json b/bin/Debug/net5.0/osx-x64/OxfordV2.runtimeconfig.dev.json new file mode 100644 index 0000000..f93d20c --- /dev/null +++ b/bin/Debug/net5.0/osx-x64/OxfordV2.runtimeconfig.dev.json @@ -0,0 +1,11 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\Luke\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\Luke\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ] + } +} \ No newline at end of file diff --git a/bin/Debug/net5.0/osx-x64/OxfordV2.runtimeconfig.json b/bin/Debug/net5.0/osx-x64/OxfordV2.runtimeconfig.json new file mode 100644 index 0000000..6d62f33 --- /dev/null +++ b/bin/Debug/net5.0/osx-x64/OxfordV2.runtimeconfig.json @@ -0,0 +1,11 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "5.0.6" + } + ] + } +} \ No newline at end of file diff --git a/bin/Debug/net5.0/osx-x64/System.AppContext.dll b/bin/Debug/net5.0/osx-x64/System.AppContext.dll new file mode 100644 index 0000000..c73c241 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.AppContext.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Buffers.dll b/bin/Debug/net5.0/osx-x64/System.Buffers.dll new file mode 100644 index 0000000..e8e6876 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Buffers.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Collections.Concurrent.dll b/bin/Debug/net5.0/osx-x64/System.Collections.Concurrent.dll new file mode 100644 index 0000000..b2e0438 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Collections.Concurrent.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Collections.Immutable.dll b/bin/Debug/net5.0/osx-x64/System.Collections.Immutable.dll new file mode 100644 index 0000000..316904b Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Collections.Immutable.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Collections.NonGeneric.dll b/bin/Debug/net5.0/osx-x64/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..e17ff74 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Collections.NonGeneric.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Collections.Specialized.dll b/bin/Debug/net5.0/osx-x64/System.Collections.Specialized.dll new file mode 100644 index 0000000..bbdf1da Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Collections.Specialized.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Collections.dll b/bin/Debug/net5.0/osx-x64/System.Collections.dll new file mode 100644 index 0000000..4f93c3c Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Collections.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.ComponentModel.Annotations.dll b/bin/Debug/net5.0/osx-x64/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..cfcccae Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.ComponentModel.Annotations.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.ComponentModel.DataAnnotations.dll b/bin/Debug/net5.0/osx-x64/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..60ec832 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.ComponentModel.DataAnnotations.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.ComponentModel.EventBasedAsync.dll b/bin/Debug/net5.0/osx-x64/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..b711b13 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.ComponentModel.EventBasedAsync.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.ComponentModel.Primitives.dll b/bin/Debug/net5.0/osx-x64/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..93c348f Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.ComponentModel.Primitives.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.ComponentModel.TypeConverter.dll b/bin/Debug/net5.0/osx-x64/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..9c8e006 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.ComponentModel.TypeConverter.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.ComponentModel.dll b/bin/Debug/net5.0/osx-x64/System.ComponentModel.dll new file mode 100644 index 0000000..cbf52cf Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.ComponentModel.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Configuration.dll b/bin/Debug/net5.0/osx-x64/System.Configuration.dll new file mode 100644 index 0000000..41ff44c Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Configuration.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Console.dll b/bin/Debug/net5.0/osx-x64/System.Console.dll new file mode 100644 index 0000000..7ae51cb Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Console.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Core.dll b/bin/Debug/net5.0/osx-x64/System.Core.dll new file mode 100644 index 0000000..c28a8c0 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Core.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Data.Common.dll b/bin/Debug/net5.0/osx-x64/System.Data.Common.dll new file mode 100644 index 0000000..3a0e14a Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Data.Common.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Data.DataSetExtensions.dll b/bin/Debug/net5.0/osx-x64/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..aab7d7b Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Data.DataSetExtensions.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Data.dll b/bin/Debug/net5.0/osx-x64/System.Data.dll new file mode 100644 index 0000000..f79d923 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Data.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Diagnostics.Contracts.dll b/bin/Debug/net5.0/osx-x64/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..58202ad Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Diagnostics.Contracts.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Diagnostics.Debug.dll b/bin/Debug/net5.0/osx-x64/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..980e0ce Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Diagnostics.Debug.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Diagnostics.DiagnosticSource.dll b/bin/Debug/net5.0/osx-x64/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..fbf411c Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Diagnostics.DiagnosticSource.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Diagnostics.FileVersionInfo.dll b/bin/Debug/net5.0/osx-x64/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..e0ba6a0 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Diagnostics.FileVersionInfo.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Diagnostics.Process.dll b/bin/Debug/net5.0/osx-x64/System.Diagnostics.Process.dll new file mode 100644 index 0000000..5279010 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Diagnostics.Process.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Diagnostics.StackTrace.dll b/bin/Debug/net5.0/osx-x64/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..24d1153 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Diagnostics.StackTrace.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Diagnostics.TextWriterTraceListener.dll b/bin/Debug/net5.0/osx-x64/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..07dbe31 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Diagnostics.Tools.dll b/bin/Debug/net5.0/osx-x64/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..4a7159f Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Diagnostics.Tools.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Diagnostics.TraceSource.dll b/bin/Debug/net5.0/osx-x64/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..d01b735 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Diagnostics.TraceSource.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Diagnostics.Tracing.dll b/bin/Debug/net5.0/osx-x64/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..bed4949 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Diagnostics.Tracing.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Drawing.Primitives.dll b/bin/Debug/net5.0/osx-x64/System.Drawing.Primitives.dll new file mode 100644 index 0000000..b539f20 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Drawing.Primitives.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Drawing.dll b/bin/Debug/net5.0/osx-x64/System.Drawing.dll new file mode 100644 index 0000000..1ebd166 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Drawing.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Dynamic.Runtime.dll b/bin/Debug/net5.0/osx-x64/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..a0ee4c6 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Dynamic.Runtime.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Formats.Asn1.dll b/bin/Debug/net5.0/osx-x64/System.Formats.Asn1.dll new file mode 100644 index 0000000..a0ce312 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Formats.Asn1.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Globalization.Calendars.dll b/bin/Debug/net5.0/osx-x64/System.Globalization.Calendars.dll new file mode 100644 index 0000000..192a266 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Globalization.Calendars.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Globalization.Extensions.dll b/bin/Debug/net5.0/osx-x64/System.Globalization.Extensions.dll new file mode 100644 index 0000000..ad54201 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Globalization.Extensions.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Globalization.dll b/bin/Debug/net5.0/osx-x64/System.Globalization.dll new file mode 100644 index 0000000..0bab343 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Globalization.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.IO.Compression.Brotli.dll b/bin/Debug/net5.0/osx-x64/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..8581737 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.IO.Compression.Brotli.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.IO.Compression.FileSystem.dll b/bin/Debug/net5.0/osx-x64/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..fd0babf Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.IO.Compression.FileSystem.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.IO.Compression.ZipFile.dll b/bin/Debug/net5.0/osx-x64/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..ae4bea3 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.IO.Compression.ZipFile.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.IO.Compression.dll b/bin/Debug/net5.0/osx-x64/System.IO.Compression.dll new file mode 100644 index 0000000..59d8128 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.IO.Compression.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.IO.FileSystem.AccessControl.dll b/bin/Debug/net5.0/osx-x64/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..e757387 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.IO.FileSystem.AccessControl.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.IO.FileSystem.DriveInfo.dll b/bin/Debug/net5.0/osx-x64/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..36f0474 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.IO.FileSystem.DriveInfo.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.IO.FileSystem.Primitives.dll b/bin/Debug/net5.0/osx-x64/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..ec7e77e Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.IO.FileSystem.Primitives.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.IO.FileSystem.Watcher.dll b/bin/Debug/net5.0/osx-x64/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..ca5d327 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.IO.FileSystem.Watcher.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.IO.FileSystem.dll b/bin/Debug/net5.0/osx-x64/System.IO.FileSystem.dll new file mode 100644 index 0000000..c1634ee Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.IO.FileSystem.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.IO.IsolatedStorage.dll b/bin/Debug/net5.0/osx-x64/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..b032e6f Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.IO.IsolatedStorage.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.IO.MemoryMappedFiles.dll b/bin/Debug/net5.0/osx-x64/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..3c6dcef Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.IO.MemoryMappedFiles.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.IO.Pipes.AccessControl.dll b/bin/Debug/net5.0/osx-x64/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..2cc4a99 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.IO.Pipes.AccessControl.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.IO.Pipes.dll b/bin/Debug/net5.0/osx-x64/System.IO.Pipes.dll new file mode 100644 index 0000000..bc46287 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.IO.Pipes.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.IO.UnmanagedMemoryStream.dll b/bin/Debug/net5.0/osx-x64/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..1caea4e Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.IO.UnmanagedMemoryStream.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.IO.dll b/bin/Debug/net5.0/osx-x64/System.IO.dll new file mode 100644 index 0000000..4d364ed Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.IO.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Linq.Expressions.dll b/bin/Debug/net5.0/osx-x64/System.Linq.Expressions.dll new file mode 100644 index 0000000..c2d78e7 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Linq.Expressions.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Linq.Parallel.dll b/bin/Debug/net5.0/osx-x64/System.Linq.Parallel.dll new file mode 100644 index 0000000..5fa8c67 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Linq.Parallel.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Linq.Queryable.dll b/bin/Debug/net5.0/osx-x64/System.Linq.Queryable.dll new file mode 100644 index 0000000..7b8d9e6 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Linq.Queryable.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Linq.dll b/bin/Debug/net5.0/osx-x64/System.Linq.dll new file mode 100644 index 0000000..7972594 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Linq.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Memory.dll b/bin/Debug/net5.0/osx-x64/System.Memory.dll new file mode 100644 index 0000000..bd9e670 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Memory.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.Http.Json.dll b/bin/Debug/net5.0/osx-x64/System.Net.Http.Json.dll new file mode 100644 index 0000000..379075d Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.Http.Json.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.Http.dll b/bin/Debug/net5.0/osx-x64/System.Net.Http.dll new file mode 100644 index 0000000..e4cc331 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.Http.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.HttpListener.dll b/bin/Debug/net5.0/osx-x64/System.Net.HttpListener.dll new file mode 100644 index 0000000..492406a Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.HttpListener.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.Mail.dll b/bin/Debug/net5.0/osx-x64/System.Net.Mail.dll new file mode 100644 index 0000000..e622ded Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.Mail.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.NameResolution.dll b/bin/Debug/net5.0/osx-x64/System.Net.NameResolution.dll new file mode 100644 index 0000000..89d9280 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.NameResolution.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.NetworkInformation.dll b/bin/Debug/net5.0/osx-x64/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..cae31ec Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.NetworkInformation.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.Ping.dll b/bin/Debug/net5.0/osx-x64/System.Net.Ping.dll new file mode 100644 index 0000000..3dabe4e Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.Ping.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.Primitives.dll b/bin/Debug/net5.0/osx-x64/System.Net.Primitives.dll new file mode 100644 index 0000000..0e8e8cb Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.Primitives.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.Requests.dll b/bin/Debug/net5.0/osx-x64/System.Net.Requests.dll new file mode 100644 index 0000000..2126ccf Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.Requests.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.Security.dll b/bin/Debug/net5.0/osx-x64/System.Net.Security.dll new file mode 100644 index 0000000..d6217a1 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.Security.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.ServicePoint.dll b/bin/Debug/net5.0/osx-x64/System.Net.ServicePoint.dll new file mode 100644 index 0000000..8e5b382 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.ServicePoint.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.Sockets.dll b/bin/Debug/net5.0/osx-x64/System.Net.Sockets.dll new file mode 100644 index 0000000..95001dd Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.Sockets.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.WebClient.dll b/bin/Debug/net5.0/osx-x64/System.Net.WebClient.dll new file mode 100644 index 0000000..9c5c7dc Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.WebClient.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.WebHeaderCollection.dll b/bin/Debug/net5.0/osx-x64/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..0f0082f Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.WebHeaderCollection.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.WebProxy.dll b/bin/Debug/net5.0/osx-x64/System.Net.WebProxy.dll new file mode 100644 index 0000000..4f8d674 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.WebProxy.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.WebSockets.Client.dll b/bin/Debug/net5.0/osx-x64/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..a78573d Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.WebSockets.Client.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.WebSockets.dll b/bin/Debug/net5.0/osx-x64/System.Net.WebSockets.dll new file mode 100644 index 0000000..ea035b8 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.WebSockets.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Net.dll b/bin/Debug/net5.0/osx-x64/System.Net.dll new file mode 100644 index 0000000..a4ad804 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Net.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Numerics.Vectors.dll b/bin/Debug/net5.0/osx-x64/System.Numerics.Vectors.dll new file mode 100644 index 0000000..24e766f Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Numerics.Vectors.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Numerics.dll b/bin/Debug/net5.0/osx-x64/System.Numerics.dll new file mode 100644 index 0000000..67cefa3 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Numerics.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.ObjectModel.dll b/bin/Debug/net5.0/osx-x64/System.ObjectModel.dll new file mode 100644 index 0000000..9d88510 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.ObjectModel.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Private.CoreLib.dll b/bin/Debug/net5.0/osx-x64/System.Private.CoreLib.dll new file mode 100644 index 0000000..771544d Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Private.CoreLib.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Private.DataContractSerialization.dll b/bin/Debug/net5.0/osx-x64/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..ec1da7a Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Private.DataContractSerialization.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Private.Uri.dll b/bin/Debug/net5.0/osx-x64/System.Private.Uri.dll new file mode 100644 index 0000000..852edb5 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Private.Uri.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Private.Xml.Linq.dll b/bin/Debug/net5.0/osx-x64/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..714c067 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Private.Xml.Linq.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Private.Xml.dll b/bin/Debug/net5.0/osx-x64/System.Private.Xml.dll new file mode 100644 index 0000000..86f0e71 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Private.Xml.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Reflection.DispatchProxy.dll b/bin/Debug/net5.0/osx-x64/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..a91ed9d Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Reflection.DispatchProxy.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Reflection.Emit.ILGeneration.dll b/bin/Debug/net5.0/osx-x64/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..3eaee97 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Reflection.Emit.ILGeneration.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Reflection.Emit.Lightweight.dll b/bin/Debug/net5.0/osx-x64/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..2a2cee1 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Reflection.Emit.Lightweight.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Reflection.Emit.dll b/bin/Debug/net5.0/osx-x64/System.Reflection.Emit.dll new file mode 100644 index 0000000..f734fe4 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Reflection.Emit.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Reflection.Extensions.dll b/bin/Debug/net5.0/osx-x64/System.Reflection.Extensions.dll new file mode 100644 index 0000000..f3b6c4e Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Reflection.Extensions.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Reflection.Metadata.dll b/bin/Debug/net5.0/osx-x64/System.Reflection.Metadata.dll new file mode 100644 index 0000000..d9a19e5 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Reflection.Metadata.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Reflection.Primitives.dll b/bin/Debug/net5.0/osx-x64/System.Reflection.Primitives.dll new file mode 100644 index 0000000..f87bf25 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Reflection.Primitives.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Reflection.TypeExtensions.dll b/bin/Debug/net5.0/osx-x64/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..af8bb7c Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Reflection.TypeExtensions.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Reflection.dll b/bin/Debug/net5.0/osx-x64/System.Reflection.dll new file mode 100644 index 0000000..0b009a6 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Reflection.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Resources.Reader.dll b/bin/Debug/net5.0/osx-x64/System.Resources.Reader.dll new file mode 100644 index 0000000..ca06014 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Resources.Reader.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Resources.ResourceManager.dll b/bin/Debug/net5.0/osx-x64/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..02e3d81 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Resources.ResourceManager.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Resources.Writer.dll b/bin/Debug/net5.0/osx-x64/System.Resources.Writer.dll new file mode 100644 index 0000000..6f3f74d Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Resources.Writer.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Runtime.CompilerServices.Unsafe.dll b/bin/Debug/net5.0/osx-x64/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..acc8a96 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Runtime.CompilerServices.VisualC.dll b/bin/Debug/net5.0/osx-x64/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..f40bfab Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Runtime.Extensions.dll b/bin/Debug/net5.0/osx-x64/System.Runtime.Extensions.dll new file mode 100644 index 0000000..81e9b21 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Runtime.Extensions.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Runtime.Handles.dll b/bin/Debug/net5.0/osx-x64/System.Runtime.Handles.dll new file mode 100644 index 0000000..ec201c3 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Runtime.Handles.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/bin/Debug/net5.0/osx-x64/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..9ba17aa Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Runtime.InteropServices.dll b/bin/Debug/net5.0/osx-x64/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..b228564 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Runtime.InteropServices.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Runtime.Intrinsics.dll b/bin/Debug/net5.0/osx-x64/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..0ac4aed Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Runtime.Intrinsics.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Runtime.Loader.dll b/bin/Debug/net5.0/osx-x64/System.Runtime.Loader.dll new file mode 100644 index 0000000..3ec3851 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Runtime.Loader.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Runtime.Numerics.dll b/bin/Debug/net5.0/osx-x64/System.Runtime.Numerics.dll new file mode 100644 index 0000000..ae80f09 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Runtime.Numerics.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Runtime.Serialization.Formatters.dll b/bin/Debug/net5.0/osx-x64/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..93ab028 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Runtime.Serialization.Formatters.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Runtime.Serialization.Json.dll b/bin/Debug/net5.0/osx-x64/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..d4366a5 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Runtime.Serialization.Json.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Runtime.Serialization.Primitives.dll b/bin/Debug/net5.0/osx-x64/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..91c6e1b Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Runtime.Serialization.Primitives.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Runtime.Serialization.Xml.dll b/bin/Debug/net5.0/osx-x64/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..116ad27 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Runtime.Serialization.Xml.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Runtime.Serialization.dll b/bin/Debug/net5.0/osx-x64/System.Runtime.Serialization.dll new file mode 100644 index 0000000..53eda5a Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Runtime.Serialization.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Runtime.dll b/bin/Debug/net5.0/osx-x64/System.Runtime.dll new file mode 100644 index 0000000..40935d7 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Runtime.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Security.AccessControl.dll b/bin/Debug/net5.0/osx-x64/System.Security.AccessControl.dll new file mode 100644 index 0000000..2978a61 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Security.AccessControl.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Security.Claims.dll b/bin/Debug/net5.0/osx-x64/System.Security.Claims.dll new file mode 100644 index 0000000..61cb7e6 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Security.Claims.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.Algorithms.dll b/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..a177603 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.Algorithms.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.Cng.dll b/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..92459dc Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.Cng.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.Csp.dll b/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..8185923 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.Csp.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.Encoding.dll b/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..c859ac7 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.Encoding.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.OpenSsl.dll b/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..b66c766 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.OpenSsl.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.Primitives.dll b/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..e4aef2c Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.Primitives.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.X509Certificates.dll b/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..2fe2764 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Security.Cryptography.X509Certificates.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Security.Principal.Windows.dll b/bin/Debug/net5.0/osx-x64/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..1b3be2f Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Security.Principal.Windows.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Security.Principal.dll b/bin/Debug/net5.0/osx-x64/System.Security.Principal.dll new file mode 100644 index 0000000..2a92505 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Security.Principal.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Security.SecureString.dll b/bin/Debug/net5.0/osx-x64/System.Security.SecureString.dll new file mode 100644 index 0000000..7a85cd6 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Security.SecureString.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Security.dll b/bin/Debug/net5.0/osx-x64/System.Security.dll new file mode 100644 index 0000000..2a14767 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Security.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.ServiceModel.Web.dll b/bin/Debug/net5.0/osx-x64/System.ServiceModel.Web.dll new file mode 100644 index 0000000..8327ab6 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.ServiceModel.Web.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.ServiceProcess.dll b/bin/Debug/net5.0/osx-x64/System.ServiceProcess.dll new file mode 100644 index 0000000..ae82e27 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.ServiceProcess.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Text.Encoding.CodePages.dll b/bin/Debug/net5.0/osx-x64/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..caa74f7 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Text.Encoding.CodePages.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Text.Encoding.Extensions.dll b/bin/Debug/net5.0/osx-x64/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..6052ff5 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Text.Encoding.Extensions.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Text.Encoding.dll b/bin/Debug/net5.0/osx-x64/System.Text.Encoding.dll new file mode 100644 index 0000000..a8c4863 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Text.Encoding.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Text.Encodings.Web.dll b/bin/Debug/net5.0/osx-x64/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..04f4eb1 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Text.Encodings.Web.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Text.Json.dll b/bin/Debug/net5.0/osx-x64/System.Text.Json.dll new file mode 100644 index 0000000..a1faaf0 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Text.Json.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Text.RegularExpressions.dll b/bin/Debug/net5.0/osx-x64/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..0987b79 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Text.RegularExpressions.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Threading.Channels.dll b/bin/Debug/net5.0/osx-x64/System.Threading.Channels.dll new file mode 100644 index 0000000..c740915 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Threading.Channels.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Threading.Overlapped.dll b/bin/Debug/net5.0/osx-x64/System.Threading.Overlapped.dll new file mode 100644 index 0000000..76d8361 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Threading.Overlapped.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Threading.Tasks.Dataflow.dll b/bin/Debug/net5.0/osx-x64/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..d72fa34 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Threading.Tasks.Dataflow.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Threading.Tasks.Extensions.dll b/bin/Debug/net5.0/osx-x64/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..74f13bd Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Threading.Tasks.Extensions.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Threading.Tasks.Parallel.dll b/bin/Debug/net5.0/osx-x64/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..c112a95 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Threading.Tasks.Parallel.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Threading.Tasks.dll b/bin/Debug/net5.0/osx-x64/System.Threading.Tasks.dll new file mode 100644 index 0000000..09d7310 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Threading.Tasks.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Threading.Thread.dll b/bin/Debug/net5.0/osx-x64/System.Threading.Thread.dll new file mode 100644 index 0000000..8501a07 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Threading.Thread.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Threading.ThreadPool.dll b/bin/Debug/net5.0/osx-x64/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..fcc6948 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Threading.ThreadPool.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Threading.Timer.dll b/bin/Debug/net5.0/osx-x64/System.Threading.Timer.dll new file mode 100644 index 0000000..561c2cd Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Threading.Timer.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Threading.dll b/bin/Debug/net5.0/osx-x64/System.Threading.dll new file mode 100644 index 0000000..29b2239 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Threading.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Transactions.Local.dll b/bin/Debug/net5.0/osx-x64/System.Transactions.Local.dll new file mode 100644 index 0000000..e4ad429 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Transactions.Local.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Transactions.dll b/bin/Debug/net5.0/osx-x64/System.Transactions.dll new file mode 100644 index 0000000..7da0965 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Transactions.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.ValueTuple.dll b/bin/Debug/net5.0/osx-x64/System.ValueTuple.dll new file mode 100644 index 0000000..a85ad8f Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.ValueTuple.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Web.HttpUtility.dll b/bin/Debug/net5.0/osx-x64/System.Web.HttpUtility.dll new file mode 100644 index 0000000..00c5c9e Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Web.HttpUtility.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Web.dll b/bin/Debug/net5.0/osx-x64/System.Web.dll new file mode 100644 index 0000000..87fa1f1 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Web.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Windows.dll b/bin/Debug/net5.0/osx-x64/System.Windows.dll new file mode 100644 index 0000000..e7a5219 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Windows.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Xml.Linq.dll b/bin/Debug/net5.0/osx-x64/System.Xml.Linq.dll new file mode 100644 index 0000000..8c81719 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Xml.Linq.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Xml.ReaderWriter.dll b/bin/Debug/net5.0/osx-x64/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..ff47728 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Xml.ReaderWriter.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Xml.Serialization.dll b/bin/Debug/net5.0/osx-x64/System.Xml.Serialization.dll new file mode 100644 index 0000000..9b0537c Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Xml.Serialization.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Xml.XDocument.dll b/bin/Debug/net5.0/osx-x64/System.Xml.XDocument.dll new file mode 100644 index 0000000..e9f498f Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Xml.XDocument.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Xml.XPath.XDocument.dll b/bin/Debug/net5.0/osx-x64/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..0c2f3a3 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Xml.XPath.XDocument.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Xml.XPath.dll b/bin/Debug/net5.0/osx-x64/System.Xml.XPath.dll new file mode 100644 index 0000000..e8f105a Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Xml.XPath.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Xml.XmlDocument.dll b/bin/Debug/net5.0/osx-x64/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..0f4a2c0 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Xml.XmlDocument.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Xml.XmlSerializer.dll b/bin/Debug/net5.0/osx-x64/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..846aa25 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Xml.XmlSerializer.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.Xml.dll b/bin/Debug/net5.0/osx-x64/System.Xml.dll new file mode 100644 index 0000000..ee7be00 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.Xml.dll differ diff --git a/bin/Debug/net5.0/osx-x64/System.dll b/bin/Debug/net5.0/osx-x64/System.dll new file mode 100644 index 0000000..c6d91f2 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/System.dll differ diff --git a/bin/Debug/net5.0/osx-x64/WindowsBase.dll b/bin/Debug/net5.0/osx-x64/WindowsBase.dll new file mode 100644 index 0000000..499a031 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/WindowsBase.dll differ diff --git a/bin/Debug/net5.0/osx-x64/createdump b/bin/Debug/net5.0/osx-x64/createdump new file mode 100644 index 0000000..bc87c34 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/createdump differ diff --git a/bin/Debug/net5.0/osx-x64/libSystem.IO.Compression.Native.a b/bin/Debug/net5.0/osx-x64/libSystem.IO.Compression.Native.a new file mode 100644 index 0000000..0b9cc47 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libSystem.IO.Compression.Native.a differ diff --git a/bin/Debug/net5.0/osx-x64/libSystem.IO.Compression.Native.dylib b/bin/Debug/net5.0/osx-x64/libSystem.IO.Compression.Native.dylib new file mode 100644 index 0000000..9e524d7 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libSystem.IO.Compression.Native.dylib differ diff --git a/bin/Debug/net5.0/osx-x64/libSystem.Native.a b/bin/Debug/net5.0/osx-x64/libSystem.Native.a new file mode 100644 index 0000000..9e5374d Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libSystem.Native.a differ diff --git a/bin/Debug/net5.0/osx-x64/libSystem.Native.dylib b/bin/Debug/net5.0/osx-x64/libSystem.Native.dylib new file mode 100644 index 0000000..28d7b94 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libSystem.Native.dylib differ diff --git a/bin/Debug/net5.0/osx-x64/libSystem.Net.Security.Native.a b/bin/Debug/net5.0/osx-x64/libSystem.Net.Security.Native.a new file mode 100644 index 0000000..32a8c13 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libSystem.Net.Security.Native.a differ diff --git a/bin/Debug/net5.0/osx-x64/libSystem.Net.Security.Native.dylib b/bin/Debug/net5.0/osx-x64/libSystem.Net.Security.Native.dylib new file mode 100644 index 0000000..8b604d1 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libSystem.Net.Security.Native.dylib differ diff --git a/bin/Debug/net5.0/osx-x64/libSystem.Security.Cryptography.Native.Apple.a b/bin/Debug/net5.0/osx-x64/libSystem.Security.Cryptography.Native.Apple.a new file mode 100644 index 0000000..b6d0fc1 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libSystem.Security.Cryptography.Native.Apple.a differ diff --git a/bin/Debug/net5.0/osx-x64/libSystem.Security.Cryptography.Native.Apple.dylib b/bin/Debug/net5.0/osx-x64/libSystem.Security.Cryptography.Native.Apple.dylib new file mode 100644 index 0000000..b5707cf Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libSystem.Security.Cryptography.Native.Apple.dylib differ diff --git a/bin/Debug/net5.0/osx-x64/libSystem.Security.Cryptography.Native.OpenSsl.a b/bin/Debug/net5.0/osx-x64/libSystem.Security.Cryptography.Native.OpenSsl.a new file mode 100644 index 0000000..8e9876d Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libSystem.Security.Cryptography.Native.OpenSsl.a differ diff --git a/bin/Debug/net5.0/osx-x64/libSystem.Security.Cryptography.Native.OpenSsl.dylib b/bin/Debug/net5.0/osx-x64/libSystem.Security.Cryptography.Native.OpenSsl.dylib new file mode 100644 index 0000000..a801b28 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libSystem.Security.Cryptography.Native.OpenSsl.dylib differ diff --git a/bin/Debug/net5.0/osx-x64/libclrjit.dylib b/bin/Debug/net5.0/osx-x64/libclrjit.dylib new file mode 100644 index 0000000..1357861 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libclrjit.dylib differ diff --git a/bin/Debug/net5.0/osx-x64/libcoreclr.dylib b/bin/Debug/net5.0/osx-x64/libcoreclr.dylib new file mode 100644 index 0000000..529a0c1 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libcoreclr.dylib differ diff --git a/bin/Debug/net5.0/osx-x64/libdbgshim.dylib b/bin/Debug/net5.0/osx-x64/libdbgshim.dylib new file mode 100644 index 0000000..8685246 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libdbgshim.dylib differ diff --git a/bin/Debug/net5.0/osx-x64/libhostfxr.dylib b/bin/Debug/net5.0/osx-x64/libhostfxr.dylib new file mode 100644 index 0000000..22e898e Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libhostfxr.dylib differ diff --git a/bin/Debug/net5.0/osx-x64/libhostpolicy.dylib b/bin/Debug/net5.0/osx-x64/libhostpolicy.dylib new file mode 100644 index 0000000..f797175 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libhostpolicy.dylib differ diff --git a/bin/Debug/net5.0/osx-x64/libmscordaccore.dylib b/bin/Debug/net5.0/osx-x64/libmscordaccore.dylib new file mode 100644 index 0000000..db940b2 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libmscordaccore.dylib differ diff --git a/bin/Debug/net5.0/osx-x64/libmscordbi.dylib b/bin/Debug/net5.0/osx-x64/libmscordbi.dylib new file mode 100644 index 0000000..0da4d1f Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/libmscordbi.dylib differ diff --git a/bin/Debug/net5.0/osx-x64/mscorlib.dll b/bin/Debug/net5.0/osx-x64/mscorlib.dll new file mode 100644 index 0000000..040610d Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/mscorlib.dll differ diff --git a/bin/Debug/net5.0/osx-x64/netstandard.dll b/bin/Debug/net5.0/osx-x64/netstandard.dll new file mode 100644 index 0000000..72b9d71 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/netstandard.dll differ diff --git a/bin/Debug/net5.0/osx-x64/publish/OxfordV2 b/bin/Debug/net5.0/osx-x64/publish/OxfordV2 new file mode 100644 index 0000000..7ba1cd4 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/publish/OxfordV2 differ diff --git a/bin/Debug/net5.0/osx-x64/publish/OxfordV2.pdb b/bin/Debug/net5.0/osx-x64/publish/OxfordV2.pdb new file mode 100644 index 0000000..c9dfda5 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/publish/OxfordV2.pdb differ diff --git a/bin/Debug/net5.0/osx-x64/ref/OxfordV2.dll b/bin/Debug/net5.0/osx-x64/ref/OxfordV2.dll new file mode 100644 index 0000000..cc66144 Binary files /dev/null and b/bin/Debug/net5.0/osx-x64/ref/OxfordV2.dll differ diff --git a/bin/Debug/net5.0/ref/OxfordV2.dll b/bin/Debug/net5.0/ref/OxfordV2.dll index 82f4c61..9eb9d80 100644 Binary files a/bin/Debug/net5.0/ref/OxfordV2.dll and b/bin/Debug/net5.0/ref/OxfordV2.dll differ diff --git a/bin/Debug/net5.0/win-x64/Microsoft.CSharp.dll b/bin/Debug/net5.0/win-x64/Microsoft.CSharp.dll new file mode 100644 index 0000000..6a34947 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/Microsoft.CSharp.dll differ diff --git a/bin/Debug/net5.0/win-x64/Microsoft.DiaSymReader.Native.amd64.dll b/bin/Debug/net5.0/win-x64/Microsoft.DiaSymReader.Native.amd64.dll new file mode 100644 index 0000000..e376a20 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/Microsoft.DiaSymReader.Native.amd64.dll differ diff --git a/bin/Debug/net5.0/win-x64/Microsoft.VisualBasic.Core.dll b/bin/Debug/net5.0/win-x64/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..768073d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/Microsoft.VisualBasic.Core.dll differ diff --git a/bin/Debug/net5.0/win-x64/Microsoft.VisualBasic.dll b/bin/Debug/net5.0/win-x64/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..a4badf1 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/Microsoft.VisualBasic.dll differ diff --git a/bin/Debug/net5.0/win-x64/Microsoft.Win32.Primitives.dll b/bin/Debug/net5.0/win-x64/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..985de88 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/Microsoft.Win32.Primitives.dll differ diff --git a/bin/Debug/net5.0/win-x64/Microsoft.Win32.Registry.dll b/bin/Debug/net5.0/win-x64/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..3f51a4f Binary files /dev/null and b/bin/Debug/net5.0/win-x64/Microsoft.Win32.Registry.dll differ diff --git a/bin/Debug/net5.0/win-x64/OxfordV2.deps.json b/bin/Debug/net5.0/win-x64/OxfordV2.deps.json new file mode 100644 index 0000000..66c369a --- /dev/null +++ b/bin/Debug/net5.0/win-x64/OxfordV2.deps.json @@ -0,0 +1,986 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": {}, + ".NETCoreApp,Version=v5.0/win-x64": { + "OxfordV2/1.0.0": { + "dependencies": { + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "5.0.6" + }, + "runtime": { + "OxfordV2.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.6": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "10.0.6.0", + "fileVersion": "11.0.621.22011" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.AppContext.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Buffers.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Console.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Data.Common.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Drawing.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Globalization.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Linq.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Memory.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Http.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Security.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.621.22011" + }, + "System.Text.Json.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "WindowsBase.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + } + }, + "native": { + "Microsoft.DiaSymReader.Native.amd64.dll": { + "fileVersion": "14.12.25830.2" + }, + "api-ms-win-core-console-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-console-l1-2-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-datetime-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-debug-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-errorhandling-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-file-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-file-l1-2-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-file-l2-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-handle-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-heap-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-interlocked-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-libraryloader-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-localization-l1-2-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-memory-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-namedpipe-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-processenvironment-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-processthreads-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-processthreads-l1-1-1.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-profile-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-rtlsupport-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-string-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-synch-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-synch-l1-2-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-sysinfo-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-timezone-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-core-util-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-crt-conio-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-crt-convert-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-crt-environment-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-crt-filesystem-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-crt-heap-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-crt-locale-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-crt-math-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-crt-multibyte-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-crt-private-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-crt-process-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-crt-runtime-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-crt-stdio-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-crt-string-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-crt-time-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "api-ms-win-crt-utility-l1-1-0.dll": { + "fileVersion": "10.0.19041.685" + }, + "clrcompression.dll": { + "fileVersion": "42.42.42.42424" + }, + "clretwrc.dll": { + "fileVersion": "5.0.621.22011" + }, + "clrjit.dll": { + "fileVersion": "5.0.621.22011" + }, + "coreclr.dll": { + "fileVersion": "5.0.621.22011" + }, + "createdump.exe": { + "fileVersion": "5.0.621.22011" + }, + "dbgshim.dll": { + "fileVersion": "5.0.621.22011" + }, + "hostfxr.dll": { + "fileVersion": "5.0.621.22011" + }, + "hostpolicy.dll": { + "fileVersion": "5.0.621.22011" + }, + "mscordaccore.dll": { + "fileVersion": "5.0.621.22011" + }, + "mscordaccore_amd64_amd64_5.0.621.22011.dll": { + "fileVersion": "5.0.621.22011" + }, + "mscordbi.dll": { + "fileVersion": "5.0.621.22011" + }, + "mscorrc.dll": { + "fileVersion": "5.0.621.22011" + }, + "ucrtbase.dll": { + "fileVersion": "10.0.19041.685" + } + } + } + } + }, + "libraries": { + "OxfordV2/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.6": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ], + "win-x64-aot": [ + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win10-x64": [ + "win10", + "win81-x64", + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win10-x64-aot": [ + "win10-aot", + "win10-x64", + "win10", + "win81-x64-aot", + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win7-x64": [ + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win7-x64-aot": [ + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win8-x64": [ + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win8-x64-aot": [ + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win81-x64": [ + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win81-x64-aot": [ + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/bin/Debug/net5.0/win-x64/OxfordV2.dll b/bin/Debug/net5.0/win-x64/OxfordV2.dll new file mode 100644 index 0000000..0e0768a Binary files /dev/null and b/bin/Debug/net5.0/win-x64/OxfordV2.dll differ diff --git a/bin/Debug/net5.0/win-x64/OxfordV2.exe b/bin/Debug/net5.0/win-x64/OxfordV2.exe new file mode 100644 index 0000000..c8ba50b Binary files /dev/null and b/bin/Debug/net5.0/win-x64/OxfordV2.exe differ diff --git a/bin/Debug/net5.0/win-x64/OxfordV2.pdb b/bin/Debug/net5.0/win-x64/OxfordV2.pdb new file mode 100644 index 0000000..044f29b Binary files /dev/null and b/bin/Debug/net5.0/win-x64/OxfordV2.pdb differ diff --git a/bin/Debug/net5.0/win-x64/OxfordV2.runtimeconfig.dev.json b/bin/Debug/net5.0/win-x64/OxfordV2.runtimeconfig.dev.json new file mode 100644 index 0000000..f93d20c --- /dev/null +++ b/bin/Debug/net5.0/win-x64/OxfordV2.runtimeconfig.dev.json @@ -0,0 +1,11 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\Luke\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\Luke\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ] + } +} \ No newline at end of file diff --git a/bin/Debug/net5.0/win-x64/OxfordV2.runtimeconfig.json b/bin/Debug/net5.0/win-x64/OxfordV2.runtimeconfig.json new file mode 100644 index 0000000..6d62f33 --- /dev/null +++ b/bin/Debug/net5.0/win-x64/OxfordV2.runtimeconfig.json @@ -0,0 +1,11 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "5.0.6" + } + ] + } +} \ No newline at end of file diff --git a/bin/Debug/net5.0/win-x64/System.AppContext.dll b/bin/Debug/net5.0/win-x64/System.AppContext.dll new file mode 100644 index 0000000..4ce3a84 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.AppContext.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Buffers.dll b/bin/Debug/net5.0/win-x64/System.Buffers.dll new file mode 100644 index 0000000..49b9b66 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Buffers.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Collections.Concurrent.dll b/bin/Debug/net5.0/win-x64/System.Collections.Concurrent.dll new file mode 100644 index 0000000..c24852d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Collections.Concurrent.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Collections.Immutable.dll b/bin/Debug/net5.0/win-x64/System.Collections.Immutable.dll new file mode 100644 index 0000000..d61af82 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Collections.Immutable.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Collections.NonGeneric.dll b/bin/Debug/net5.0/win-x64/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..05c006b Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Collections.NonGeneric.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Collections.Specialized.dll b/bin/Debug/net5.0/win-x64/System.Collections.Specialized.dll new file mode 100644 index 0000000..1a90b91 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Collections.Specialized.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Collections.dll b/bin/Debug/net5.0/win-x64/System.Collections.dll new file mode 100644 index 0000000..f5878d8 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Collections.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.ComponentModel.Annotations.dll b/bin/Debug/net5.0/win-x64/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..9f7bf07 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.ComponentModel.Annotations.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.ComponentModel.DataAnnotations.dll b/bin/Debug/net5.0/win-x64/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..84a8761 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.ComponentModel.DataAnnotations.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.ComponentModel.EventBasedAsync.dll b/bin/Debug/net5.0/win-x64/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..c488a73 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.ComponentModel.EventBasedAsync.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.ComponentModel.Primitives.dll b/bin/Debug/net5.0/win-x64/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..9a7cbb4 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.ComponentModel.Primitives.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.ComponentModel.TypeConverter.dll b/bin/Debug/net5.0/win-x64/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..5bab88f Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.ComponentModel.TypeConverter.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.ComponentModel.dll b/bin/Debug/net5.0/win-x64/System.ComponentModel.dll new file mode 100644 index 0000000..3911e98 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.ComponentModel.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Configuration.dll b/bin/Debug/net5.0/win-x64/System.Configuration.dll new file mode 100644 index 0000000..6e70d5d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Configuration.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Console.dll b/bin/Debug/net5.0/win-x64/System.Console.dll new file mode 100644 index 0000000..cb460c4 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Console.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Core.dll b/bin/Debug/net5.0/win-x64/System.Core.dll new file mode 100644 index 0000000..cc990c6 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Core.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Data.Common.dll b/bin/Debug/net5.0/win-x64/System.Data.Common.dll new file mode 100644 index 0000000..88f6c15 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Data.Common.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Data.DataSetExtensions.dll b/bin/Debug/net5.0/win-x64/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..20327bd Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Data.DataSetExtensions.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Data.dll b/bin/Debug/net5.0/win-x64/System.Data.dll new file mode 100644 index 0000000..459d95f Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Data.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Diagnostics.Contracts.dll b/bin/Debug/net5.0/win-x64/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..972ff77 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Diagnostics.Contracts.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Diagnostics.Debug.dll b/bin/Debug/net5.0/win-x64/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..992db1a Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Diagnostics.Debug.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Diagnostics.DiagnosticSource.dll b/bin/Debug/net5.0/win-x64/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..af0d479 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Diagnostics.DiagnosticSource.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Diagnostics.FileVersionInfo.dll b/bin/Debug/net5.0/win-x64/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..21bd10f Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Diagnostics.FileVersionInfo.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Diagnostics.Process.dll b/bin/Debug/net5.0/win-x64/System.Diagnostics.Process.dll new file mode 100644 index 0000000..4653a21 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Diagnostics.Process.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Diagnostics.StackTrace.dll b/bin/Debug/net5.0/win-x64/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..aa4a67d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Diagnostics.StackTrace.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Diagnostics.TextWriterTraceListener.dll b/bin/Debug/net5.0/win-x64/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..70b4bf7 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Diagnostics.Tools.dll b/bin/Debug/net5.0/win-x64/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..62df4c0 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Diagnostics.Tools.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Diagnostics.TraceSource.dll b/bin/Debug/net5.0/win-x64/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..fbc5442 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Diagnostics.TraceSource.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Diagnostics.Tracing.dll b/bin/Debug/net5.0/win-x64/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..7f33e25 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Diagnostics.Tracing.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Drawing.Primitives.dll b/bin/Debug/net5.0/win-x64/System.Drawing.Primitives.dll new file mode 100644 index 0000000..7c00a7c Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Drawing.Primitives.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Drawing.dll b/bin/Debug/net5.0/win-x64/System.Drawing.dll new file mode 100644 index 0000000..c2b3f5e Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Drawing.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Dynamic.Runtime.dll b/bin/Debug/net5.0/win-x64/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..b5fb0f5 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Dynamic.Runtime.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Formats.Asn1.dll b/bin/Debug/net5.0/win-x64/System.Formats.Asn1.dll new file mode 100644 index 0000000..3cfa8b3 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Formats.Asn1.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Globalization.Calendars.dll b/bin/Debug/net5.0/win-x64/System.Globalization.Calendars.dll new file mode 100644 index 0000000..edbd1cf Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Globalization.Calendars.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Globalization.Extensions.dll b/bin/Debug/net5.0/win-x64/System.Globalization.Extensions.dll new file mode 100644 index 0000000..ecabbd1 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Globalization.Extensions.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Globalization.dll b/bin/Debug/net5.0/win-x64/System.Globalization.dll new file mode 100644 index 0000000..2debb6b Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Globalization.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.IO.Compression.Brotli.dll b/bin/Debug/net5.0/win-x64/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..cb2cc90 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.IO.Compression.Brotli.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.IO.Compression.FileSystem.dll b/bin/Debug/net5.0/win-x64/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..f6d893e Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.IO.Compression.FileSystem.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.IO.Compression.ZipFile.dll b/bin/Debug/net5.0/win-x64/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..6ed66a4 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.IO.Compression.ZipFile.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.IO.Compression.dll b/bin/Debug/net5.0/win-x64/System.IO.Compression.dll new file mode 100644 index 0000000..659fff2 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.IO.Compression.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.IO.FileSystem.AccessControl.dll b/bin/Debug/net5.0/win-x64/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..9ed0178 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.IO.FileSystem.AccessControl.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.IO.FileSystem.DriveInfo.dll b/bin/Debug/net5.0/win-x64/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..7e1c7ab Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.IO.FileSystem.DriveInfo.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.IO.FileSystem.Primitives.dll b/bin/Debug/net5.0/win-x64/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..a4521b4 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.IO.FileSystem.Primitives.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.IO.FileSystem.Watcher.dll b/bin/Debug/net5.0/win-x64/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..0402ebd Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.IO.FileSystem.Watcher.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.IO.FileSystem.dll b/bin/Debug/net5.0/win-x64/System.IO.FileSystem.dll new file mode 100644 index 0000000..5e6dbda Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.IO.FileSystem.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.IO.IsolatedStorage.dll b/bin/Debug/net5.0/win-x64/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..6bd046d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.IO.IsolatedStorage.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.IO.MemoryMappedFiles.dll b/bin/Debug/net5.0/win-x64/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..b2e43e0 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.IO.MemoryMappedFiles.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.IO.Pipes.AccessControl.dll b/bin/Debug/net5.0/win-x64/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..dd35471 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.IO.Pipes.AccessControl.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.IO.Pipes.dll b/bin/Debug/net5.0/win-x64/System.IO.Pipes.dll new file mode 100644 index 0000000..a45a399 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.IO.Pipes.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.IO.UnmanagedMemoryStream.dll b/bin/Debug/net5.0/win-x64/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..1c35821 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.IO.UnmanagedMemoryStream.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.IO.dll b/bin/Debug/net5.0/win-x64/System.IO.dll new file mode 100644 index 0000000..48342bd Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.IO.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Linq.Expressions.dll b/bin/Debug/net5.0/win-x64/System.Linq.Expressions.dll new file mode 100644 index 0000000..1da4ced Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Linq.Expressions.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Linq.Parallel.dll b/bin/Debug/net5.0/win-x64/System.Linq.Parallel.dll new file mode 100644 index 0000000..9cf269f Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Linq.Parallel.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Linq.Queryable.dll b/bin/Debug/net5.0/win-x64/System.Linq.Queryable.dll new file mode 100644 index 0000000..dcb4d29 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Linq.Queryable.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Linq.dll b/bin/Debug/net5.0/win-x64/System.Linq.dll new file mode 100644 index 0000000..882ff82 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Linq.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Memory.dll b/bin/Debug/net5.0/win-x64/System.Memory.dll new file mode 100644 index 0000000..052ef0d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Memory.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.Http.Json.dll b/bin/Debug/net5.0/win-x64/System.Net.Http.Json.dll new file mode 100644 index 0000000..af72d31 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.Http.Json.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.Http.dll b/bin/Debug/net5.0/win-x64/System.Net.Http.dll new file mode 100644 index 0000000..38c427f Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.Http.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.HttpListener.dll b/bin/Debug/net5.0/win-x64/System.Net.HttpListener.dll new file mode 100644 index 0000000..f476cb5 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.HttpListener.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.Mail.dll b/bin/Debug/net5.0/win-x64/System.Net.Mail.dll new file mode 100644 index 0000000..d44b3ec Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.Mail.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.NameResolution.dll b/bin/Debug/net5.0/win-x64/System.Net.NameResolution.dll new file mode 100644 index 0000000..15e2a38 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.NameResolution.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.NetworkInformation.dll b/bin/Debug/net5.0/win-x64/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..3af042d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.NetworkInformation.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.Ping.dll b/bin/Debug/net5.0/win-x64/System.Net.Ping.dll new file mode 100644 index 0000000..999cea1 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.Ping.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.Primitives.dll b/bin/Debug/net5.0/win-x64/System.Net.Primitives.dll new file mode 100644 index 0000000..846e1bc Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.Primitives.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.Requests.dll b/bin/Debug/net5.0/win-x64/System.Net.Requests.dll new file mode 100644 index 0000000..585c43e Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.Requests.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.Security.dll b/bin/Debug/net5.0/win-x64/System.Net.Security.dll new file mode 100644 index 0000000..802ced4 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.Security.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.ServicePoint.dll b/bin/Debug/net5.0/win-x64/System.Net.ServicePoint.dll new file mode 100644 index 0000000..e38f9bd Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.ServicePoint.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.Sockets.dll b/bin/Debug/net5.0/win-x64/System.Net.Sockets.dll new file mode 100644 index 0000000..6ecaadf Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.Sockets.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.WebClient.dll b/bin/Debug/net5.0/win-x64/System.Net.WebClient.dll new file mode 100644 index 0000000..1f93e61 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.WebClient.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.WebHeaderCollection.dll b/bin/Debug/net5.0/win-x64/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..5670dd1 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.WebHeaderCollection.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.WebProxy.dll b/bin/Debug/net5.0/win-x64/System.Net.WebProxy.dll new file mode 100644 index 0000000..d78a587 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.WebProxy.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.WebSockets.Client.dll b/bin/Debug/net5.0/win-x64/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..6429cee Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.WebSockets.Client.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.WebSockets.dll b/bin/Debug/net5.0/win-x64/System.Net.WebSockets.dll new file mode 100644 index 0000000..c67d485 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.WebSockets.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Net.dll b/bin/Debug/net5.0/win-x64/System.Net.dll new file mode 100644 index 0000000..f947d0f Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Net.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Numerics.Vectors.dll b/bin/Debug/net5.0/win-x64/System.Numerics.Vectors.dll new file mode 100644 index 0000000..ee5ef8f Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Numerics.Vectors.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Numerics.dll b/bin/Debug/net5.0/win-x64/System.Numerics.dll new file mode 100644 index 0000000..42bc4b5 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Numerics.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.ObjectModel.dll b/bin/Debug/net5.0/win-x64/System.ObjectModel.dll new file mode 100644 index 0000000..7900f99 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.ObjectModel.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Private.CoreLib.dll b/bin/Debug/net5.0/win-x64/System.Private.CoreLib.dll new file mode 100644 index 0000000..e131e08 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Private.CoreLib.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Private.DataContractSerialization.dll b/bin/Debug/net5.0/win-x64/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..0dd53c4 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Private.DataContractSerialization.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Private.Uri.dll b/bin/Debug/net5.0/win-x64/System.Private.Uri.dll new file mode 100644 index 0000000..44c132c Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Private.Uri.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Private.Xml.Linq.dll b/bin/Debug/net5.0/win-x64/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..f74b3d2 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Private.Xml.Linq.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Private.Xml.dll b/bin/Debug/net5.0/win-x64/System.Private.Xml.dll new file mode 100644 index 0000000..10a01f9 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Private.Xml.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Reflection.DispatchProxy.dll b/bin/Debug/net5.0/win-x64/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..a4f6303 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Reflection.DispatchProxy.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Reflection.Emit.ILGeneration.dll b/bin/Debug/net5.0/win-x64/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..b707862 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Reflection.Emit.ILGeneration.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Reflection.Emit.Lightweight.dll b/bin/Debug/net5.0/win-x64/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..fe1d65d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Reflection.Emit.Lightweight.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Reflection.Emit.dll b/bin/Debug/net5.0/win-x64/System.Reflection.Emit.dll new file mode 100644 index 0000000..b155513 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Reflection.Emit.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Reflection.Extensions.dll b/bin/Debug/net5.0/win-x64/System.Reflection.Extensions.dll new file mode 100644 index 0000000..4fd417f Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Reflection.Extensions.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Reflection.Metadata.dll b/bin/Debug/net5.0/win-x64/System.Reflection.Metadata.dll new file mode 100644 index 0000000..78b5444 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Reflection.Metadata.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Reflection.Primitives.dll b/bin/Debug/net5.0/win-x64/System.Reflection.Primitives.dll new file mode 100644 index 0000000..69bf243 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Reflection.Primitives.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Reflection.TypeExtensions.dll b/bin/Debug/net5.0/win-x64/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..b1b21d7 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Reflection.TypeExtensions.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Reflection.dll b/bin/Debug/net5.0/win-x64/System.Reflection.dll new file mode 100644 index 0000000..7b4f3dc Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Reflection.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Resources.Reader.dll b/bin/Debug/net5.0/win-x64/System.Resources.Reader.dll new file mode 100644 index 0000000..9f16be5 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Resources.Reader.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Resources.ResourceManager.dll b/bin/Debug/net5.0/win-x64/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..c51f4aa Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Resources.ResourceManager.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Resources.Writer.dll b/bin/Debug/net5.0/win-x64/System.Resources.Writer.dll new file mode 100644 index 0000000..890eb16 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Resources.Writer.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Runtime.CompilerServices.Unsafe.dll b/bin/Debug/net5.0/win-x64/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..5af5f8f Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Runtime.CompilerServices.VisualC.dll b/bin/Debug/net5.0/win-x64/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..9022ec2 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Runtime.Extensions.dll b/bin/Debug/net5.0/win-x64/System.Runtime.Extensions.dll new file mode 100644 index 0000000..17b7818 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Runtime.Extensions.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Runtime.Handles.dll b/bin/Debug/net5.0/win-x64/System.Runtime.Handles.dll new file mode 100644 index 0000000..67ada43 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Runtime.Handles.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/bin/Debug/net5.0/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..2dc4cb5 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Runtime.InteropServices.dll b/bin/Debug/net5.0/win-x64/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..260e088 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Runtime.InteropServices.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Runtime.Intrinsics.dll b/bin/Debug/net5.0/win-x64/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..1af4c5d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Runtime.Intrinsics.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Runtime.Loader.dll b/bin/Debug/net5.0/win-x64/System.Runtime.Loader.dll new file mode 100644 index 0000000..2b8f7f3 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Runtime.Loader.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Runtime.Numerics.dll b/bin/Debug/net5.0/win-x64/System.Runtime.Numerics.dll new file mode 100644 index 0000000..6b7727d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Runtime.Numerics.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Runtime.Serialization.Formatters.dll b/bin/Debug/net5.0/win-x64/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..7f6efea Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Runtime.Serialization.Formatters.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Runtime.Serialization.Json.dll b/bin/Debug/net5.0/win-x64/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..db23a1d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Runtime.Serialization.Json.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Runtime.Serialization.Primitives.dll b/bin/Debug/net5.0/win-x64/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..7cbd7cb Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Runtime.Serialization.Primitives.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Runtime.Serialization.Xml.dll b/bin/Debug/net5.0/win-x64/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..284ddd8 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Runtime.Serialization.Xml.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Runtime.Serialization.dll b/bin/Debug/net5.0/win-x64/System.Runtime.Serialization.dll new file mode 100644 index 0000000..6625a37 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Runtime.Serialization.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Runtime.dll b/bin/Debug/net5.0/win-x64/System.Runtime.dll new file mode 100644 index 0000000..53fa9de Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Runtime.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Security.AccessControl.dll b/bin/Debug/net5.0/win-x64/System.Security.AccessControl.dll new file mode 100644 index 0000000..db400ee Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Security.AccessControl.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Security.Claims.dll b/bin/Debug/net5.0/win-x64/System.Security.Claims.dll new file mode 100644 index 0000000..5407a8c Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Security.Claims.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Security.Cryptography.Algorithms.dll b/bin/Debug/net5.0/win-x64/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..499530d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Security.Cryptography.Algorithms.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Security.Cryptography.Cng.dll b/bin/Debug/net5.0/win-x64/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..b72f603 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Security.Cryptography.Cng.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Security.Cryptography.Csp.dll b/bin/Debug/net5.0/win-x64/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..373fc74 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Security.Cryptography.Csp.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Security.Cryptography.Encoding.dll b/bin/Debug/net5.0/win-x64/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..97a9450 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Security.Cryptography.Encoding.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Security.Cryptography.OpenSsl.dll b/bin/Debug/net5.0/win-x64/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..ec1437f Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Security.Cryptography.OpenSsl.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Security.Cryptography.Primitives.dll b/bin/Debug/net5.0/win-x64/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..a8973f3 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Security.Cryptography.Primitives.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Security.Cryptography.X509Certificates.dll b/bin/Debug/net5.0/win-x64/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..b7e3cd6 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Security.Cryptography.X509Certificates.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Security.Principal.Windows.dll b/bin/Debug/net5.0/win-x64/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..65167d0 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Security.Principal.Windows.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Security.Principal.dll b/bin/Debug/net5.0/win-x64/System.Security.Principal.dll new file mode 100644 index 0000000..645eb0c Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Security.Principal.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Security.SecureString.dll b/bin/Debug/net5.0/win-x64/System.Security.SecureString.dll new file mode 100644 index 0000000..c7c4ee2 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Security.SecureString.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Security.dll b/bin/Debug/net5.0/win-x64/System.Security.dll new file mode 100644 index 0000000..99632e3 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Security.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.ServiceModel.Web.dll b/bin/Debug/net5.0/win-x64/System.ServiceModel.Web.dll new file mode 100644 index 0000000..a943569 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.ServiceModel.Web.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.ServiceProcess.dll b/bin/Debug/net5.0/win-x64/System.ServiceProcess.dll new file mode 100644 index 0000000..7c9c2fd Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.ServiceProcess.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Text.Encoding.CodePages.dll b/bin/Debug/net5.0/win-x64/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..a492f0c Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Text.Encoding.CodePages.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Text.Encoding.Extensions.dll b/bin/Debug/net5.0/win-x64/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..acca0e3 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Text.Encoding.Extensions.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Text.Encoding.dll b/bin/Debug/net5.0/win-x64/System.Text.Encoding.dll new file mode 100644 index 0000000..471d47a Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Text.Encoding.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Text.Encodings.Web.dll b/bin/Debug/net5.0/win-x64/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..f4c432b Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Text.Encodings.Web.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Text.Json.dll b/bin/Debug/net5.0/win-x64/System.Text.Json.dll new file mode 100644 index 0000000..253e850 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Text.Json.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Text.RegularExpressions.dll b/bin/Debug/net5.0/win-x64/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..bfe4e2e Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Text.RegularExpressions.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Threading.Channels.dll b/bin/Debug/net5.0/win-x64/System.Threading.Channels.dll new file mode 100644 index 0000000..0dc4e84 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Threading.Channels.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Threading.Overlapped.dll b/bin/Debug/net5.0/win-x64/System.Threading.Overlapped.dll new file mode 100644 index 0000000..7460579 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Threading.Overlapped.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Threading.Tasks.Dataflow.dll b/bin/Debug/net5.0/win-x64/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..c82f954 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Threading.Tasks.Dataflow.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Threading.Tasks.Extensions.dll b/bin/Debug/net5.0/win-x64/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..b8ba7df Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Threading.Tasks.Extensions.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Threading.Tasks.Parallel.dll b/bin/Debug/net5.0/win-x64/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..9506f66 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Threading.Tasks.Parallel.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Threading.Tasks.dll b/bin/Debug/net5.0/win-x64/System.Threading.Tasks.dll new file mode 100644 index 0000000..218acc2 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Threading.Tasks.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Threading.Thread.dll b/bin/Debug/net5.0/win-x64/System.Threading.Thread.dll new file mode 100644 index 0000000..d859280 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Threading.Thread.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Threading.ThreadPool.dll b/bin/Debug/net5.0/win-x64/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..cc25a40 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Threading.ThreadPool.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Threading.Timer.dll b/bin/Debug/net5.0/win-x64/System.Threading.Timer.dll new file mode 100644 index 0000000..5ce2f13 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Threading.Timer.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Threading.dll b/bin/Debug/net5.0/win-x64/System.Threading.dll new file mode 100644 index 0000000..bc98e3d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Threading.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Transactions.Local.dll b/bin/Debug/net5.0/win-x64/System.Transactions.Local.dll new file mode 100644 index 0000000..e6bc473 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Transactions.Local.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Transactions.dll b/bin/Debug/net5.0/win-x64/System.Transactions.dll new file mode 100644 index 0000000..d4159d7 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Transactions.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.ValueTuple.dll b/bin/Debug/net5.0/win-x64/System.ValueTuple.dll new file mode 100644 index 0000000..2a28a43 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.ValueTuple.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Web.HttpUtility.dll b/bin/Debug/net5.0/win-x64/System.Web.HttpUtility.dll new file mode 100644 index 0000000..6b5194c Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Web.HttpUtility.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Web.dll b/bin/Debug/net5.0/win-x64/System.Web.dll new file mode 100644 index 0000000..c698a9d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Web.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Windows.dll b/bin/Debug/net5.0/win-x64/System.Windows.dll new file mode 100644 index 0000000..44ecdd0 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Windows.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Xml.Linq.dll b/bin/Debug/net5.0/win-x64/System.Xml.Linq.dll new file mode 100644 index 0000000..a656bdf Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Xml.Linq.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Xml.ReaderWriter.dll b/bin/Debug/net5.0/win-x64/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..ebb5a4c Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Xml.ReaderWriter.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Xml.Serialization.dll b/bin/Debug/net5.0/win-x64/System.Xml.Serialization.dll new file mode 100644 index 0000000..5a1ac8b Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Xml.Serialization.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Xml.XDocument.dll b/bin/Debug/net5.0/win-x64/System.Xml.XDocument.dll new file mode 100644 index 0000000..5b889ea Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Xml.XDocument.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Xml.XPath.XDocument.dll b/bin/Debug/net5.0/win-x64/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..1964561 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Xml.XPath.XDocument.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Xml.XPath.dll b/bin/Debug/net5.0/win-x64/System.Xml.XPath.dll new file mode 100644 index 0000000..5fce81c Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Xml.XPath.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Xml.XmlDocument.dll b/bin/Debug/net5.0/win-x64/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..ef648b3 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Xml.XmlDocument.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Xml.XmlSerializer.dll b/bin/Debug/net5.0/win-x64/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..7212362 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Xml.XmlSerializer.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.Xml.dll b/bin/Debug/net5.0/win-x64/System.Xml.dll new file mode 100644 index 0000000..f655e00 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.Xml.dll differ diff --git a/bin/Debug/net5.0/win-x64/System.dll b/bin/Debug/net5.0/win-x64/System.dll new file mode 100644 index 0000000..85a97d4 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/System.dll differ diff --git a/bin/Debug/net5.0/win-x64/WindowsBase.dll b/bin/Debug/net5.0/win-x64/WindowsBase.dll new file mode 100644 index 0000000..bb084aa Binary files /dev/null and b/bin/Debug/net5.0/win-x64/WindowsBase.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-console-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-console-l1-1-0.dll new file mode 100644 index 0000000..59df9b7 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-console-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-console-l1-2-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-console-l1-2-0.dll new file mode 100644 index 0000000..255602a Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-console-l1-2-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-datetime-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-datetime-l1-1-0.dll new file mode 100644 index 0000000..770ae17 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-datetime-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-debug-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-debug-l1-1-0.dll new file mode 100644 index 0000000..cf936c9 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-debug-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll new file mode 100644 index 0000000..31d9e30 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-file-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-file-l1-1-0.dll new file mode 100644 index 0000000..9a6c49f Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-file-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-file-l1-2-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-file-l1-2-0.dll new file mode 100644 index 0000000..4166dc5 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-file-l1-2-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-file-l2-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-file-l2-1-0.dll new file mode 100644 index 0000000..c3730d5 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-file-l2-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-handle-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-handle-l1-1-0.dll new file mode 100644 index 0000000..c6d92b2 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-handle-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-heap-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-heap-l1-1-0.dll new file mode 100644 index 0000000..71419b9 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-heap-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-interlocked-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-interlocked-l1-1-0.dll new file mode 100644 index 0000000..69b7ad1 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-interlocked-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll new file mode 100644 index 0000000..f37503e Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-localization-l1-2-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-localization-l1-2-0.dll new file mode 100644 index 0000000..5f938cc Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-localization-l1-2-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-memory-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-memory-l1-1-0.dll new file mode 100644 index 0000000..d3f895a Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-memory-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll new file mode 100644 index 0000000..1d73129 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll new file mode 100644 index 0000000..fa2d53d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-processthreads-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-processthreads-l1-1-0.dll new file mode 100644 index 0000000..13fc5dc Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-processthreads-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-processthreads-l1-1-1.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-processthreads-l1-1-1.dll new file mode 100644 index 0000000..551ef21 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-processthreads-l1-1-1.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-profile-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-profile-l1-1-0.dll new file mode 100644 index 0000000..8f0fde3 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-profile-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll new file mode 100644 index 0000000..89f1245 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-string-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-string-l1-1-0.dll new file mode 100644 index 0000000..f2ee6db Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-string-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-synch-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-synch-l1-1-0.dll new file mode 100644 index 0000000..b9541f0 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-synch-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-synch-l1-2-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-synch-l1-2-0.dll new file mode 100644 index 0000000..2f1a432 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-synch-l1-2-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll new file mode 100644 index 0000000..1d1a376 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-timezone-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-timezone-l1-1-0.dll new file mode 100644 index 0000000..95d4fc2 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-timezone-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-core-util-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-core-util-l1-1-0.dll new file mode 100644 index 0000000..fb2fc91 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-core-util-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-crt-conio-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-crt-conio-l1-1-0.dll new file mode 100644 index 0000000..771a68c Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-crt-conio-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-crt-convert-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-crt-convert-l1-1-0.dll new file mode 100644 index 0000000..44fea9a Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-crt-convert-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-crt-environment-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-crt-environment-l1-1-0.dll new file mode 100644 index 0000000..d8a7399 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-crt-environment-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll new file mode 100644 index 0000000..4a28371 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-crt-heap-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-crt-heap-l1-1-0.dll new file mode 100644 index 0000000..0ab3a32 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-crt-heap-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-crt-locale-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-crt-locale-l1-1-0.dll new file mode 100644 index 0000000..79d46f6 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-crt-locale-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-crt-math-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-crt-math-l1-1-0.dll new file mode 100644 index 0000000..f8b2092 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-crt-math-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll new file mode 100644 index 0000000..31afd5a Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-crt-private-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-crt-private-l1-1-0.dll new file mode 100644 index 0000000..240bf46 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-crt-private-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-crt-process-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-crt-process-l1-1-0.dll new file mode 100644 index 0000000..2b517e4 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-crt-process-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-crt-runtime-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-crt-runtime-l1-1-0.dll new file mode 100644 index 0000000..0b1da81 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-crt-runtime-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-crt-stdio-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-crt-stdio-l1-1-0.dll new file mode 100644 index 0000000..74e6f6c Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-crt-stdio-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-crt-string-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-crt-string-l1-1-0.dll new file mode 100644 index 0000000..c366ed3 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-crt-string-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-crt-time-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-crt-time-l1-1-0.dll new file mode 100644 index 0000000..72c5a14 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-crt-time-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/api-ms-win-crt-utility-l1-1-0.dll b/bin/Debug/net5.0/win-x64/api-ms-win-crt-utility-l1-1-0.dll new file mode 100644 index 0000000..860f878 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/api-ms-win-crt-utility-l1-1-0.dll differ diff --git a/bin/Debug/net5.0/win-x64/clrcompression.dll b/bin/Debug/net5.0/win-x64/clrcompression.dll new file mode 100644 index 0000000..f355484 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/clrcompression.dll differ diff --git a/bin/Debug/net5.0/win-x64/clretwrc.dll b/bin/Debug/net5.0/win-x64/clretwrc.dll new file mode 100644 index 0000000..95314d5 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/clretwrc.dll differ diff --git a/bin/Debug/net5.0/win-x64/clrjit.dll b/bin/Debug/net5.0/win-x64/clrjit.dll new file mode 100644 index 0000000..7069e25 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/clrjit.dll differ diff --git a/bin/Debug/net5.0/win-x64/coreclr.dll b/bin/Debug/net5.0/win-x64/coreclr.dll new file mode 100644 index 0000000..91d50c0 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/coreclr.dll differ diff --git a/bin/Debug/net5.0/win-x64/createdump.exe b/bin/Debug/net5.0/win-x64/createdump.exe new file mode 100644 index 0000000..e115ddc Binary files /dev/null and b/bin/Debug/net5.0/win-x64/createdump.exe differ diff --git a/bin/Debug/net5.0/win-x64/dbgshim.dll b/bin/Debug/net5.0/win-x64/dbgshim.dll new file mode 100644 index 0000000..88a59ba Binary files /dev/null and b/bin/Debug/net5.0/win-x64/dbgshim.dll differ diff --git a/bin/Debug/net5.0/win-x64/hostfxr.dll b/bin/Debug/net5.0/win-x64/hostfxr.dll new file mode 100644 index 0000000..90c0684 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/hostfxr.dll differ diff --git a/bin/Debug/net5.0/win-x64/hostpolicy.dll b/bin/Debug/net5.0/win-x64/hostpolicy.dll new file mode 100644 index 0000000..8b4a408 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/hostpolicy.dll differ diff --git a/bin/Debug/net5.0/win-x64/mscordaccore.dll b/bin/Debug/net5.0/win-x64/mscordaccore.dll new file mode 100644 index 0000000..41a8d53 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/mscordaccore.dll differ diff --git a/bin/Debug/net5.0/win-x64/mscordaccore_amd64_amd64_5.0.621.22011.dll b/bin/Debug/net5.0/win-x64/mscordaccore_amd64_amd64_5.0.621.22011.dll new file mode 100644 index 0000000..2dd5cfe Binary files /dev/null and b/bin/Debug/net5.0/win-x64/mscordaccore_amd64_amd64_5.0.621.22011.dll differ diff --git a/bin/Debug/net5.0/win-x64/mscordbi.dll b/bin/Debug/net5.0/win-x64/mscordbi.dll new file mode 100644 index 0000000..f0c9e82 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/mscordbi.dll differ diff --git a/bin/Debug/net5.0/win-x64/mscorlib.dll b/bin/Debug/net5.0/win-x64/mscorlib.dll new file mode 100644 index 0000000..0115302 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/mscorlib.dll differ diff --git a/bin/Debug/net5.0/win-x64/mscorrc.dll b/bin/Debug/net5.0/win-x64/mscorrc.dll new file mode 100644 index 0000000..950b83e Binary files /dev/null and b/bin/Debug/net5.0/win-x64/mscorrc.dll differ diff --git a/bin/Debug/net5.0/win-x64/netstandard.dll b/bin/Debug/net5.0/win-x64/netstandard.dll new file mode 100644 index 0000000..86c3988 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/netstandard.dll differ diff --git a/bin/Debug/net5.0/win-x64/publish/OxfordV2.exe b/bin/Debug/net5.0/win-x64/publish/OxfordV2.exe new file mode 100644 index 0000000..193f46c Binary files /dev/null and b/bin/Debug/net5.0/win-x64/publish/OxfordV2.exe differ diff --git a/bin/Debug/net5.0/win-x64/publish/OxfordV2.pdb b/bin/Debug/net5.0/win-x64/publish/OxfordV2.pdb new file mode 100644 index 0000000..f77ed8d Binary files /dev/null and b/bin/Debug/net5.0/win-x64/publish/OxfordV2.pdb differ diff --git a/bin/Debug/net5.0/win-x64/ref/OxfordV2.dll b/bin/Debug/net5.0/win-x64/ref/OxfordV2.dll new file mode 100644 index 0000000..cc66144 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/ref/OxfordV2.dll differ diff --git a/bin/Debug/net5.0/win-x64/ucrtbase.dll b/bin/Debug/net5.0/win-x64/ucrtbase.dll new file mode 100644 index 0000000..b662575 Binary files /dev/null and b/bin/Debug/net5.0/win-x64/ucrtbase.dll differ diff --git a/ideas.txt b/ideas.txt deleted file mode 100644 index ed64eaf..0000000 --- a/ideas.txt +++ /dev/null @@ -1 +0,0 @@ -Pass the callWordsAPI the user object ? diff --git a/obj/Debug/net5.0/OxfordV2.csproj.AssemblyReference.cache b/obj/Debug/net5.0/OxfordV2.csproj.AssemblyReference.cache index f5e894a..ac591a4 100644 Binary files a/obj/Debug/net5.0/OxfordV2.csproj.AssemblyReference.cache and b/obj/Debug/net5.0/OxfordV2.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net5.0/OxfordV2.dll b/obj/Debug/net5.0/OxfordV2.dll index 84250d6..af7f6e3 100644 Binary files a/obj/Debug/net5.0/OxfordV2.dll and b/obj/Debug/net5.0/OxfordV2.dll differ diff --git a/obj/Debug/net5.0/OxfordV2.pdb b/obj/Debug/net5.0/OxfordV2.pdb index 759091d..98eda4e 100644 Binary files a/obj/Debug/net5.0/OxfordV2.pdb and b/obj/Debug/net5.0/OxfordV2.pdb differ diff --git a/obj/Debug/net5.0/osx-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/obj/Debug/net5.0/osx-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..208d6e7 --- /dev/null +++ b/obj/Debug/net5.0/osx-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/obj/Debug/net5.0/osx-x64/Link.semaphore b/obj/Debug/net5.0/osx-x64/Link.semaphore new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net5.0/osx-x64/OxfordV2.AssemblyInfo.cs b/obj/Debug/net5.0/osx-x64/OxfordV2.AssemblyInfo.cs new file mode 100644 index 0000000..def7aa4 --- /dev/null +++ b/obj/Debug/net5.0/osx-x64/OxfordV2.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("OxfordV2")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("OxfordV2")] +[assembly: System.Reflection.AssemblyTitleAttribute("OxfordV2")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net5.0/osx-x64/OxfordV2.AssemblyInfoInputs.cache b/obj/Debug/net5.0/osx-x64/OxfordV2.AssemblyInfoInputs.cache new file mode 100644 index 0000000..772e2e3 --- /dev/null +++ b/obj/Debug/net5.0/osx-x64/OxfordV2.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +fd9dade1eb04bd9d2e641dd88655d6443dfd0c2a diff --git a/obj/Debug/net5.0/osx-x64/OxfordV2.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net5.0/osx-x64/OxfordV2.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9d0701e --- /dev/null +++ b/obj/Debug/net5.0/osx-x64/OxfordV2.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = true +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/obj/Debug/net5.0/osx-x64/OxfordV2.assets.cache b/obj/Debug/net5.0/osx-x64/OxfordV2.assets.cache new file mode 100644 index 0000000..eafbff5 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/OxfordV2.assets.cache differ diff --git a/obj/Debug/net5.0/osx-x64/OxfordV2.csproj.AssemblyReference.cache b/obj/Debug/net5.0/osx-x64/OxfordV2.csproj.AssemblyReference.cache new file mode 100644 index 0000000..1710991 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/OxfordV2.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net5.0/osx-x64/OxfordV2.csproj.CopyComplete b/obj/Debug/net5.0/osx-x64/OxfordV2.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net5.0/osx-x64/OxfordV2.csproj.CoreCompileInputs.cache b/obj/Debug/net5.0/osx-x64/OxfordV2.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..04e9572 --- /dev/null +++ b/obj/Debug/net5.0/osx-x64/OxfordV2.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +b71c3d12a5431430ca8585963a80606c036494b1 diff --git a/obj/Debug/net5.0/osx-x64/OxfordV2.csproj.FileListAbsolute.txt b/obj/Debug/net5.0/osx-x64/OxfordV2.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..ae54689 --- /dev/null +++ b/obj/Debug/net5.0/osx-x64/OxfordV2.csproj.FileListAbsolute.txt @@ -0,0 +1,199 @@ +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\OxfordV2 +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\OxfordV2.deps.json +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\OxfordV2.runtimeconfig.json +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\OxfordV2.runtimeconfig.dev.json +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\OxfordV2.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\ref\OxfordV2.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\OxfordV2.pdb +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\Microsoft.CSharp.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\Microsoft.VisualBasic.Core.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\Microsoft.VisualBasic.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\Microsoft.Win32.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\Microsoft.Win32.Registry.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.AppContext.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Buffers.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Collections.Concurrent.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Collections.Immutable.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Collections.NonGeneric.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Collections.Specialized.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Collections.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.ComponentModel.Annotations.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.ComponentModel.DataAnnotations.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.ComponentModel.EventBasedAsync.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.ComponentModel.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.ComponentModel.TypeConverter.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.ComponentModel.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Configuration.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Console.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Core.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Data.Common.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Data.DataSetExtensions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Data.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Diagnostics.Contracts.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Diagnostics.Debug.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Diagnostics.DiagnosticSource.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Diagnostics.FileVersionInfo.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Diagnostics.Process.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Diagnostics.StackTrace.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Diagnostics.TextWriterTraceListener.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Diagnostics.Tools.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Diagnostics.TraceSource.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Diagnostics.Tracing.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Drawing.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Drawing.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Dynamic.Runtime.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Formats.Asn1.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Globalization.Calendars.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Globalization.Extensions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Globalization.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.IO.Compression.Brotli.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.IO.Compression.FileSystem.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.IO.Compression.ZipFile.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.IO.Compression.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.IO.FileSystem.AccessControl.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.IO.FileSystem.DriveInfo.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.IO.FileSystem.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.IO.FileSystem.Watcher.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.IO.FileSystem.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.IO.IsolatedStorage.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.IO.MemoryMappedFiles.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.IO.Pipes.AccessControl.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.IO.Pipes.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.IO.UnmanagedMemoryStream.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.IO.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Linq.Expressions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Linq.Parallel.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Linq.Queryable.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Linq.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Memory.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.Http.Json.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.Http.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.HttpListener.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.Mail.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.NameResolution.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.NetworkInformation.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.Ping.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.Requests.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.Security.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.ServicePoint.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.Sockets.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.WebClient.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.WebHeaderCollection.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.WebProxy.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.WebSockets.Client.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.WebSockets.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Net.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Numerics.Vectors.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Numerics.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.ObjectModel.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Private.DataContractSerialization.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Private.Uri.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Private.Xml.Linq.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Private.Xml.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Reflection.DispatchProxy.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Reflection.Emit.ILGeneration.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Reflection.Emit.Lightweight.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Reflection.Emit.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Reflection.Extensions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Reflection.Metadata.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Reflection.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Reflection.TypeExtensions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Reflection.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Resources.Reader.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Resources.ResourceManager.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Resources.Writer.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Runtime.CompilerServices.Unsafe.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Runtime.CompilerServices.VisualC.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Runtime.Extensions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Runtime.Handles.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Runtime.InteropServices.RuntimeInformation.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Runtime.InteropServices.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Runtime.Intrinsics.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Runtime.Loader.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Runtime.Numerics.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Runtime.Serialization.Formatters.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Runtime.Serialization.Json.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Runtime.Serialization.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Runtime.Serialization.Xml.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Runtime.Serialization.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Runtime.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Security.AccessControl.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Security.Claims.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Security.Cryptography.Algorithms.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Security.Cryptography.Cng.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Security.Cryptography.Csp.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Security.Cryptography.Encoding.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Security.Cryptography.OpenSsl.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Security.Cryptography.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Security.Cryptography.X509Certificates.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Security.Principal.Windows.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Security.Principal.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Security.SecureString.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Security.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.ServiceModel.Web.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.ServiceProcess.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Text.Encoding.CodePages.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Text.Encoding.Extensions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Text.Encoding.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Text.Encodings.Web.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Text.Json.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Text.RegularExpressions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Threading.Channels.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Threading.Overlapped.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Threading.Tasks.Dataflow.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Threading.Tasks.Extensions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Threading.Tasks.Parallel.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Threading.Tasks.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Threading.Thread.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Threading.ThreadPool.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Threading.Timer.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Threading.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Transactions.Local.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Transactions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.ValueTuple.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Web.HttpUtility.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Web.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Windows.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Xml.Linq.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Xml.ReaderWriter.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Xml.Serialization.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Xml.XDocument.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Xml.XPath.XDocument.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Xml.XPath.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Xml.XmlDocument.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Xml.XmlSerializer.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Xml.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\WindowsBase.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\mscorlib.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\netstandard.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\System.Private.CoreLib.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\createdump +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libSystem.IO.Compression.Native.a +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libSystem.IO.Compression.Native.dylib +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libSystem.Native.a +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libSystem.Native.dylib +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libSystem.Net.Security.Native.a +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libSystem.Net.Security.Native.dylib +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libSystem.Security.Cryptography.Native.Apple.a +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libSystem.Security.Cryptography.Native.Apple.dylib +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libSystem.Security.Cryptography.Native.OpenSsl.a +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libSystem.Security.Cryptography.Native.OpenSsl.dylib +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libclrjit.dylib +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libcoreclr.dylib +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libdbgshim.dylib +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libhostfxr.dylib +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libhostpolicy.dylib +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libmscordaccore.dylib +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\libmscordbi.dylib +C:\my-coding-projects\oxford\obj\Debug\net5.0\osx-x64\OxfordV2.csproj.AssemblyReference.cache +C:\my-coding-projects\oxford\obj\Debug\net5.0\osx-x64\OxfordV2.GeneratedMSBuildEditorConfig.editorconfig +C:\my-coding-projects\oxford\obj\Debug\net5.0\osx-x64\OxfordV2.AssemblyInfoInputs.cache +C:\my-coding-projects\oxford\obj\Debug\net5.0\osx-x64\OxfordV2.AssemblyInfo.cs +C:\my-coding-projects\oxford\obj\Debug\net5.0\osx-x64\OxfordV2.csproj.CoreCompileInputs.cache +C:\my-coding-projects\oxford\obj\Debug\net5.0\osx-x64\OxfordV2.csproj.CopyComplete +C:\my-coding-projects\oxford\obj\Debug\net5.0\osx-x64\OxfordV2.dll +C:\my-coding-projects\oxford\obj\Debug\net5.0\osx-x64\ref\OxfordV2.dll +C:\my-coding-projects\oxford\obj\Debug\net5.0\osx-x64\OxfordV2.pdb +C:\my-coding-projects\oxford\obj\Debug\net5.0\osx-x64\OxfordV2.genruntimeconfig.cache diff --git a/obj/Debug/net5.0/osx-x64/OxfordV2.deps.json b/obj/Debug/net5.0/osx-x64/OxfordV2.deps.json new file mode 100644 index 0000000..076c9c3 --- /dev/null +++ b/obj/Debug/net5.0/osx-x64/OxfordV2.deps.json @@ -0,0 +1,336 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0/osx-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": {}, + ".NETCoreApp,Version=v5.0/osx-x64": { + "OxfordV2/1.0.0": { + "dependencies": { + "runtimepack.Microsoft.NETCore.App.Runtime.osx-x64": "5.0.6" + }, + "runtime": { + "OxfordV2.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.osx-x64/5.0.6": { + "runtime": { + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Console.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Linq.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Memory.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Http.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Security.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "0.0.0.0" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Text.Json.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + } + }, + "native": { + "libSystem.IO.Compression.Native.dylib": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Native.dylib": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Net.Security.Native.dylib": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Security.Cryptography.Native.Apple.dylib": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Security.Cryptography.Native.OpenSsl.dylib": { + "fileVersion": "0.0.0.0" + }, + "libclrjit.dylib": { + "fileVersion": "0.0.0.0" + }, + "libcoreclr.dylib": { + "fileVersion": "0.0.0.0" + } + } + } + } + }, + "libraries": { + "OxfordV2/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.osx-x64/5.0.6": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + } + }, + "runtimes": { + "osx-x64": [ + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.10.10-x64": [ + "osx.10.10", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.10.11-x64": [ + "osx.10.11", + "osx.10.10-x64", + "osx.10.10", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.10.12-x64": [ + "osx.10.12", + "osx.10.11-x64", + "osx.10.11", + "osx.10.10-x64", + "osx.10.10", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.10.13-x64": [ + "osx.10.13", + "osx.10.12-x64", + "osx.10.12", + "osx.10.11-x64", + "osx.10.11", + "osx.10.10-x64", + "osx.10.10", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.10.14-x64": [ + "osx.10.14", + "osx.10.13-x64", + "osx.10.13", + "osx.10.12-x64", + "osx.10.12", + "osx.10.11-x64", + "osx.10.11", + "osx.10.10-x64", + "osx.10.10", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.10.15-x64": [ + "osx.10.15", + "osx.10.14-x64", + "osx.10.14", + "osx.10.13-x64", + "osx.10.13", + "osx.10.12-x64", + "osx.10.12", + "osx.10.11-x64", + "osx.10.11", + "osx.10.10-x64", + "osx.10.10", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.11-x64": [ + "osx.11", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ], + "osx.11.0-x64": [ + "osx.11.0", + "osx.11-x64", + "osx.11", + "osx-x64", + "osx", + "unix-x64", + "unix", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/obj/Debug/net5.0/osx-x64/OxfordV2.dll b/obj/Debug/net5.0/osx-x64/OxfordV2.dll new file mode 100644 index 0000000..8716d92 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/OxfordV2.dll differ diff --git a/obj/Debug/net5.0/osx-x64/OxfordV2.genruntimeconfig.cache b/obj/Debug/net5.0/osx-x64/OxfordV2.genruntimeconfig.cache new file mode 100644 index 0000000..87d21da --- /dev/null +++ b/obj/Debug/net5.0/osx-x64/OxfordV2.genruntimeconfig.cache @@ -0,0 +1 @@ +87877cf39ba477c214ee480475c94ae56c496b3e diff --git a/obj/Debug/net5.0/osx-x64/OxfordV2.pdb b/obj/Debug/net5.0/osx-x64/OxfordV2.pdb new file mode 100644 index 0000000..6084b19 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/OxfordV2.pdb differ diff --git a/obj/Debug/net5.0/osx-x64/PublishOutputs.7f8c109dd7.txt b/obj/Debug/net5.0/osx-x64/PublishOutputs.7f8c109dd7.txt new file mode 100644 index 0000000..497a67a --- /dev/null +++ b/obj/Debug/net5.0/osx-x64/PublishOutputs.7f8c109dd7.txt @@ -0,0 +1,2 @@ +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\publish\OxfordV2.pdb +C:\my-coding-projects\oxford\bin\Debug\net5.0\osx-x64\publish\OxfordV2 diff --git a/obj/Debug/net5.0/osx-x64/linked/Microsoft.Win32.Primitives.dll b/obj/Debug/net5.0/osx-x64/linked/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..abbbb2a Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/Microsoft.Win32.Primitives.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/OxfordV2.dll b/obj/Debug/net5.0/osx-x64/linked/OxfordV2.dll new file mode 100644 index 0000000..723bb74 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/OxfordV2.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/OxfordV2.pdb b/obj/Debug/net5.0/osx-x64/linked/OxfordV2.pdb new file mode 100644 index 0000000..c9dfda5 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/OxfordV2.pdb differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Collections.Concurrent.dll b/obj/Debug/net5.0/osx-x64/linked/System.Collections.Concurrent.dll new file mode 100644 index 0000000..b2e0438 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Collections.Concurrent.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Collections.Immutable.dll b/obj/Debug/net5.0/osx-x64/linked/System.Collections.Immutable.dll new file mode 100644 index 0000000..c8fef34 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Collections.Immutable.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Collections.NonGeneric.dll b/obj/Debug/net5.0/osx-x64/linked/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..31b4a6a Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Collections.NonGeneric.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Collections.dll b/obj/Debug/net5.0/osx-x64/linked/System.Collections.dll new file mode 100644 index 0000000..62e9b23 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Collections.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Console.dll b/obj/Debug/net5.0/osx-x64/linked/System.Console.dll new file mode 100644 index 0000000..be51dd1 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Console.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Diagnostics.DiagnosticSource.dll b/obj/Debug/net5.0/osx-x64/linked/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..9202b7f Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Diagnostics.DiagnosticSource.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Diagnostics.StackTrace.dll b/obj/Debug/net5.0/osx-x64/linked/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..24d1153 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Diagnostics.StackTrace.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Diagnostics.TextWriterTraceListener.dll b/obj/Debug/net5.0/osx-x64/linked/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..45c8440 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Diagnostics.TraceSource.dll b/obj/Debug/net5.0/osx-x64/linked/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..457ada7 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Diagnostics.TraceSource.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Formats.Asn1.dll b/obj/Debug/net5.0/osx-x64/linked/System.Formats.Asn1.dll new file mode 100644 index 0000000..687a5d1 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Formats.Asn1.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.IO.Compression.Brotli.dll b/obj/Debug/net5.0/osx-x64/linked/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..f77151b Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.IO.Compression.Brotli.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.IO.Compression.dll b/obj/Debug/net5.0/osx-x64/linked/System.IO.Compression.dll new file mode 100644 index 0000000..79769b4 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.IO.Compression.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.IO.FileSystem.dll b/obj/Debug/net5.0/osx-x64/linked/System.IO.FileSystem.dll new file mode 100644 index 0000000..96b7ef5 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.IO.FileSystem.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.IO.MemoryMappedFiles.dll b/obj/Debug/net5.0/osx-x64/linked/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..9f40507 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.IO.MemoryMappedFiles.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Linq.dll b/obj/Debug/net5.0/osx-x64/linked/System.Linq.dll new file mode 100644 index 0000000..cb249f5 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Linq.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Memory.dll b/obj/Debug/net5.0/osx-x64/linked/System.Memory.dll new file mode 100644 index 0000000..bd9e670 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Memory.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Net.Http.dll b/obj/Debug/net5.0/osx-x64/linked/System.Net.Http.dll new file mode 100644 index 0000000..577dd2f Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Net.Http.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Net.NameResolution.dll b/obj/Debug/net5.0/osx-x64/linked/System.Net.NameResolution.dll new file mode 100644 index 0000000..c6db653 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Net.NameResolution.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Net.NetworkInformation.dll b/obj/Debug/net5.0/osx-x64/linked/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..745991d Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Net.NetworkInformation.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Net.Primitives.dll b/obj/Debug/net5.0/osx-x64/linked/System.Net.Primitives.dll new file mode 100644 index 0000000..3c34e3c Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Net.Primitives.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Net.Security.dll b/obj/Debug/net5.0/osx-x64/linked/System.Net.Security.dll new file mode 100644 index 0000000..4aa68cf Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Net.Security.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Net.ServicePoint.dll b/obj/Debug/net5.0/osx-x64/linked/System.Net.ServicePoint.dll new file mode 100644 index 0000000..dd032d9 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Net.ServicePoint.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Net.Sockets.dll b/obj/Debug/net5.0/osx-x64/linked/System.Net.Sockets.dll new file mode 100644 index 0000000..632c069 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Net.Sockets.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.ObjectModel.dll b/obj/Debug/net5.0/osx-x64/linked/System.ObjectModel.dll new file mode 100644 index 0000000..1184832 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.ObjectModel.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Private.CoreLib.dll b/obj/Debug/net5.0/osx-x64/linked/System.Private.CoreLib.dll new file mode 100644 index 0000000..771544d Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Private.CoreLib.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Private.Uri.dll b/obj/Debug/net5.0/osx-x64/linked/System.Private.Uri.dll new file mode 100644 index 0000000..852edb5 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Private.Uri.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Private.Xml.Linq.dll b/obj/Debug/net5.0/osx-x64/linked/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..60b5d45 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Private.Xml.Linq.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Private.Xml.dll b/obj/Debug/net5.0/osx-x64/linked/System.Private.Xml.dll new file mode 100644 index 0000000..d86c58f Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Private.Xml.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Reflection.Metadata.dll b/obj/Debug/net5.0/osx-x64/linked/System.Reflection.Metadata.dll new file mode 100644 index 0000000..dcc0ec5 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Reflection.Metadata.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Runtime.CompilerServices.Unsafe.dll b/obj/Debug/net5.0/osx-x64/linked/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..737d7a9 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Runtime.InteropServices.RuntimeInformation.dll b/obj/Debug/net5.0/osx-x64/linked/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..5569a63 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Runtime.Numerics.dll b/obj/Debug/net5.0/osx-x64/linked/System.Runtime.Numerics.dll new file mode 100644 index 0000000..4da2875 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Runtime.Numerics.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Runtime.Serialization.Formatters.dll b/obj/Debug/net5.0/osx-x64/linked/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..93ab028 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Runtime.Serialization.Formatters.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Security.Cryptography.Algorithms.dll b/obj/Debug/net5.0/osx-x64/linked/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..b1bd113 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Security.Cryptography.Algorithms.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Security.Cryptography.Encoding.dll b/obj/Debug/net5.0/osx-x64/linked/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..5575b09 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Security.Cryptography.Encoding.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Security.Cryptography.Primitives.dll b/obj/Debug/net5.0/osx-x64/linked/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..586f69a Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Security.Cryptography.Primitives.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Security.Cryptography.X509Certificates.dll b/obj/Debug/net5.0/osx-x64/linked/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..f645297 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Security.Cryptography.X509Certificates.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Text.Json.dll b/obj/Debug/net5.0/osx-x64/linked/System.Text.Json.dll new file mode 100644 index 0000000..96127c9 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Text.Json.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Text.RegularExpressions.dll b/obj/Debug/net5.0/osx-x64/linked/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..13587bd Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Text.RegularExpressions.dll differ diff --git a/obj/Debug/net5.0/osx-x64/linked/System.Threading.Channels.dll b/obj/Debug/net5.0/osx-x64/linked/System.Threading.Channels.dll new file mode 100644 index 0000000..0b564fa Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/linked/System.Threading.Channels.dll differ diff --git a/obj/Debug/net5.0/osx-x64/ref/OxfordV2.dll b/obj/Debug/net5.0/osx-x64/ref/OxfordV2.dll new file mode 100644 index 0000000..cc66144 Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/ref/OxfordV2.dll differ diff --git a/obj/Debug/net5.0/osx-x64/singlefilehost b/obj/Debug/net5.0/osx-x64/singlefilehost new file mode 100644 index 0000000..b6c0c2a Binary files /dev/null and b/obj/Debug/net5.0/osx-x64/singlefilehost differ diff --git a/obj/Debug/net5.0/ref/OxfordV2.dll b/obj/Debug/net5.0/ref/OxfordV2.dll index 82f4c61..9eb9d80 100644 Binary files a/obj/Debug/net5.0/ref/OxfordV2.dll and b/obj/Debug/net5.0/ref/OxfordV2.dll differ diff --git a/obj/Debug/net5.0/win-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/obj/Debug/net5.0/win-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..208d6e7 --- /dev/null +++ b/obj/Debug/net5.0/win-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/obj/Debug/net5.0/win-x64/Link.semaphore b/obj/Debug/net5.0/win-x64/Link.semaphore new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net5.0/win-x64/OxfordV2.AssemblyInfo.cs b/obj/Debug/net5.0/win-x64/OxfordV2.AssemblyInfo.cs new file mode 100644 index 0000000..def7aa4 --- /dev/null +++ b/obj/Debug/net5.0/win-x64/OxfordV2.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("OxfordV2")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("OxfordV2")] +[assembly: System.Reflection.AssemblyTitleAttribute("OxfordV2")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net5.0/win-x64/OxfordV2.AssemblyInfoInputs.cache b/obj/Debug/net5.0/win-x64/OxfordV2.AssemblyInfoInputs.cache new file mode 100644 index 0000000..772e2e3 --- /dev/null +++ b/obj/Debug/net5.0/win-x64/OxfordV2.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +fd9dade1eb04bd9d2e641dd88655d6443dfd0c2a diff --git a/obj/Debug/net5.0/win-x64/OxfordV2.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net5.0/win-x64/OxfordV2.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9d0701e --- /dev/null +++ b/obj/Debug/net5.0/win-x64/OxfordV2.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = true +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/obj/Debug/net5.0/win-x64/OxfordV2.assets.cache b/obj/Debug/net5.0/win-x64/OxfordV2.assets.cache new file mode 100644 index 0000000..722f05e Binary files /dev/null and b/obj/Debug/net5.0/win-x64/OxfordV2.assets.cache differ diff --git a/obj/Debug/net5.0/win-x64/OxfordV2.csproj.AssemblyReference.cache b/obj/Debug/net5.0/win-x64/OxfordV2.csproj.AssemblyReference.cache new file mode 100644 index 0000000..1710991 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/OxfordV2.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net5.0/win-x64/OxfordV2.csproj.CopyComplete b/obj/Debug/net5.0/win-x64/OxfordV2.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net5.0/win-x64/OxfordV2.csproj.CoreCompileInputs.cache b/obj/Debug/net5.0/win-x64/OxfordV2.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..b584635 --- /dev/null +++ b/obj/Debug/net5.0/win-x64/OxfordV2.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +77af68d2a7c24d38618456bf80ec1fc83048e298 diff --git a/obj/Debug/net5.0/win-x64/OxfordV2.csproj.FileListAbsolute.txt b/obj/Debug/net5.0/win-x64/OxfordV2.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..3746529 --- /dev/null +++ b/obj/Debug/net5.0/win-x64/OxfordV2.csproj.FileListAbsolute.txt @@ -0,0 +1,236 @@ +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\OxfordV2.exe +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\OxfordV2.deps.json +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\OxfordV2.runtimeconfig.json +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\OxfordV2.runtimeconfig.dev.json +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\OxfordV2.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\ref\OxfordV2.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\OxfordV2.pdb +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\Microsoft.CSharp.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\Microsoft.VisualBasic.Core.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\Microsoft.VisualBasic.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\Microsoft.Win32.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\Microsoft.Win32.Registry.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.AppContext.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Buffers.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Collections.Concurrent.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Collections.Immutable.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Collections.NonGeneric.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Collections.Specialized.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Collections.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.ComponentModel.Annotations.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.ComponentModel.DataAnnotations.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.ComponentModel.EventBasedAsync.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.ComponentModel.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.ComponentModel.TypeConverter.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.ComponentModel.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Configuration.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Console.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Core.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Data.Common.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Data.DataSetExtensions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Data.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Diagnostics.Contracts.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Diagnostics.Debug.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Diagnostics.DiagnosticSource.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Diagnostics.FileVersionInfo.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Diagnostics.Process.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Diagnostics.StackTrace.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Diagnostics.TextWriterTraceListener.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Diagnostics.Tools.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Diagnostics.TraceSource.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Diagnostics.Tracing.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Drawing.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Drawing.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Dynamic.Runtime.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Formats.Asn1.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Globalization.Calendars.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Globalization.Extensions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Globalization.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.IO.Compression.Brotli.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.IO.Compression.FileSystem.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.IO.Compression.ZipFile.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.IO.Compression.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.IO.FileSystem.AccessControl.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.IO.FileSystem.DriveInfo.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.IO.FileSystem.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.IO.FileSystem.Watcher.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.IO.FileSystem.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.IO.IsolatedStorage.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.IO.MemoryMappedFiles.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.IO.Pipes.AccessControl.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.IO.Pipes.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.IO.UnmanagedMemoryStream.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.IO.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Linq.Expressions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Linq.Parallel.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Linq.Queryable.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Linq.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Memory.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.Http.Json.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.Http.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.HttpListener.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.Mail.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.NameResolution.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.NetworkInformation.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.Ping.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.Requests.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.Security.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.ServicePoint.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.Sockets.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.WebClient.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.WebHeaderCollection.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.WebProxy.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.WebSockets.Client.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.WebSockets.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Net.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Numerics.Vectors.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Numerics.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.ObjectModel.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Private.DataContractSerialization.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Private.Uri.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Private.Xml.Linq.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Private.Xml.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Reflection.DispatchProxy.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Reflection.Emit.ILGeneration.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Reflection.Emit.Lightweight.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Reflection.Emit.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Reflection.Extensions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Reflection.Metadata.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Reflection.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Reflection.TypeExtensions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Reflection.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Resources.Reader.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Resources.ResourceManager.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Resources.Writer.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Runtime.CompilerServices.Unsafe.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Runtime.CompilerServices.VisualC.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Runtime.Extensions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Runtime.Handles.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Runtime.InteropServices.RuntimeInformation.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Runtime.InteropServices.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Runtime.Intrinsics.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Runtime.Loader.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Runtime.Numerics.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Runtime.Serialization.Formatters.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Runtime.Serialization.Json.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Runtime.Serialization.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Runtime.Serialization.Xml.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Runtime.Serialization.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Runtime.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Security.AccessControl.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Security.Claims.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Security.Cryptography.Algorithms.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Security.Cryptography.Cng.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Security.Cryptography.Csp.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Security.Cryptography.Encoding.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Security.Cryptography.OpenSsl.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Security.Cryptography.Primitives.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Security.Cryptography.X509Certificates.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Security.Principal.Windows.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Security.Principal.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Security.SecureString.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Security.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.ServiceModel.Web.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.ServiceProcess.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Text.Encoding.CodePages.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Text.Encoding.Extensions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Text.Encoding.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Text.Encodings.Web.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Text.Json.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Text.RegularExpressions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Threading.Channels.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Threading.Overlapped.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Threading.Tasks.Dataflow.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Threading.Tasks.Extensions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Threading.Tasks.Parallel.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Threading.Tasks.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Threading.Thread.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Threading.ThreadPool.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Threading.Timer.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Threading.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Transactions.Local.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Transactions.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.ValueTuple.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Web.HttpUtility.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Web.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Windows.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Xml.Linq.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Xml.ReaderWriter.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Xml.Serialization.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Xml.XDocument.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Xml.XPath.XDocument.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Xml.XPath.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Xml.XmlDocument.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Xml.XmlSerializer.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Xml.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\WindowsBase.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\mscorlib.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\netstandard.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\Microsoft.DiaSymReader.Native.amd64.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\System.Private.CoreLib.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-console-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-console-l1-2-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-datetime-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-debug-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-errorhandling-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-file-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-file-l1-2-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-file-l2-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-handle-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-heap-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-interlocked-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-libraryloader-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-localization-l1-2-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-memory-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-namedpipe-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-processenvironment-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-processthreads-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-processthreads-l1-1-1.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-profile-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-rtlsupport-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-string-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-synch-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-synch-l1-2-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-sysinfo-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-timezone-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-core-util-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-crt-conio-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-crt-convert-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-crt-environment-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-crt-filesystem-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-crt-heap-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-crt-locale-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-crt-math-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-crt-multibyte-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-crt-private-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-crt-process-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-crt-runtime-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-crt-stdio-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-crt-string-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-crt-time-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\api-ms-win-crt-utility-l1-1-0.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\clrcompression.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\clretwrc.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\clrjit.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\coreclr.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\createdump.exe +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\dbgshim.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\hostfxr.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\hostpolicy.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\mscordaccore.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\mscordaccore_amd64_amd64_5.0.621.22011.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\mscordbi.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\mscorrc.dll +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\ucrtbase.dll +C:\my-coding-projects\oxford\obj\Debug\net5.0\win-x64\OxfordV2.csproj.AssemblyReference.cache +C:\my-coding-projects\oxford\obj\Debug\net5.0\win-x64\OxfordV2.GeneratedMSBuildEditorConfig.editorconfig +C:\my-coding-projects\oxford\obj\Debug\net5.0\win-x64\OxfordV2.AssemblyInfoInputs.cache +C:\my-coding-projects\oxford\obj\Debug\net5.0\win-x64\OxfordV2.AssemblyInfo.cs +C:\my-coding-projects\oxford\obj\Debug\net5.0\win-x64\OxfordV2.csproj.CoreCompileInputs.cache +C:\my-coding-projects\oxford\obj\Debug\net5.0\win-x64\OxfordV2.csproj.CopyComplete +C:\my-coding-projects\oxford\obj\Debug\net5.0\win-x64\OxfordV2.dll +C:\my-coding-projects\oxford\obj\Debug\net5.0\win-x64\ref\OxfordV2.dll +C:\my-coding-projects\oxford\obj\Debug\net5.0\win-x64\OxfordV2.pdb +C:\my-coding-projects\oxford\obj\Debug\net5.0\win-x64\OxfordV2.genruntimeconfig.cache diff --git a/obj/Debug/net5.0/win-x64/OxfordV2.deps.json b/obj/Debug/net5.0/win-x64/OxfordV2.deps.json new file mode 100644 index 0000000..86f9536 --- /dev/null +++ b/obj/Debug/net5.0/win-x64/OxfordV2.deps.json @@ -0,0 +1,353 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": {}, + ".NETCoreApp,Version=v5.0/win-x64": { + "OxfordV2/1.0.0": { + "dependencies": { + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "5.0.6" + }, + "runtime": { + "OxfordV2.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.6": { + "runtime": { + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Collections.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Console.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Linq.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Memory.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Http.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Security.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Text.Json.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.621.22011" + } + }, + "native": { + "clrcompression.dll": { + "fileVersion": "42.42.42.42424" + }, + "clrjit.dll": { + "fileVersion": "5.0.621.22011" + }, + "coreclr.dll": { + "fileVersion": "5.0.621.22011" + }, + "mscordaccore.dll": { + "fileVersion": "5.0.621.22011" + } + } + } + } + }, + "libraries": { + "OxfordV2/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.6": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ], + "win-x64-aot": [ + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win10-x64": [ + "win10", + "win81-x64", + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win10-x64-aot": [ + "win10-aot", + "win10-x64", + "win10", + "win81-x64-aot", + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win7-x64": [ + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win7-x64-aot": [ + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win8-x64": [ + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win8-x64-aot": [ + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win81-x64": [ + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win81-x64-aot": [ + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/obj/Debug/net5.0/win-x64/OxfordV2.dll b/obj/Debug/net5.0/win-x64/OxfordV2.dll new file mode 100644 index 0000000..0e0768a Binary files /dev/null and b/obj/Debug/net5.0/win-x64/OxfordV2.dll differ diff --git a/obj/Debug/net5.0/win-x64/OxfordV2.genruntimeconfig.cache b/obj/Debug/net5.0/win-x64/OxfordV2.genruntimeconfig.cache new file mode 100644 index 0000000..d75bba2 --- /dev/null +++ b/obj/Debug/net5.0/win-x64/OxfordV2.genruntimeconfig.cache @@ -0,0 +1 @@ +dd01be68a00203d23ac2c459fbcd8b1c2cc859d6 diff --git a/obj/Debug/net5.0/win-x64/OxfordV2.pdb b/obj/Debug/net5.0/win-x64/OxfordV2.pdb new file mode 100644 index 0000000..044f29b Binary files /dev/null and b/obj/Debug/net5.0/win-x64/OxfordV2.pdb differ diff --git a/obj/Debug/net5.0/win-x64/PublishOutputs.e1146c380e.txt b/obj/Debug/net5.0/win-x64/PublishOutputs.e1146c380e.txt new file mode 100644 index 0000000..4169f4f --- /dev/null +++ b/obj/Debug/net5.0/win-x64/PublishOutputs.e1146c380e.txt @@ -0,0 +1,2 @@ +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\publish\OxfordV2.pdb +C:\my-coding-projects\oxford\bin\Debug\net5.0\win-x64\publish\OxfordV2.exe diff --git a/obj/Debug/net5.0/win-x64/linked/Microsoft.Win32.Primitives.dll b/obj/Debug/net5.0/win-x64/linked/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..459c3ce Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/Microsoft.Win32.Primitives.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/OxfordV2.dll b/obj/Debug/net5.0/win-x64/linked/OxfordV2.dll new file mode 100644 index 0000000..22efcca Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/OxfordV2.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/OxfordV2.pdb b/obj/Debug/net5.0/win-x64/linked/OxfordV2.pdb new file mode 100644 index 0000000..f77ed8d Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/OxfordV2.pdb differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Collections.Concurrent.dll b/obj/Debug/net5.0/win-x64/linked/System.Collections.Concurrent.dll new file mode 100644 index 0000000..c24852d Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Collections.Concurrent.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Collections.Immutable.dll b/obj/Debug/net5.0/win-x64/linked/System.Collections.Immutable.dll new file mode 100644 index 0000000..51cdebe Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Collections.Immutable.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Collections.NonGeneric.dll b/obj/Debug/net5.0/win-x64/linked/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..dee5ba2 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Collections.NonGeneric.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Collections.dll b/obj/Debug/net5.0/win-x64/linked/System.Collections.dll new file mode 100644 index 0000000..40071fb Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Collections.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Console.dll b/obj/Debug/net5.0/win-x64/linked/System.Console.dll new file mode 100644 index 0000000..eebbb32 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Console.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Diagnostics.DiagnosticSource.dll b/obj/Debug/net5.0/win-x64/linked/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..9c6d6dd Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Diagnostics.DiagnosticSource.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Diagnostics.StackTrace.dll b/obj/Debug/net5.0/win-x64/linked/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..aa4a67d Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Diagnostics.StackTrace.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Diagnostics.TextWriterTraceListener.dll b/obj/Debug/net5.0/win-x64/linked/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..42bd6fb Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Diagnostics.TraceSource.dll b/obj/Debug/net5.0/win-x64/linked/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..74572a7 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Diagnostics.TraceSource.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Formats.Asn1.dll b/obj/Debug/net5.0/win-x64/linked/System.Formats.Asn1.dll new file mode 100644 index 0000000..949c180 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Formats.Asn1.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.IO.Compression.Brotli.dll b/obj/Debug/net5.0/win-x64/linked/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..66097b3 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.IO.Compression.Brotli.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.IO.Compression.dll b/obj/Debug/net5.0/win-x64/linked/System.IO.Compression.dll new file mode 100644 index 0000000..cbdb214 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.IO.Compression.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.IO.FileSystem.dll b/obj/Debug/net5.0/win-x64/linked/System.IO.FileSystem.dll new file mode 100644 index 0000000..be06597 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.IO.FileSystem.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.IO.MemoryMappedFiles.dll b/obj/Debug/net5.0/win-x64/linked/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..a269835 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.IO.MemoryMappedFiles.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Linq.dll b/obj/Debug/net5.0/win-x64/linked/System.Linq.dll new file mode 100644 index 0000000..c428b3a Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Linq.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Memory.dll b/obj/Debug/net5.0/win-x64/linked/System.Memory.dll new file mode 100644 index 0000000..052ef0d Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Memory.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Net.Http.dll b/obj/Debug/net5.0/win-x64/linked/System.Net.Http.dll new file mode 100644 index 0000000..e1648f9 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Net.Http.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Net.NameResolution.dll b/obj/Debug/net5.0/win-x64/linked/System.Net.NameResolution.dll new file mode 100644 index 0000000..c7897bc Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Net.NameResolution.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Net.NetworkInformation.dll b/obj/Debug/net5.0/win-x64/linked/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..e3f79b8 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Net.NetworkInformation.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Net.Primitives.dll b/obj/Debug/net5.0/win-x64/linked/System.Net.Primitives.dll new file mode 100644 index 0000000..4b9a281 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Net.Primitives.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Net.Security.dll b/obj/Debug/net5.0/win-x64/linked/System.Net.Security.dll new file mode 100644 index 0000000..894c33d Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Net.Security.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Net.ServicePoint.dll b/obj/Debug/net5.0/win-x64/linked/System.Net.ServicePoint.dll new file mode 100644 index 0000000..8d2de17 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Net.ServicePoint.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Net.Sockets.dll b/obj/Debug/net5.0/win-x64/linked/System.Net.Sockets.dll new file mode 100644 index 0000000..767a7d6 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Net.Sockets.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.ObjectModel.dll b/obj/Debug/net5.0/win-x64/linked/System.ObjectModel.dll new file mode 100644 index 0000000..00c5e01 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.ObjectModel.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Private.CoreLib.dll b/obj/Debug/net5.0/win-x64/linked/System.Private.CoreLib.dll new file mode 100644 index 0000000..e131e08 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Private.CoreLib.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Private.Uri.dll b/obj/Debug/net5.0/win-x64/linked/System.Private.Uri.dll new file mode 100644 index 0000000..44c132c Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Private.Uri.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Private.Xml.Linq.dll b/obj/Debug/net5.0/win-x64/linked/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..fdbe952 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Private.Xml.Linq.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Private.Xml.dll b/obj/Debug/net5.0/win-x64/linked/System.Private.Xml.dll new file mode 100644 index 0000000..33d3593 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Private.Xml.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Reflection.Metadata.dll b/obj/Debug/net5.0/win-x64/linked/System.Reflection.Metadata.dll new file mode 100644 index 0000000..9de6fb6 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Reflection.Metadata.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Runtime.CompilerServices.Unsafe.dll b/obj/Debug/net5.0/win-x64/linked/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..56b24f8 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Runtime.Numerics.dll b/obj/Debug/net5.0/win-x64/linked/System.Runtime.Numerics.dll new file mode 100644 index 0000000..c445927 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Runtime.Numerics.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Runtime.Serialization.Formatters.dll b/obj/Debug/net5.0/win-x64/linked/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..7f6efea Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Runtime.Serialization.Formatters.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Security.Claims.dll b/obj/Debug/net5.0/win-x64/linked/System.Security.Claims.dll new file mode 100644 index 0000000..575055e Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Security.Claims.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.Algorithms.dll b/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..9503a1e Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.Algorithms.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.Cng.dll b/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..c6224d1 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.Cng.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.Csp.dll b/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..28db259 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.Csp.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.Encoding.dll b/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..fe227b1 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.Encoding.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.Primitives.dll b/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..918b1ae Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.Primitives.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.X509Certificates.dll b/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..1689e7d Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Security.Cryptography.X509Certificates.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Security.Principal.Windows.dll b/obj/Debug/net5.0/win-x64/linked/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..59b61bf Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Security.Principal.Windows.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Text.Json.dll b/obj/Debug/net5.0/win-x64/linked/System.Text.Json.dll new file mode 100644 index 0000000..0d8aad9 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Text.Json.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Text.RegularExpressions.dll b/obj/Debug/net5.0/win-x64/linked/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..157f71a Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Text.RegularExpressions.dll differ diff --git a/obj/Debug/net5.0/win-x64/linked/System.Threading.Channels.dll b/obj/Debug/net5.0/win-x64/linked/System.Threading.Channels.dll new file mode 100644 index 0000000..1ff5c19 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/linked/System.Threading.Channels.dll differ diff --git a/obj/Debug/net5.0/win-x64/ref/OxfordV2.dll b/obj/Debug/net5.0/win-x64/ref/OxfordV2.dll new file mode 100644 index 0000000..cc66144 Binary files /dev/null and b/obj/Debug/net5.0/win-x64/ref/OxfordV2.dll differ diff --git a/obj/Debug/net5.0/win-x64/singlefilehost.exe b/obj/Debug/net5.0/win-x64/singlefilehost.exe new file mode 100644 index 0000000..c8ba50b Binary files /dev/null and b/obj/Debug/net5.0/win-x64/singlefilehost.exe differ diff --git a/todo.gef b/todo.gef index 1162609..213e4ca 100644 --- a/todo.gef +++ b/todo.gef @@ -1,19 +1,19 @@ gefv1.7 -865 -545 -1410 +1580 +777 +2357 1 360 0 -312 -272 +670 +388 Ymx1ZQ== -1 -3.703505985763e+9 +3.705696e+9 -1 0 -11 -602103132 +20 +Bqq!Gfbuvsft MQ== 0 MQ== @@ -22,17 +22,17 @@ MQ== 0 eeEnNn 1 -120 +119 1 -485 -372 +843 +488 Ymx1ZQ== -1 -3.703505985763e+9 +3.705696e+9 -1 0 -33 -Tfotft +15 +Gfbuvsft!cz!Foeqpjou MQ== 1 MQ== @@ -44,15 +44,15 @@ SSXNNX 1 360 0 -312 -272 +670 +388 Ymx1ZQ== -1 -3.703505985763e+9 +3.705696e+9 -1 0 -33 -Tfotft +15 +Gfbuvsft!cz!Foeqpjou MQ== 0 MQ== @@ -61,17 +61,17 @@ MQ== 0 eeEnNn 1 -89 +59 1 -512 -270 +843 +288 Ymx1ZQ== -1 -3.703505985763e+9 +3.7057712051420002e+9 -1 0 -33 -Foeqpjout!up!Jnqmfnfou +5 +Xpse MQ== 1 MQ== @@ -83,15 +83,15 @@ SSXNNX 1 360 0 -312 -272 +670 +388 Ymx1ZQ== -1 -3.703505985763e+9 +3.7057712051420002e+9 -1 0 -33 -Foeqpjout!up!Jnqmfnfou +5 +Xpse MQ== 0 MQ== @@ -100,18 +100,57 @@ MQ== 0 eeEnNn 1 -120 +71 1 -485 -372 +860 +326 +Ymx1ZQ== +-1 +3.7057712051420002e+9 +-1 +0 +28 +0xpset0!)mppl!vq!xpse!cz!mfnnb* +MQ== +1 +MQ== +0 +0 +0 +eeEnNn +SSXNNX +1 +360 +0 +670 +388 +Ymx1ZQ== +-1 +3.7057712051420002e+9 +-1 +0 +28 +0xpset0!)mppl!vq!xpse!cz!mfnnb* +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +1 +51 +1 +826 +263 Z3JlZW4= -1 -3.703505985763e+9 -3.703505985763e+9 +3.7057778731739998e+9 +3.7057778731739998e+9 1 100 -Rvpubujpot -MeKAizB0Zm90ZuKAizB8amV+4oCLMHJ2cHVidWpwb3TigIswDk1qdHUhcGchcnZwdWJ1anBvdCFjZm1wb2hqb2ghdXAhdWlmIXRmb3RmIXRxZmRqZ2pmZSFjeiFKRS8= +cz!qbsu!pg!tqffdi!)opvo-!wfsc-!bekfdujwf-!bew +MQ== 1 MQ== 0 @@ -122,16 +161,16 @@ SSXNNX 1 360 0 -312 -272 +670 +388 Z3JlZW4= -1 -3.703505985763e+9 -3.703505985763e+9 +3.7057778731739998e+9 +3.7057778731739998e+9 1 100 -Rvpubujpot -MeKAizB0Zm90ZuKAizB8amV+4oCLMHJ2cHVidWpwb3TigIswDk1qdHUhcGchcnZwdWJ1anBvdCFjZm1wb2hqb2ghdXAhdWlmIXRmb3RmIXRxZmRqZ2pmZSFjeiFKRS8= +cz!qbsu!pg!tqffdi!)opvo-!wfsc-!bekfdujwf-!bew +MQ== 0 MQ== 0 @@ -141,16 +180,16 @@ eeEnNn 1 89 1 -512 -270 +869 +386 Z3JlZW4= -1 -3.703505985763e+9 -3.703505985763e+9 +3.7057778731739998e+9 +3.7057778731739998e+9 1 100 -Dsfbuf!bo!pwfsmpbe!pg!HfuRvpubujpot!xijdi!jt! -MXhpamRpIWp0IXFidHRmZSFkdnNzZm91VGZvdGYhYm9lIW9wdSFydmZzeiEpanQhdHVqbW0hcWJ0dGZlIUl1dXFEbWpmb3UhZG1qZm91Ki8= +Wfscptf!pvuqvu!jodmvef!qbsu!pg!tqffdi +MQ== 0 MQ== 0 @@ -159,38 +198,56 @@ MQ== eeEnNn EENXX 1 -240 +102 2 -139 -372 +864 +432 Z3JleQ== -1 -1 -1 0 0 -Tzopoznt -MQ7igIswdGZvdGbigIswfGplfuKAizB0em9wb3pudOKAizAOTWp0dSFwZyF0em9wb3pudCFncHMhdWlmIXRmb3RmIXRxZmRqZ2pmZSFjeiFKRS8= -1 +Sfdpsefe!zfbst!)xpse!sfdpsefe!cfuxffo!uiftf!e +MQ== +0 MQ== 0 0 0 eeEnNn -SSXNNX 1 -360 +154 +3 +756 +568 +Z3JleQ== +-1 +-1 +-1 0 -312 -272 +0 +dvssfou!zfbst!)xpse!tujmm!bdujwf!cfuxffo!uift +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +1 +206 +4 +583 +568 Z3JleQ== -1 -1 -1 0 0 -Tzopoznt -MQ7igIswdGZvdGbigIswfGplfuKAizB0em9wb3pudOKAizAOTWp0dSFwZyF0em9wb3pudCFncHMhdWlmIXRmb3RmIXRxZmRqZ2pmZSFjeiFKRS8= +sfwjtfe!.!gspn!Sfwjtfe!PFE!fousjft!pomz +MQ== 0 MQ== 0 @@ -198,18 +255,37 @@ MQ== 0 eeEnNn 1 -89 +258 +5 +475 +433 +Z3JleQ== +-1 +-1 +-1 +0 +0 +Pctpmfuf!.! +MUpvZG12ZWYhcHMhRVAhT1BVIWpvZG12ZWYhcGN0Zm1mdWYhZm91c2pmdC8= +0 +MQ== +0 +0 +0 +eeEnNn 1 -512 -270 +309 +6 +513 +264 Z3JleQ== -1 -1 -1 0 0 -HfuTzopoznt!.!qbtt!uispvhi!hfu!tfotf!BQJ -MVZ0ZiFQcXVqcG9ibSFxYnNibmZ1ZnMO +fuznpmphz`uzqf +MQ== 1 MQ== 0 @@ -220,16 +296,16 @@ SSXNNX 1 360 0 -312 -272 +670 +388 Z3JleQ== -1 -1 -1 0 0 -HfuTzopoznt!.!qbtt!uispvhi!hfu!tfotf!BQJ -MVZ0ZiFQcXVqcG9ibSFxYnNibmZ1ZnMO +fuznpmphz`uzqf +MQ== 0 MQ== 0 @@ -237,17 +313,17 @@ MQ== 0 eeEnNn 1 -90 +89 1 -512 -272 +869 +386 Z3JleQ== -1 -1 -1 0 0 -Pqujpobm!qbsbnfufs!dvssfouTfotf!>!ovmm +.j/f/!dpnqpvoe!xpset!pomz MQ== 0 MQ== @@ -255,40 +331,137 @@ MQ== 0 0 eeEnNn +EENXX 1 -270 +360 +7 +669 +188 +Z3JlZW4= +-1 +3.7057712051420002e+9 +3.7057712051420002e+9 +1 +100 +wfscptf!pvuqvu +MQ== +1 +MQ== +0 +0 +0 +eeEnNn +SSXNNX +1 +360 +0 +670 +388 +Z3JlZW4= +-1 +3.7057712051420002e+9 +3.7057712051420002e+9 +1 +100 +wfscptf!pvuqvu +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +1 +89 +1 +869 +386 +Z3JlZW4= +-1 +3.7057712051420002e+9 +3.7057712051420002e+9 +1 +100 +uvso!po!boe!pgg +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +EENXX +EENXX +1 +144 2 -112 -272 +787 +550 Z3JleQ== -1 -1 -1 0 0 -Pqujpobm!qbsbnfufs!fovn!Tjcmjoh!ps!Tzopozn +0xpse0|je~0spput +MUhmdSFibW0hc3BwdXQhcGchYiF4cHNlIXBzIWRwbnFwdm9lIXhwc2Uhai9mLyFucHZ0ZmNqc2Uhc2Z1dnNvdCFzcHB1dCFncHMhbnB2dGYhYm9lIWNqc2UODg== +0 MQ== 0 +0 +0 +eeEnNn +1 +217 +3 +552 +550 +Z3JleQ== +-1 +-1 +-1 +0 +0 +0xpse0|je~0efsjwbujwft0 +MU1qdHUhcGcheHBzZXQhZWZzandmZSFwcyFkcG5xdm9lZmUhZ3NwbiF1aWYheHBzZS8= +0 +MQ== +0 +0 +0 +eeEnNn +1 +288 +4 +479 +327 +Z3JleQ== +-1 +-1 +-1 +0 +0 +0xpse|je~0tvsgbdfgpsnt0 +MSEhMi8hQm1tIXdic2pib3UhdHFmbW1qb2h0IWJvZSFncHNudCFiIXhwc2UhZGJvIXVibGYheGlmbyF2dGZlLw4hISEhCi4uIVRibmYhYnQhMHR2c2diZGZncHNudCFmb2UucXBqb3U= +0 MQ== 0 0 0 eeEnNn -EENXX -EENXX 1 360 -3 -312 -72 +5 +669 +188 Z3JleQ== -1 -1 -1 0 0 -Tjcmjoht -MeKAizB0Zm90ZuKAizB8amV+4oCLMHR6b3Bvem504oCLMA5NanR1IXBnIXR6b3Bvem50IWdwcyF1aWYhdGZvdGYhdHFmZGpnamZlIWN6IUpFLw== +0xpse0|je~0gsfrvfodz +MSEhISEweHBzZTB8amV+MGdzZnJ2Zm9kejAOISEhITIvIUhmdSFnc2ZydmZvZGYhcGchYiF4cHNlIWpvIWIhZWJ1ZnNidWYv 0 MQ== 0 @@ -296,19 +469,18 @@ MQ== 0 eeEnNn EENXX -EENXX 1 -240 +120 2 -139 -372 +843 +488 Z3JleQ== -1 -1 -1 0 0 -Jnqpsubou +Tfotf MQ== 1 MQ== @@ -318,7 +490,7 @@ MQ== eeEnNn SSXNNX 1 --1 +360 0 312 272 @@ -328,7 +500,7 @@ Z3JleQ== -1 0 0 -Jnqpsubou +Tfotf MQ== 0 MQ== @@ -337,17 +509,17 @@ MQ== 0 eeEnNn 1 -90 +71 1 -512 -272 +485 +172 Z3JleQ== -1 -1 -1 0 0 -Jg!zpv!tbwf!b!tfotf!.. +0xpse0|je~0tfotft MQ== 1 MQ== @@ -357,7 +529,7 @@ MQ== eeEnNn SSXNNX 1 --1 +360 0 312 272 @@ -367,7 +539,7 @@ Z3JleQ== -1 0 0 -Jg!zpv!tbwf!b!tfotf!.. +0xpse0|je~0tfotft MQ== 0 MQ== @@ -376,25 +548,24 @@ MQ== 0 eeEnNn 1 -89 +90 1 512 -270 +272 Z3JleQ== -1 -1 -1 0 0 -btl!jg!zpv!xbou!up!fyqpsu -MWJ0bCFqZyF6cHYheGJvdSF1cCFoZnUhcnZwdWZ0Dg== +Hfu!tfotf! +MQ== 0 MQ== 0 0 0 eeEnNn -EENXX 1 270 2 @@ -406,7 +577,27 @@ Z3JleQ== -1 0 0 -Jg!zpv!hfu!rvpuft!po!b!tfotf +Dbo!vtf!tbnf!tfmfdut!bt!0xpset0!j/f/!pctpmfuf +MURibyF2dGYhdGJuZiF0Zm1mZHV0IWJ0ITB4cHNldDAhai9mLyFwY3RwbWZ1ZiFib2UhemZic3Qv +0 +MQ== +0 +0 +0 +eeEnNn +EENXX +1 +143 +2 +485 +372 +Z3JleQ== +-1 +-1 +-1 +0 +0 +0tfotf0|je~0rvpubujpot! MQ== 1 MQ== @@ -416,7 +607,7 @@ MQ== eeEnNn SSXNNX 1 --1 +360 0 312 272 @@ -426,7 +617,7 @@ Z3JleQ== -1 0 0 -Jg!zpv!hfu!rvpuft!po!b!tfotf +0tfotf0|je~0rvpubujpot! MQ== 0 MQ== @@ -435,7 +626,7 @@ MQ== 0 eeEnNn 1 -89 +360 1 512 270 @@ -445,7 +636,7 @@ Z3JleQ== -1 0 0 -btl!jg!zpv!xbou!up!tbwf!uif!tfotf +..!Sfevoebou!xjui!#rvpubujpot#!foeqpjou MQ== 0 MQ== @@ -454,19 +645,56 @@ MQ== 0 eeEnNn EENXX -EENXX 1 -360 +216 3 312 -72 +472 +Z3JleQ== +-1 +-1 +-1 +0 +0 +0tfotf0|je~0tzopoznt0! +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +1 +288 +4 +139 +372 +Z3JleQ== +-1 +-1 +-1 +0 +0 +0tfotf0|je~0tjcmjoht0 +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +1 +360 +5 +139 +172 Z3JleQ== -1 -1 -1 0 0 -Ep!tpnfuijoh!jg!uif!xpse!jt!opu!gpvoe!jo!uif! +0tfnboujddmbtt0|je~0tfotft0 MQ== 0 MQ== @@ -474,4 +702,552 @@ MQ== 0 0 eeEnNn +1 +360 +6 +312 +72 +Z3JleQ== +-1 +-1 +-1 +0 +0 +0tfnboujddmbtt0|je~0csboditfotft0 +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +EENXX +1 +180 +3 +670 +588 +Ymx1ZQ== +-1 +3.705696e+9 +-1 +0 +90 +Rvpubujpo +MQ== +1 +MQ== +0 +0 +0 +eeEnNn +SSXNNX +1 +360 +0 +670 +388 +Ymx1ZQ== +-1 +3.705696e+9 +-1 +0 +90 +Rvpubujpo +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +1 +89 +1 +869 +386 +Ymx1ZQ== +-1 +3.705696e+9 +-1 +0 +90 +Hfu!rvpubujpot!cz!xpse!JE! +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +EENXX +1 +241 +4 +496 +488 +Z3JleQ== +-1 +-1 +-1 +0 +0 +Tvsgbdfgpsn +MQ== +1 +MQ== +0 +0 +0 +eeEnNn +SSXNNX +1 +288 +0 +670 +388 +Z3JleQ== +-1 +-1 +-1 +0 +0 +Tvsgbdfgpsn +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +1 +307 +1 +869 +386 +Z3JleQ== +-1 +-1 +-1 +0 +0 +Sfevoebou!xjui!0xpse0|je~0tvsgbdfgpsnt! +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +EENXX +1 +300 +5 +496 +288 +Z3JleQ== +-1 +-1 +-1 +0 +0 +Tfnboujddmbtt +MQ== +1 +MQ== +0 +0 +0 +eeEnNn +SSXNNX +1 +360 +0 +670 +388 +Z3JleQ== +-1 +-1 +-1 +0 +0 +Tfnboujddmbtt +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +1 +51 +1 +826 +263 +Z3JleQ== +-1 +-1 +-1 +0 +0 +0tfnboujddmbtt0|je~ +MTB0Zm5ib3VqZGRtYnR0MHxqZX4hSGZ1IXVpZiF0Zm5ib3VqZC5kbWJ0dCFzZmRwc2UhZHBzc2Z0cXBvZWpvaCF1cCF1aWYhdHZxcW1qZmUhSkUvDgoKKWovZi8hdWlmIXBzamhqb2JtIXhwc2UhbXBwbCF2cSEuIXhqbW0hc2Z1dnNvIXVpZiF0Zm5ib3VqZC5kbWJ0dCFKRSo= +0 +MQ== +0 +0 +0 +eeEnNn +1 +102 +2 +864 +432 +Z3JleQ== +-1 +-1 +-1 +0 +0 +0tfnboujddmbtt0|je~0tfotft! +MQ== +1 +MQ== +0 +0 +0 +eeEnNn +SSXNNX +1 +360 +0 +670 +388 +Z3JleQ== +-1 +-1 +-1 +0 +0 +0tfnboujddmbtt0|je~0tfotft! +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +1 +360 +1 +869 +386 +Z3JleQ== +-1 +-1 +-1 +0 +0 +Tpnfxibu!sfevoebou!xjui!tfotft! +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +EENXX +1 +154 +3 +756 +568 +Z3JleQ== +-1 +-1 +-1 +0 +0 +0tfnboujddmbtt0|je~0csboditfotft +MUpvZG12ZWZ0IXVpZiFvcHNuYm0hdGZvdGZ0IS4uIWN2dSFibXRwIWpvZG12ZWZ0IXRmb3RmdCF1aWJ1IWNmbXBvaCF1cCFkaWptZSFib2UhZWZ0ZGZvZWJvdSFkbWJ0dGZ0Lw== +0 +MQ== +0 +0 +0 +eeEnNn +1 +206 +4 +583 +568 +Z3JleQ== +-1 +-1 +-1 +0 +0 +0tfnboujddmbtt0|je~0qbsfou! +MUhmdXQhdWlmIXFic2ZvdSF0Zm5ib3VqZCFkbWJ0dCE= +0 +MQ== +0 +0 +0 +eeEnNn +1 +258 +5 +475 +433 +Z3JleQ== +-1 +-1 +-1 +0 +0 +0tfnboujddmbtt0|je~0bodftupst0 +MUhmdXQhcWJzZm91LSFoc2JvZXFic2ZvdS0hZnVkLy0= +0 +MQ== +0 +0 +0 +eeEnNn +1 +309 +6 +513 +264 +Z3JleQ== +-1 +-1 +-1 +0 +0 +0tfnboujddmbtt0|je~0eftdfoebout0 +MTB0Zm5ib3VqZGRtYnR0MHxqZX4wZGlqbWVzZm8hYm9lITB0Zm5ib3VqZGRtYnR0MHxqZX4wZWZ0ZGZvZWJvdXQwDg4wZWZ0ZGZvZWJvdXQhbmJsZnQhMGRpam1lc2ZvIXNmZXZvZWJvdSEuIWRibyFrdnR1IWVqdHFtYnohZ2pzdHUhZGlqbWUhcHMhYm1tIWVmdGRmb2Vib3V0Lw4= +0 +MQ== +0 +0 +0 +eeEnNn +1 +360 +7 +669 +188 +Z3JleQ== +-1 +-1 +-1 +0 +0 +0tfnboujddmbtt0|je~0tjcmjoht! +MVNmdXZzb3QhdWlmIXRqY21qb2ghZG1idHRmdCFwZyF1aWYhdGZuYm91amQhZG1idHQhdHFmZGpnamZlIWN6IUpF +0 +MQ== +0 +0 +0 +eeEnNn +EENXX +1 +360 +6 +669 +188 +Z3JleQ== +-1 +-1 +-1 +0 +0 +Mfnnbuj{bujpo +MQ== +1 +MQ== +0 +0 +0 +eeEnNn +SSXNNX +1 +360 +0 +670 +388 +Z3JleQ== +-1 +-1 +-1 +0 +0 +Mfnnbuj{bujpo +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +1 +89 +1 +869 +386 +Z3JleQ== +-1 +-1 +-1 +0 +0 +0mfnnbuj{f0!.!0mfnnbuj{fufyu0 +MW1mbm5idWp7ZnVmeXUhbmJsZnQhbWZubmJ1antmIXNmZXZvZWJvdS8hIUlweGZ3ZnMtIW1mbm5idWp7ZiF1Znl1IWp0IWZ5cWZzam5mb3VibSFib2UheGptbSFnYmptIWpnIXVpZiF0dXNqb2ghanQhdXBwIW1wb2gvDg== +0 +MQ== +0 +0 +0 +eeEnNn +EENXX +EENXX +1 +241 +2 +496 +488 +Ymx1ZQ== +-1 +3.705696e+9 +-1 +0 +45 +Dpnnboemjof!bsht +MQ== +1 +MQ== +0 +0 +0 +eeEnNn +SSXNNX +1 +360 +0 +670 +388 +Ymx1ZQ== +-1 +3.705696e+9 +-1 +0 +45 +Dpnnboemjof!bsht +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +1 +90 +1 +870 +388 +Ymx1ZQ== +-1 +3.705696e+9 +-1 +0 +90 +Sftfbsdi!cftu!xbz!up!qbstf!bshvnfout +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +1 +270 +2 +470 +388 +Z3JleQ== +-1 +-1 +-1 +0 +0 +jotubmm!iuuqt;00hjuivc/dpn0epuofu0dpnnboe.mjo +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +EENXX +1 +360 +3 +669 +188 +Z3JleQ== +-1 +-1 +-1 +0 +0 +Sfgbdups!BQJ@!up!kvtu!pof!bdujpo +MQ== +1 +MQ== +0 +0 +0 +eeEnNn +SSXNNX +1 +360 +0 +670 +388 +Z3JleQ== +-1 +-1 +-1 +0 +0 +Sfgbdups!BQJ@!up!kvtu!pof!bdujpo +MQ== +0 +MQ== +0 +0 +0 +eeEnNn +1 +89 +1 +869 +386 +Z3JleQ== +-1 +-1 +-1 +0 +0 +nblf!bo!pwfsmpbefe!nfuipe!uibu!ublft!b!Vsj!ps +MU5iemNmIWIhZWpnZ2ZzZm91IWRibW0hQlFKIS4hdWlidSF1YmxmdCFiIXR1c2pvaCFwcyFWU0oO +0 +MQ== +0 +0 +0 +eeEnNn +EENXX RW5kT2ZQcm9qZWN0RmlsZQ==