OrbisLib Guide Example
This commit is contained in:
@@ -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
|
||||||
@@ -0,0 +1,74 @@
|
|||||||
|
namespace WinFormsApp2
|
||||||
|
{
|
||||||
|
partial class Form1
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Required designer variable.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clean up any resources being used.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Windows Form Designer generated code
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Required method for Designer support - do not modify
|
||||||
|
/// the contents of this method with the code editor.
|
||||||
|
/// </summary>
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,60 @@
|
|||||||
|
<root>
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
namespace WinFormsApp2
|
||||||
|
{
|
||||||
|
internal static class Program
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The main entry point for the application.
|
||||||
|
/// </summary>
|
||||||
|
[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());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<TargetFramework>net6.0-windows</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<UseWindowsForms>true</UseWindowsForms>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="sqlite-net-pcl" Version="1.8.116" />
|
||||||
|
<PackageReference Include="System.Data.SQLite" Version="1.0.117" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="OrbisLib2">
|
||||||
|
<HintPath>..\..\..\..\Downloads\OrbisLib2.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="SimpleUI">
|
||||||
|
<HintPath>..\..\..\..\..\..\Program Files (x86)\Orbis Suite\OrbisNeighborHood\SimpleUI.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Update="Form1.cs">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
+25
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 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.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
16cfa1b0499cb34e2b56d6578a204296d42e2801
|
||||||
BIN
Binary file not shown.
+17
@@ -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\
|
||||||
+10
@@ -0,0 +1,10 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
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;
|
||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
|||||||
|
2805e59a25d5b46151744497da975439eb2d1c64
|
||||||
+168
@@ -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
|
||||||
BIN
Binary file not shown.
+658
@@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+22
@@ -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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
|||||||
|
6124ebadfe7615b9934bce062c14c11c2b294283
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\dkidd\.nuget\packages\</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.0</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\dkidd\.nuget\packages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<Import Project="$(NuGetPackageRoot)entityframework\6.4.4\buildTransitive\netcoreapp3.0\EntityFramework.props" Condition="Exists('$(NuGetPackageRoot)entityframework\6.4.4\buildTransitive\netcoreapp3.0\EntityFramework.props')" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<PkgEntityFramework Condition=" '$(PkgEntityFramework)' == '' ">C:\Users\dkidd\.nuget\packages\entityframework\6.4.4</PkgEntityFramework>
|
||||||
|
<PkgSystem_Data_SQLite_EF6 Condition=" '$(PkgSystem_Data_SQLite_EF6)' == '' ">C:\Users\dkidd\.nuget\packages\system.data.sqlite.ef6\1.0.117</PkgSystem_Data_SQLite_EF6>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<Import Project="$(NuGetPackageRoot)entityframework\6.4.4\buildTransitive\netcoreapp3.0\EntityFramework.targets" Condition="Exists('$(NuGetPackageRoot)entityframework\6.4.4\buildTransitive\netcoreapp3.0\EntityFramework.targets')" />
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -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": []
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user