diff --git a/OrbisLib Guide Example/WinFormsApp2.sln b/OrbisLib Guide Example/WinFormsApp2.sln new file mode 100644 index 0000000..180415f --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.33122.133 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinFormsApp2", "WinFormsApp2\WinFormsApp2.csproj", "{393B3D8C-1DDD-4C36-8F1E-D8CE61BBE107}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {393B3D8C-1DDD-4C36-8F1E-D8CE61BBE107}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {393B3D8C-1DDD-4C36-8F1E-D8CE61BBE107}.Debug|Any CPU.Build.0 = Debug|Any CPU + {393B3D8C-1DDD-4C36-8F1E-D8CE61BBE107}.Release|Any CPU.ActiveCfg = Release|Any CPU + {393B3D8C-1DDD-4C36-8F1E-D8CE61BBE107}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F6D5167C-40BA-4CEA-9AD7-6F880FC553B6} + EndGlobalSection +EndGlobal diff --git a/OrbisLib Guide Example/WinFormsApp2/Form1.Designer.cs b/OrbisLib Guide Example/WinFormsApp2/Form1.Designer.cs new file mode 100644 index 0000000..94b9e9c --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/Form1.Designer.cs @@ -0,0 +1,74 @@ +namespace WinFormsApp2 +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.targetListBox = new System.Windows.Forms.ListBox(); + this.refreshTargetsBtn = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // targetListBox + // + this.targetListBox.FormattingEnabled = true; + this.targetListBox.ItemHeight = 25; + this.targetListBox.Location = new System.Drawing.Point(12, 12); + this.targetListBox.Name = "targetListBox"; + this.targetListBox.Size = new System.Drawing.Size(180, 179); + this.targetListBox.TabIndex = 0; + this.targetListBox.SelectedIndexChanged += new System.EventHandler(this.targetListBox_SelectedIndexChanged); + // + // refreshTargetsBtn + // + this.refreshTargetsBtn.Location = new System.Drawing.Point(12, 197); + this.refreshTargetsBtn.Name = "refreshTargetsBtn"; + this.refreshTargetsBtn.Size = new System.Drawing.Size(180, 34); + this.refreshTargetsBtn.TabIndex = 1; + this.refreshTargetsBtn.Text = "Refresh"; + this.refreshTargetsBtn.UseVisualStyleBackColor = true; + this.refreshTargetsBtn.Click += new System.EventHandler(this.refreshTargetsBtn_Click); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(788, 655); + this.Controls.Add(this.refreshTargetsBtn); + this.Controls.Add(this.targetListBox); + this.Name = "Form1"; + this.Text = "Form1"; + this.Load += new System.EventHandler(this.Form1_Load); + this.ResumeLayout(false); + + } + + #endregion + + private ListBox targetListBox; + private Button refreshTargetsBtn; + } +} \ No newline at end of file diff --git a/OrbisLib Guide Example/WinFormsApp2/Form1.cs b/OrbisLib Guide Example/WinFormsApp2/Form1.cs new file mode 100644 index 0000000..39982a4 --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/Form1.cs @@ -0,0 +1,33 @@ +using OrbisLib2; +using OrbisLib2.Targets; + +namespace WinFormsApp2 +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + private void Form1_Load(object sender, EventArgs e) + { + + } + + private void targetListBox_SelectedIndexChanged(object sender, EventArgs e) + { + TargetManager.SelectedTarget = TargetManager.GetTarget(targetListBox.GetItemText(targetListBox.SelectedItem)); + MessageBox.Show(TargetManager.SelectedTarget.Name); + } + + private void refreshTargetsBtn_Click(object sender, EventArgs e) + { + targetListBox.Items.Clear(); + foreach(Target target in TargetManager.Targets) + { + targetListBox.Items.Add(target.Name); + } + } + } +} \ No newline at end of file diff --git a/OrbisLib Guide Example/WinFormsApp2/Form1.resx b/OrbisLib Guide Example/WinFormsApp2/Form1.resx new file mode 100644 index 0000000..b5ae26c --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/Form1.resx @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/OrbisLib Guide Example/WinFormsApp2/Program.cs b/OrbisLib Guide Example/WinFormsApp2/Program.cs new file mode 100644 index 0000000..449b57f --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/Program.cs @@ -0,0 +1,17 @@ +namespace WinFormsApp2 +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.Run(new Form1()); + } + } +} \ No newline at end of file diff --git a/OrbisLib Guide Example/WinFormsApp2/WinFormsApp2.csproj b/OrbisLib Guide Example/WinFormsApp2/WinFormsApp2.csproj new file mode 100644 index 0000000..056a89b --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/WinFormsApp2.csproj @@ -0,0 +1,25 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + + + + + + + + ..\..\..\..\Downloads\OrbisLib2.dll + + + ..\..\..\..\..\..\Program Files (x86)\Orbis Suite\OrbisNeighborHood\SimpleUI.dll + + + + \ No newline at end of file diff --git a/OrbisLib Guide Example/WinFormsApp2/WinFormsApp2.csproj.user b/OrbisLib Guide Example/WinFormsApp2/WinFormsApp2.csproj.user new file mode 100644 index 0000000..f61322e --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/WinFormsApp2.csproj.user @@ -0,0 +1,8 @@ + + + + + Form + + + diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.AssemblyInfo.cs b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.AssemblyInfo.cs new file mode 100644 index 0000000..da6504c --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// 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("WinFormsApp2")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("WinFormsApp2")] +[assembly: System.Reflection.AssemblyTitleAttribute("WinFormsApp2")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.AssemblyInfoInputs.cache b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.AssemblyInfoInputs.cache new file mode 100644 index 0000000..9415d48 --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +16cfa1b0499cb34e2b56d6578a204296d42e2801 diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.Form1.resources b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.Form1.resources differ diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e759bd8 --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WinFormsApp2 +build_property.ProjectDir = C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\ diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.GlobalUsings.g.cs b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.GlobalUsings.g.cs new file mode 100644 index 0000000..fea4009 --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.GlobalUsings.g.cs @@ -0,0 +1,10 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Drawing; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; +global using global::System.Windows.Forms; diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.assets.cache b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.assets.cache new file mode 100644 index 0000000..82cac60 Binary files /dev/null and b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.assets.cache differ diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.AssemblyReference.cache b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.AssemblyReference.cache new file mode 100644 index 0000000..79749a8 Binary files /dev/null and b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.AssemblyReference.cache differ diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.BuildWithSkipAnalyzers b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.CopyComplete b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.CoreCompileInputs.cache b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..1d1642b --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +2805e59a25d5b46151744497da975439eb2d1c64 diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.FileListAbsolute.txt b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c98c356 --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.FileListAbsolute.txt @@ -0,0 +1,168 @@ +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\WinFormsApp2.exe +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\WinFormsApp2.deps.json +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\WinFormsApp2.runtimeconfig.json +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\WinFormsApp2.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\WinFormsApp2.pdb +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\OrbisLib2.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\SimpleUI.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\System.Xaml.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\PresentationFramework.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\PresentationCore.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\Microsoft.Expression.Drawing.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\UIAutomationProvider.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\UIAutomationTypes.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ReachFramework.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\System.Printing.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\PresentationUI.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\DirectWriteForwarder.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\System.Windows.Input.Manipulations.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\SimpleUI.pdb +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\cs\System.Xaml.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\de\System.Xaml.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\es\System.Xaml.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\fr\System.Xaml.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\it\System.Xaml.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ja\System.Xaml.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ko\System.Xaml.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pl\System.Xaml.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pt-BR\System.Xaml.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ru\System.Xaml.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\tr\System.Xaml.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hans\System.Xaml.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hant\System.Xaml.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\cs\PresentationFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\de\PresentationFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\es\PresentationFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\fr\PresentationFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\it\PresentationFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ja\PresentationFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ko\PresentationFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pl\PresentationFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pt-BR\PresentationFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ru\PresentationFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\tr\PresentationFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hans\PresentationFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hant\PresentationFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\cs\PresentationCore.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\de\PresentationCore.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\es\PresentationCore.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\fr\PresentationCore.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\it\PresentationCore.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ja\PresentationCore.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ko\PresentationCore.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pl\PresentationCore.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pt-BR\PresentationCore.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ru\PresentationCore.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\tr\PresentationCore.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hans\PresentationCore.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hant\PresentationCore.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\cs\UIAutomationProvider.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\de\UIAutomationProvider.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\es\UIAutomationProvider.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\fr\UIAutomationProvider.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\it\UIAutomationProvider.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ja\UIAutomationProvider.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ko\UIAutomationProvider.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pl\UIAutomationProvider.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pt-BR\UIAutomationProvider.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ru\UIAutomationProvider.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\tr\UIAutomationProvider.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hans\UIAutomationProvider.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hant\UIAutomationProvider.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\cs\UIAutomationTypes.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\de\UIAutomationTypes.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\es\UIAutomationTypes.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\fr\UIAutomationTypes.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\it\UIAutomationTypes.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ja\UIAutomationTypes.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ko\UIAutomationTypes.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pl\UIAutomationTypes.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pt-BR\UIAutomationTypes.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ru\UIAutomationTypes.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\tr\UIAutomationTypes.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hans\UIAutomationTypes.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hant\UIAutomationTypes.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\cs\ReachFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\de\ReachFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\es\ReachFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\fr\ReachFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\it\ReachFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ja\ReachFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ko\ReachFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pl\ReachFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pt-BR\ReachFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ru\ReachFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\tr\ReachFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hans\ReachFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hant\ReachFramework.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\cs\PresentationUI.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\de\PresentationUI.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\es\PresentationUI.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\fr\PresentationUI.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\it\PresentationUI.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ja\PresentationUI.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ko\PresentationUI.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pl\PresentationUI.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pt-BR\PresentationUI.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ru\PresentationUI.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\tr\PresentationUI.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hans\PresentationUI.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hant\PresentationUI.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\cs\System.Windows.Input.Manipulations.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\de\System.Windows.Input.Manipulations.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\es\System.Windows.Input.Manipulations.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\fr\System.Windows.Input.Manipulations.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\it\System.Windows.Input.Manipulations.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ja\System.Windows.Input.Manipulations.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ko\System.Windows.Input.Manipulations.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pl\System.Windows.Input.Manipulations.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\pt-BR\System.Windows.Input.Manipulations.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\ru\System.Windows.Input.Manipulations.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\tr\System.Windows.Input.Manipulations.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hans\System.Windows.Input.Manipulations.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\zh-Hant\System.Windows.Input.Manipulations.resources.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\obj\Debug\net6.0-windows\WinFormsApp2.csproj.AssemblyReference.cache +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\obj\Debug\net6.0-windows\WinFormsApp2.Form1.resources +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\obj\Debug\net6.0-windows\WinFormsApp2.csproj.GenerateResource.cache +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\obj\Debug\net6.0-windows\WinFormsApp2.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\obj\Debug\net6.0-windows\WinFormsApp2.AssemblyInfoInputs.cache +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\obj\Debug\net6.0-windows\WinFormsApp2.AssemblyInfo.cs +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\obj\Debug\net6.0-windows\WinFormsApp2.csproj.CoreCompileInputs.cache +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\obj\Debug\net6.0-windows\WinFormsApp2.csproj.CopyComplete +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\obj\Debug\net6.0-windows\WinFormsApp2.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\obj\Debug\net6.0-windows\refint\WinFormsApp2.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\obj\Debug\net6.0-windows\WinFormsApp2.pdb +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\obj\Debug\net6.0-windows\WinFormsApp2.genruntimeconfig.cache +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\obj\Debug\net6.0-windows\ref\WinFormsApp2.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\EntityFramework.SqlServer.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\EntityFramework.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\SQLite-net.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\SQLitePCLRaw.batteries_v2.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\SQLitePCLRaw.nativelibrary.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\SQLitePCLRaw.core.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\SQLitePCLRaw.provider.dynamic_cdecl.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\System.Data.SQLite.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\System.Data.SqlClient.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\System.Data.SQLite.EF6.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\win-arm64\native\sni.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\win-x64\native\sni.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\win-x86\native\sni.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\alpine-x64\native\libe_sqlite3.so +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\linux-arm\native\libe_sqlite3.so +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\linux-arm64\native\libe_sqlite3.so +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\linux-armel\native\libe_sqlite3.so +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\linux-mips64\native\libe_sqlite3.so +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\linux-musl-x64\native\libe_sqlite3.so +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\linux-x64\native\libe_sqlite3.so +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\linux-x86\native\libe_sqlite3.so +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\osx-x64\native\libe_sqlite3.dylib +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\win-arm\native\e_sqlite3.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\win-arm64\native\e_sqlite3.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\win-x64\native\e_sqlite3.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\win-x86\native\e_sqlite3.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\linux-x64\native\SQLite.Interop.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\osx-x64\native\SQLite.Interop.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\win-x64\native\SQLite.Interop.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\win-x86\native\SQLite.Interop.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\dkidd\source\repos\WinFormsApp2\WinFormsApp2\bin\Debug\net6.0-windows\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.GenerateResource.cache b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.GenerateResource.cache new file mode 100644 index 0000000..ba5c6e2 Binary files /dev/null and b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.csproj.GenerateResource.cache differ diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.designer.deps.json b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.designer.deps.json new file mode 100644 index 0000000..e6a03fa --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.designer.deps.json @@ -0,0 +1,658 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "EntityFramework/6.4.4": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "4.7.0", + "System.ComponentModel.Annotations": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Data.SqlClient": "4.8.1" + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.400.420.21404" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.400.420.21404" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "sqlite-net-pcl/1.8.116": { + "dependencies": { + "SQLitePCLRaw.bundle_green": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLite-net.dll": { + "assemblyVersion": "1.8.116.0", + "fileVersion": "1.8.116.0" + } + } + }, + "SQLitePCLRaw.bundle_green/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + }, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.core/2.0.4": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "rid": "alpine-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": { + "assemblyVersion": "2.0.4.976", + "fileVersion": "2.0.4.976" + } + } + }, + "Stub.System.Data.SQLite.Core.NetStandard/1.0.117": { + "runtime": { + "lib/netstandard2.1/System.Data.SQLite.dll": { + "assemblyVersion": "1.0.117.0", + "fileVersion": "1.0.117.0" + } + }, + "runtimeTargets": { + "runtimes/linux-x64/native/SQLite.Interop.dll": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/SQLite.Interop.dll": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/SQLite.Interop.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "1.0.117.0" + }, + "runtimes/win-x86/native/SQLite.Interop.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "1.0.117.0" + } + } + }, + "System.CodeDom/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.ComponentModel.Annotations/4.7.0": { + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "assemblyVersion": "4.3.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Data.SqlClient/4.8.1": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.1", + "fileVersion": "4.700.20.6702" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.1", + "fileVersion": "4.700.20.6702" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.1", + "fileVersion": "4.700.20.6702" + } + } + }, + "System.Data.SQLite/1.0.117": { + "dependencies": { + "System.Data.SQLite.Core": "1.0.117", + "System.Data.SQLite.EF6": "1.0.117" + } + }, + "System.Data.SQLite.Core/1.0.117": { + "dependencies": { + "Stub.System.Data.SQLite.Core.NetStandard": "1.0.117" + } + }, + "System.Data.SQLite.EF6/1.0.117": { + "dependencies": { + "EntityFramework": "6.4.4" + }, + "runtime": { + "lib/netstandard2.1/System.Data.SQLite.EF6.dll": { + "assemblyVersion": "1.0.117.0", + "fileVersion": "1.0.117.0" + } + } + }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Memory/4.5.3": {}, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.1.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + } + } + }, + "libraries": { + "EntityFramework/6.4.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yj1+/4tci7Panu3jKDHYizxwVm0Jvm7b7m057b5h4u8NUHGCR8WIWirBTw+8EptRffwftIWPBeIRGNKD1ewEMQ==", + "path": "entityframework/6.4.4", + "hashPath": "entityframework.6.4.4.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "sqlite-net-pcl/1.8.116": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W0NuwAOVVAR9LP4eZwNBIrim1p3EN7t8iNfSHXEhtzKAd4YyItekoQ8NyWYs4faVSrN2KZr/P5u4hycCjKKexg==", + "path": "sqlite-net-pcl/1.8.116", + "hashPath": "sqlite-net-pcl.1.8.116.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_green/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ubFgOHDmtTcq2LU7Ss10yHnFVMm2rFVr65Ggi+Mh514KjGx4pal98P2zSvZtWf3wbtJw6G1InBgeozBtnpEfKQ==", + "path": "sqlitepclraw.bundle_green/2.0.4", + "hashPath": "sqlitepclraw.bundle_green.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "path": "sqlitepclraw.core/2.0.4", + "hashPath": "sqlitepclraw.core.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512" + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512" + }, + "Stub.System.Data.SQLite.Core.NetStandard/1.0.117": { + "type": "package", + "serviceable": true, + "sha512": "sha512-x1zzPC/A4MmiKGDLoxLE6O5KLu7Kz7dyzhPQzlqYFTFcXmXAtM7hNNWpGw5yLEz833AnGbd/kxoitXArgR4YyA==", + "path": "stub.system.data.sqlite.core.netstandard/1.0.117", + "hashPath": "stub.system.data.sqlite.core.netstandard.1.0.117.nupkg.sha512" + }, + "System.CodeDom/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Hs9pw/kmvH3lXaZ1LFKj3pLQsiGfj2xo3sxSzwiLlRL6UcMZUTeCfoJ9Udalvn3yq5dLlPEZzYegrTQ1/LhPOQ==", + "path": "system.codedom/4.7.0", + "hashPath": "system.codedom.4.7.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==", + "path": "system.componentmodel.annotations/4.7.0", + "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "path": "system.configuration.configurationmanager/4.7.0", + "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HKLykcv6eZLbLnSMnlQ6Os4+UAmFE+AgYm92CTvJYeTOBtOYusX3qu8OoGhFrnKZax91UcLcDo5vPrqvJUTSNQ==", + "path": "system.data.sqlclient/4.8.1", + "hashPath": "system.data.sqlclient.4.8.1.nupkg.sha512" + }, + "System.Data.SQLite/1.0.117": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yL8FPHoK9LfP9mPk0FGTJlF8ZiqujKfeyn2lIdE/5LyKDhhyXRNWtOF2dN6+OpBdmO1ZSHaYr8HyOY3a3rZ4sw==", + "path": "system.data.sqlite/1.0.117", + "hashPath": "system.data.sqlite.1.0.117.nupkg.sha512" + }, + "System.Data.SQLite.Core/1.0.117": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lGfOhA3QQod9XhdWYqLgNgbgq5uZnVG6DtnhDAdPisbLpTTgZBNbeGnp+GWt8C+3EyaqBYTGJWXcxHlHKwo05A==", + "path": "system.data.sqlite.core/1.0.117", + "hashPath": "system.data.sqlite.core.1.0.117.nupkg.sha512" + }, + "System.Data.SQLite.EF6/1.0.117": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q1y/Jz1K63okYr1Jea7DyNGrOyWJiOpPHdpJ9cbjWAJanKJ0RUAZ8HQHKy9oEdxfjv0kfPR+Up9QcWni8lryCQ==", + "path": "system.data.sqlite.ef6/1.0.117", + "hashPath": "system.data.sqlite.ef6.1.0.117.nupkg.sha512" + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "path": "system.security.cryptography.protecteddata/4.7.0", + "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512" + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.designer.runtimeconfig.json b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.designer.runtimeconfig.json new file mode 100644 index 0000000..0211627 --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.designer.runtimeconfig.json @@ -0,0 +1,22 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.0" + } + ], + "additionalProbingPaths": [ + "C:\\Users\\dkidd\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\dkidd\\.nuget\\packages" + ], + "configProperties": { + "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true + } + } +} \ No newline at end of file diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.dll b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.dll new file mode 100644 index 0000000..e72d699 Binary files /dev/null and b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.dll differ diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.genruntimeconfig.cache b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.genruntimeconfig.cache new file mode 100644 index 0000000..864b67c --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.genruntimeconfig.cache @@ -0,0 +1 @@ +6124ebadfe7615b9934bce062c14c11c2b294283 diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.pdb b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.pdb new file mode 100644 index 0000000..cd0db57 Binary files /dev/null and b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/WinFormsApp2.pdb differ diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/apphost.exe b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/apphost.exe new file mode 100644 index 0000000..5ee9ed9 Binary files /dev/null and b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/apphost.exe differ diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/ref/WinFormsApp2.dll b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/ref/WinFormsApp2.dll new file mode 100644 index 0000000..fed12cc Binary files /dev/null and b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/ref/WinFormsApp2.dll differ diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/refint/WinFormsApp2.dll b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/refint/WinFormsApp2.dll new file mode 100644 index 0000000..fed12cc Binary files /dev/null and b/OrbisLib Guide Example/WinFormsApp2/obj/Debug/net6.0-windows/refint/WinFormsApp2.dll differ diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/WinFormsApp2.csproj.nuget.dgspec.json b/OrbisLib Guide Example/WinFormsApp2/obj/WinFormsApp2.csproj.nuget.dgspec.json new file mode 100644 index 0000000..5f94a00 --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/obj/WinFormsApp2.csproj.nuget.dgspec.json @@ -0,0 +1,76 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\dkidd\\source\\repos\\WinFormsApp2\\WinFormsApp2\\WinFormsApp2.csproj": {} + }, + "projects": { + "C:\\Users\\dkidd\\source\\repos\\WinFormsApp2\\WinFormsApp2\\WinFormsApp2.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\dkidd\\source\\repos\\WinFormsApp2\\WinFormsApp2\\WinFormsApp2.csproj", + "projectName": "WinFormsApp2", + "projectPath": "C:\\Users\\dkidd\\source\\repos\\WinFormsApp2\\WinFormsApp2\\WinFormsApp2.csproj", + "packagesPath": "C:\\Users\\dkidd\\.nuget\\packages\\", + "outputPath": "C:\\Users\\dkidd\\source\\repos\\WinFormsApp2\\WinFormsApp2\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\dkidd\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "System.Data.SQLite": { + "target": "Package", + "version": "[1.0.117, )" + }, + "sqlite-net-pcl": { + "target": "Package", + "version": "[1.8.116, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/WinFormsApp2.csproj.nuget.g.props b/OrbisLib Guide Example/WinFormsApp2/obj/WinFormsApp2.csproj.nuget.g.props new file mode 100644 index 0000000..e33467b --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/obj/WinFormsApp2.csproj.nuget.g.props @@ -0,0 +1,22 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\dkidd\.nuget\packages\ + PackageReference + 6.4.0 + + + + + + + + + C:\Users\dkidd\.nuget\packages\entityframework\6.4.4 + C:\Users\dkidd\.nuget\packages\system.data.sqlite.ef6\1.0.117 + + \ No newline at end of file diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/WinFormsApp2.csproj.nuget.g.targets b/OrbisLib Guide Example/WinFormsApp2/obj/WinFormsApp2.csproj.nuget.g.targets new file mode 100644 index 0000000..a7a92ce --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/obj/WinFormsApp2.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/project.assets.json b/OrbisLib Guide Example/WinFormsApp2/obj/project.assets.json new file mode 100644 index 0000000..bdf4e50 --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/obj/project.assets.json @@ -0,0 +1,1526 @@ +{ + "version": 3, + "targets": { + "net6.0-windows7.0": { + "EntityFramework/6.4.4": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.CodeDom": "4.7.0", + "System.ComponentModel.Annotations": "4.7.0", + "System.Configuration.ConfigurationManager": "4.7.0", + "System.Data.SqlClient": "4.8.1" + }, + "compile": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "related": ".xml" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "related": ".SqlServer.xml;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/EntityFramework.SqlServer.dll": { + "related": ".xml" + }, + "lib/netstandard2.1/EntityFramework.dll": { + "related": ".SqlServer.xml;.xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.0/EntityFramework.props": {}, + "buildTransitive/netcoreapp3.0/EntityFramework.targets": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "sqlite-net-pcl/1.8.116": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.bundle_green": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/SQLite-net.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/SQLite-net.dll": { + "related": ".xml" + } + } + }, + "SQLitePCLRaw.bundle_green/2.0.4": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4", + "SQLitePCLRaw.lib.e_sqlite3": "2.0.4", + "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.4" + }, + "compile": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll": {}, + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll": {} + } + }, + "SQLitePCLRaw.core/2.0.4": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "runtimeTargets": { + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "alpine-x64" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.0.4" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {} + } + }, + "Stub.System.Data.SQLite.Core.NetStandard/1.0.117": { + "type": "package", + "compile": { + "lib/netstandard2.1/System.Data.SQLite.dll": { + "related": ".dll.altconfig;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.Data.SQLite.dll": { + "related": ".dll.altconfig;.xml" + } + }, + "runtimeTargets": { + "runtimes/linux-x64/native/SQLite.Interop.dll": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/osx-x64/native/SQLite.Interop.dll": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-x64/native/SQLite.Interop.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/SQLite.Interop.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.CodeDom/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": { + "related": ".xml" + } + } + }, + "System.ComponentModel.Annotations/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Security.Permissions": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + } + }, + "System.Data.SqlClient/4.8.1": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "compile": { + "ref/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Data.SQLite/1.0.117": { + "type": "package", + "dependencies": { + "System.Data.SQLite.Core": "[1.0.117]", + "System.Data.SQLite.EF6": "[1.0.117]" + } + }, + "System.Data.SQLite.Core/1.0.117": { + "type": "package", + "dependencies": { + "Stub.System.Data.SQLite.Core.NetStandard": "[1.0.117]" + } + }, + "System.Data.SQLite.EF6/1.0.117": { + "type": "package", + "dependencies": { + "EntityFramework": "6.4.4" + }, + "compile": { + "lib/netstandard2.1/System.Data.SQLite.EF6.dll": {} + }, + "runtime": { + "lib/netstandard2.1/System.Data.SQLite.EF6.dll": {} + } + }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Memory/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "related": ".xml" + } + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + } + } + }, + "libraries": { + "EntityFramework/6.4.4": { + "sha512": "yj1+/4tci7Panu3jKDHYizxwVm0Jvm7b7m057b5h4u8NUHGCR8WIWirBTw+8EptRffwftIWPBeIRGNKD1ewEMQ==", + "type": "package", + "path": "entityframework/6.4.4", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/EntityFramework.DefaultItems.props", + "build/EntityFramework.props", + "build/EntityFramework.targets", + "build/Microsoft.Data.Entity.Build.Tasks.dll", + "build/netcoreapp3.0/EntityFramework.props", + "build/netcoreapp3.0/EntityFramework.targets", + "buildTransitive/EntityFramework.props", + "buildTransitive/EntityFramework.targets", + "buildTransitive/netcoreapp3.0/EntityFramework.props", + "buildTransitive/netcoreapp3.0/EntityFramework.targets", + "content/net40/App.config.install.xdt", + "content/net40/App.config.transform", + "content/net40/Web.config.install.xdt", + "content/net40/Web.config.transform", + "entityframework.6.4.4.nupkg.sha512", + "entityframework.nuspec", + "lib/net40/EntityFramework.SqlServer.dll", + "lib/net40/EntityFramework.SqlServer.xml", + "lib/net40/EntityFramework.dll", + "lib/net40/EntityFramework.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.dll", + "lib/net45/EntityFramework.xml", + "lib/netstandard2.1/EntityFramework.SqlServer.dll", + "lib/netstandard2.1/EntityFramework.SqlServer.xml", + "lib/netstandard2.1/EntityFramework.dll", + "lib/netstandard2.1/EntityFramework.xml", + "tools/EntityFramework6.PS2.psd1", + "tools/EntityFramework6.PS2.psm1", + "tools/EntityFramework6.psd1", + "tools/EntityFramework6.psm1", + "tools/about_EntityFramework6.help.txt", + "tools/init.ps1", + "tools/install.ps1", + "tools/net40/any/ef6.exe", + "tools/net40/any/ef6.pdb", + "tools/net40/win-x86/ef6.exe", + "tools/net40/win-x86/ef6.pdb", + "tools/net45/any/ef6.exe", + "tools/net45/any/ef6.pdb", + "tools/net45/win-x86/ef6.exe", + "tools/net45/win-x86/ef6.pdb", + "tools/netcoreapp3.0/any/ef6.dll", + "tools/netcoreapp3.0/any/ef6.pdb", + "tools/netcoreapp3.0/any/ef6.runtimeconfig.json" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "type": "package", + "path": "microsoft.win32.systemevents/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/net472/Microsoft.Win32.SystemEvents.dll", + "ref/net472/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "sqlite-net-pcl/1.8.116": { + "sha512": "W0NuwAOVVAR9LP4eZwNBIrim1p3EN7t8iNfSHXEhtzKAd4YyItekoQ8NyWYs4faVSrN2KZr/P5u4hycCjKKexg==", + "type": "package", + "path": "sqlite-net-pcl/1.8.116", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "Logo-low.png", + "lib/netstandard2.0/SQLite-net.dll", + "lib/netstandard2.0/SQLite-net.xml", + "sqlite-net-pcl.1.8.116.nupkg.sha512", + "sqlite-net-pcl.nuspec" + ] + }, + "SQLitePCLRaw.bundle_green/2.0.4": { + "sha512": "ubFgOHDmtTcq2LU7Ss10yHnFVMm2rFVr65Ggi+Mh514KjGx4pal98P2zSvZtWf3wbtJw6G1InBgeozBtnpEfKQ==", + "type": "package", + "path": "sqlitepclraw.bundle_green/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll", + "lib/Xamarin.iOS10/SQLitePCLRaw.nativelibrary.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.nativelibrary.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.batteries_v2.dll", + "lib/netcoreapp3.1/SQLitePCLRaw.nativelibrary.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_green.2.0.4.nupkg.sha512", + "sqlitepclraw.bundle_green.nuspec" + ] + }, + "SQLitePCLRaw.core/2.0.4": { + "sha512": "4XlDZpDAsboMD6qZQcz9AaKblKDUTVHF+8f3lvbP7QjoqSRr2Xc0Lm34IK2pjRIYnyFLhI3yOJ5YWfOiCid2yg==", + "type": "package", + "path": "sqlitepclraw.core/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.0.4.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.0.4": { + "sha512": "oetvmtDZOE4Nnrtxd8Trapl9geBiu0rDCUXff46qGYjnUwzaU1mZ3OHnfR402tl32rx8gBWg3n5OBRaPJRbsGw==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/alpine-x64/native/libe_sqlite3.so", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.dynamic_cdecl/2.0.4": { + "sha512": "AY6+vv/4ji1mCkLrS6HP/88rHT9YFKRyg3LUj8RyIk6imJMUFdQDiP8rK8gq0a/0FbqspLjK1t7rtKcr7FXRYA==", + "type": "package", + "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll", + "sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "sqlitepclraw.provider.dynamic_cdecl.nuspec" + ] + }, + "Stub.System.Data.SQLite.Core.NetStandard/1.0.117": { + "sha512": "x1zzPC/A4MmiKGDLoxLE6O5KLu7Kz7dyzhPQzlqYFTFcXmXAtM7hNNWpGw5yLEz833AnGbd/kxoitXArgR4YyA==", + "type": "package", + "path": "stub.system.data.sqlite.core.netstandard/1.0.117", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/System.Data.SQLite.dll", + "lib/netstandard2.0/System.Data.SQLite.dll.altconfig", + "lib/netstandard2.0/System.Data.SQLite.xml", + "lib/netstandard2.1/System.Data.SQLite.dll", + "lib/netstandard2.1/System.Data.SQLite.dll.altconfig", + "lib/netstandard2.1/System.Data.SQLite.xml", + "runtimes/linux-x64/native/SQLite.Interop.dll", + "runtimes/osx-x64/native/SQLite.Interop.dll", + "runtimes/win-x64/native/SQLite.Interop.dll", + "runtimes/win-x86/native/SQLite.Interop.dll", + "stub.system.data.sqlite.core.netstandard.1.0.117.nupkg.sha512", + "stub.system.data.sqlite.core.netstandard.nuspec" + ] + }, + "System.CodeDom/4.7.0": { + "sha512": "Hs9pw/kmvH3lXaZ1LFKj3pLQsiGfj2xo3sxSzwiLlRL6UcMZUTeCfoJ9Udalvn3yq5dLlPEZzYegrTQ1/LhPOQ==", + "type": "package", + "path": "system.codedom/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "ref/net461/System.CodeDom.dll", + "ref/net461/System.CodeDom.xml", + "ref/netstandard2.0/System.CodeDom.dll", + "ref/netstandard2.0/System.CodeDom.xml", + "system.codedom.4.7.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Annotations/4.7.0": { + "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==", + "type": "package", + "path": "system.componentmodel.annotations/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.4.7.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Configuration.ConfigurationManager/4.7.0": { + "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==", + "type": "package", + "path": "system.configuration.configurationmanager/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Data.SqlClient/4.8.1": { + "sha512": "HKLykcv6eZLbLnSMnlQ6Os4+UAmFE+AgYm92CTvJYeTOBtOYusX3qu8OoGhFrnKZax91UcLcDo5vPrqvJUTSNQ==", + "type": "package", + "path": "system.data.sqlclient/4.8.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.xml", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.xml", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.xml", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.xml", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netcoreapp2.1/System.Data.SqlClient.dll", + "ref/netcoreapp2.1/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.xml", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", + "system.data.sqlclient.4.8.1.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Data.SQLite/1.0.117": { + "sha512": "yL8FPHoK9LfP9mPk0FGTJlF8ZiqujKfeyn2lIdE/5LyKDhhyXRNWtOF2dN6+OpBdmO1ZSHaYr8HyOY3a3rZ4sw==", + "type": "package", + "path": "system.data.sqlite/1.0.117", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "system.data.sqlite.1.0.117.nupkg.sha512", + "system.data.sqlite.nuspec" + ] + }, + "System.Data.SQLite.Core/1.0.117": { + "sha512": "lGfOhA3QQod9XhdWYqLgNgbgq5uZnVG6DtnhDAdPisbLpTTgZBNbeGnp+GWt8C+3EyaqBYTGJWXcxHlHKwo05A==", + "type": "package", + "path": "system.data.sqlite.core/1.0.117", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "system.data.sqlite.core.1.0.117.nupkg.sha512", + "system.data.sqlite.core.nuspec" + ] + }, + "System.Data.SQLite.EF6/1.0.117": { + "sha512": "Q1y/Jz1K63okYr1Jea7DyNGrOyWJiOpPHdpJ9cbjWAJanKJ0RUAZ8HQHKy9oEdxfjv0kfPR+Up9QcWni8lryCQ==", + "type": "package", + "path": "system.data.sqlite.ef6/1.0.117", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "content/net40/app.config.install.xdt", + "content/net40/app.config.transform", + "content/net40/web.config.install.xdt", + "content/net40/web.config.transform", + "content/net45/app.config.install.xdt", + "content/net45/app.config.transform", + "content/net45/web.config.install.xdt", + "content/net45/web.config.transform", + "content/net451/app.config.install.xdt", + "content/net451/app.config.transform", + "content/net451/web.config.install.xdt", + "content/net451/web.config.transform", + "content/net46/app.config.install.xdt", + "content/net46/app.config.transform", + "content/net46/web.config.install.xdt", + "content/net46/web.config.transform", + "lib/net40/System.Data.SQLite.EF6.dll", + "lib/net45/System.Data.SQLite.EF6.dll", + "lib/net451/System.Data.SQLite.EF6.dll", + "lib/net46/System.Data.SQLite.EF6.dll", + "lib/netstandard2.1/System.Data.SQLite.EF6.dll", + "system.data.sqlite.ef6.1.0.117.nupkg.sha512", + "system.data.sqlite.ef6.nuspec", + "tools/net40/install.ps1", + "tools/net45/install.ps1", + "tools/net451/install.ps1", + "tools/net46/install.ps1" + ] + }, + "System.Drawing.Common/4.7.0": { + "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "type": "package", + "path": "system.drawing.common/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.4.7.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory/4.5.3": { + "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "type": "package", + "path": "system.memory/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.3.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.AccessControl/4.7.0": { + "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "type": "package", + "path": "system.security.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.7.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/4.7.0": { + "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Permissions/4.7.0": { + "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "type": "package", + "path": "system.security.permissions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.7.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/4.7.0": { + "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "type": "package", + "path": "system.windows.extensions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.4.7.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net6.0-windows7.0": [ + "System.Data.SQLite >= 1.0.117", + "sqlite-net-pcl >= 1.8.116" + ] + }, + "packageFolders": { + "C:\\Users\\dkidd\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\dkidd\\source\\repos\\WinFormsApp2\\WinFormsApp2\\WinFormsApp2.csproj", + "projectName": "WinFormsApp2", + "projectPath": "C:\\Users\\dkidd\\source\\repos\\WinFormsApp2\\WinFormsApp2\\WinFormsApp2.csproj", + "packagesPath": "C:\\Users\\dkidd\\.nuget\\packages\\", + "outputPath": "C:\\Users\\dkidd\\source\\repos\\WinFormsApp2\\WinFormsApp2\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\dkidd\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "dependencies": { + "System.Data.SQLite": { + "target": "Package", + "version": "[1.0.117, )" + }, + "sqlite-net-pcl": { + "target": "Package", + "version": "[1.8.116, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/OrbisLib Guide Example/WinFormsApp2/obj/project.nuget.cache b/OrbisLib Guide Example/WinFormsApp2/obj/project.nuget.cache new file mode 100644 index 0000000..9b1d42f --- /dev/null +++ b/OrbisLib Guide Example/WinFormsApp2/obj/project.nuget.cache @@ -0,0 +1,38 @@ +{ + "version": 2, + "dgSpecHash": "XQP/+ZPpWX/kSrEsI8UGz0hLPJdA50nZeTRuG/7P0Il+2TPbstE/5FHlJaRVzcpXWkg46aa312/6pmX55oJWow==", + "success": true, + "projectFilePath": "C:\\Users\\dkidd\\source\\repos\\WinFormsApp2\\WinFormsApp2\\WinFormsApp2.csproj", + "expectedPackageFiles": [ + "C:\\Users\\dkidd\\.nuget\\packages\\entityframework\\6.4.4\\entityframework.6.4.4.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\sqlite-net-pcl\\1.8.116\\sqlite-net-pcl.1.8.116.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\sqlitepclraw.bundle_green\\2.0.4\\sqlitepclraw.bundle_green.2.0.4.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\sqlitepclraw.core\\2.0.4\\sqlitepclraw.core.2.0.4.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.0.4\\sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\sqlitepclraw.provider.dynamic_cdecl\\2.0.4\\sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\stub.system.data.sqlite.core.netstandard\\1.0.117\\stub.system.data.sqlite.core.netstandard.1.0.117.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\system.codedom\\4.7.0\\system.codedom.4.7.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\system.data.sqlclient\\4.8.1\\system.data.sqlclient.4.8.1.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\system.data.sqlite\\1.0.117\\system.data.sqlite.1.0.117.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\system.data.sqlite.core\\1.0.117\\system.data.sqlite.core.1.0.117.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\system.data.sqlite.ef6\\1.0.117\\system.data.sqlite.ef6.1.0.117.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\dkidd\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file