benis
This commit is contained in:
commit
3a09f89384
15
2chSQL.csproj
Normal file
15
2chSQL.csproj
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
<RootNamespace>_2chSQL</RootNamespace>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Npgsql" Version="6.0.7" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
6
2chSQL.csproj.user
Normal file
6
2chSQL.csproj.user
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<_LastSelectedProfileId>D:\Programming\CSharp\2chSQL\2chSQL\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
124
DBLinks.cs
Normal file
124
DBLinks.cs
Normal file
@ -0,0 +1,124 @@
|
|||||||
|
using System;
|
||||||
|
using System.Xml.Linq;
|
||||||
|
using Npgsql;
|
||||||
|
|
||||||
|
namespace _2chSQL
|
||||||
|
{
|
||||||
|
public class DBLinks
|
||||||
|
{
|
||||||
|
// Obtain connection string information from the portal
|
||||||
|
//
|
||||||
|
private static string Host = "postgres.vdk2ch.ru";
|
||||||
|
private static string User = "postgres";
|
||||||
|
private static string DBname = "postgres";
|
||||||
|
private static string Password = "postgres";
|
||||||
|
private static string Port = "5432";
|
||||||
|
|
||||||
|
public static void DbList()
|
||||||
|
{
|
||||||
|
// Build connection string using parameters from portal
|
||||||
|
//
|
||||||
|
string connString =
|
||||||
|
String.Format(
|
||||||
|
"Server={0}; User Id={1}; Database={2}; Port={3}; Password={4};SSLMode=Prefer",
|
||||||
|
Host,
|
||||||
|
User,
|
||||||
|
DBname,
|
||||||
|
Port,
|
||||||
|
Password);
|
||||||
|
|
||||||
|
using (var conn = new NpgsqlConnection(connString))
|
||||||
|
{
|
||||||
|
|
||||||
|
Console.Out.WriteLine("Opening connection");
|
||||||
|
conn.Open();
|
||||||
|
|
||||||
|
|
||||||
|
using (var command = new NpgsqlCommand("SELECT * FROM dvach", conn))
|
||||||
|
{
|
||||||
|
|
||||||
|
var reader = command.ExecuteReader();
|
||||||
|
while (reader.Read())
|
||||||
|
{
|
||||||
|
Console.WriteLine(
|
||||||
|
string.Format(
|
||||||
|
"Post ID {0}: ({1})",
|
||||||
|
reader.GetInt32(0).ToString(),
|
||||||
|
reader.GetString(1)
|
||||||
|
//reader.GetString(2)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
reader.Close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Console.WriteLine("На этом вся таблица!");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void DbUpdate(string id, string text)
|
||||||
|
{
|
||||||
|
// Build connection string using parameters from portal
|
||||||
|
//
|
||||||
|
string connString =
|
||||||
|
String.Format(
|
||||||
|
"Server={0}; User Id={1}; Database={2}; Port={3}; Password={4};SSLMode=Prefer",
|
||||||
|
Host,
|
||||||
|
User,
|
||||||
|
DBname,
|
||||||
|
Port,
|
||||||
|
Password);
|
||||||
|
|
||||||
|
using (var conn = new NpgsqlConnection(connString))
|
||||||
|
{
|
||||||
|
|
||||||
|
Console.Out.WriteLine("Opening connection");
|
||||||
|
conn.Open();
|
||||||
|
|
||||||
|
using (var command = new NpgsqlCommand("UPDATE dvach " +
|
||||||
|
"SET post = @postText WHERE post_id = @ID", conn))
|
||||||
|
{
|
||||||
|
command.Parameters.AddWithValue("ID", int.Parse(id));
|
||||||
|
command.Parameters.AddWithValue("postText", text);
|
||||||
|
|
||||||
|
int nRows = command.ExecuteNonQuery();
|
||||||
|
Console.Out.WriteLine(String.Format("Number of rows updated={0}", nRows));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Console.WriteLine("Данные обновлены!");
|
||||||
|
Console.ReadLine();
|
||||||
|
}
|
||||||
|
public static void DbAdd(string text)
|
||||||
|
{
|
||||||
|
// Build connection string using parameters from portal
|
||||||
|
//
|
||||||
|
string connString =
|
||||||
|
String.Format(
|
||||||
|
"Server={0}; User Id={1}; Database={2}; Port={3}; Password={4};SSLMode=Prefer",
|
||||||
|
Host,
|
||||||
|
User,
|
||||||
|
DBname,
|
||||||
|
Port,
|
||||||
|
Password);
|
||||||
|
|
||||||
|
using (var conn = new NpgsqlConnection(connString))
|
||||||
|
{
|
||||||
|
|
||||||
|
Console.Out.WriteLine("Opening connection");
|
||||||
|
conn.Open();
|
||||||
|
|
||||||
|
using (var command = new NpgsqlCommand("INSERT INTO dvach " +
|
||||||
|
"(post_id, post) VALUES (DEFAULT, @postText)", conn))
|
||||||
|
{
|
||||||
|
command.Parameters.AddWithValue("postText", text);
|
||||||
|
|
||||||
|
int nRows = command.ExecuteNonQuery();
|
||||||
|
Console.Out.WriteLine(String.Format("Number of rows updated={0}", nRows));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Console.WriteLine("С добавлением закончено");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
40
Program.cs
Normal file
40
Program.cs
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
using System;
|
||||||
|
using _2chSQL;
|
||||||
|
using Npgsql;
|
||||||
|
using Npgsql.Internal.TypeHandlers.NetworkHandlers;
|
||||||
|
|
||||||
|
namespace Driver
|
||||||
|
{
|
||||||
|
public class Program
|
||||||
|
{
|
||||||
|
static void Main()
|
||||||
|
{
|
||||||
|
Console.WriteLine("Добро пожаловать на кибердвач! Введите команду 'list' чтобы показать все посты в треде, введите команду 'update' чтобы изменить содержимое поста, введите команду 'add' чтобы добавить пост");
|
||||||
|
Console.WriteLine("Введите Exit для выхода из программы");
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
string input = Console.ReadLine();
|
||||||
|
if (input == "list") DBLinks.DbList();
|
||||||
|
if (input == "upd")
|
||||||
|
{
|
||||||
|
Console.WriteLine("Введите через знак $ номер поста и текст, который хотите туда сохранить");
|
||||||
|
string updline = Console.ReadLine();
|
||||||
|
string[] update = updline.Split('$');
|
||||||
|
//Console.WriteLine(update[0]);
|
||||||
|
//Console.WriteLine(update[1]);
|
||||||
|
DBLinks.DbUpdate(update[0], update[1]);
|
||||||
|
|
||||||
|
}
|
||||||
|
if(input == "add")
|
||||||
|
{
|
||||||
|
Console.WriteLine("Напишите что-нибудь");
|
||||||
|
DBLinks.DbAdd(Console.ReadLine());
|
||||||
|
DBLinks.DbList();
|
||||||
|
}
|
||||||
|
//DBLinks.DbList();
|
||||||
|
if (input == "Exit") break;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
18
Properties/PublishProfiles/FolderProfile.pubxml
Normal file
18
Properties/PublishProfiles/FolderProfile.pubxml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||||
|
-->
|
||||||
|
<Project>
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Any CPU</Platform>
|
||||||
|
<PublishDir>bin\Release\net6.0\publish\win-x64\</PublishDir>
|
||||||
|
<PublishProtocol>FileSystem</PublishProtocol>
|
||||||
|
<_TargetId>Folder</_TargetId>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||||
|
<SelfContained>false</SelfContained>
|
||||||
|
<PublishSingleFile>false</PublishSingleFile>
|
||||||
|
<PublishReadyToRun>false</PublishReadyToRun>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
10
Properties/PublishProfiles/FolderProfile.pubxml.user
Normal file
10
Properties/PublishProfiles/FolderProfile.pubxml.user
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||||
|
-->
|
||||||
|
<Project>
|
||||||
|
<PropertyGroup>
|
||||||
|
<History>True|2022-10-14T09:40:26.3564048Z;False|2022-10-14T19:40:20.2288873+10:00;</History>
|
||||||
|
<LastFailureDetails />
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
52
bin/Debug/net6.0/2chSQL.deps.json
Normal file
52
bin/Debug/net6.0/2chSQL.deps.json
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v6.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v6.0": {
|
||||||
|
"2chSQL/1.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Npgsql": "6.0.7"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"2chSQL.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Npgsql/6.0.7": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/Npgsql.dll": {
|
||||||
|
"assemblyVersion": "6.0.7.0",
|
||||||
|
"fileVersion": "6.0.7.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/6.0.0": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"2chSQL/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"Npgsql/6.0.7": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-HhD5q/VUJY++tCzc0eCrhtsxmUdP7NxNhUMOdYW6sqpC6NRlFLvUDf5JyRj0gOGkXe3Tn49toaisgvLqlzQ2JQ==",
|
||||||
|
"path": "npgsql/6.0.7",
|
||||||
|
"hashPath": "npgsql.6.0.7.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
|
||||||
|
"path": "system.runtime.compilerservices.unsafe/6.0.0",
|
||||||
|
"hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
bin/Debug/net6.0/2chSQL.dll
Normal file
BIN
bin/Debug/net6.0/2chSQL.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net6.0/2chSQL.exe
Normal file
BIN
bin/Debug/net6.0/2chSQL.exe
Normal file
Binary file not shown.
BIN
bin/Debug/net6.0/2chSQL.pdb
Normal file
BIN
bin/Debug/net6.0/2chSQL.pdb
Normal file
Binary file not shown.
9
bin/Debug/net6.0/2chSQL.runtimeconfig.json
Normal file
9
bin/Debug/net6.0/2chSQL.runtimeconfig.json
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net6.0",
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "6.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
bin/Debug/net6.0/Npgsql.dll
Normal file
BIN
bin/Debug/net6.0/Npgsql.dll
Normal file
Binary file not shown.
52
bin/Release/net6.0/2chSQL.deps.json
Normal file
52
bin/Release/net6.0/2chSQL.deps.json
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v6.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v6.0": {
|
||||||
|
"2chSQL/1.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Npgsql": "6.0.7"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"2chSQL.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Npgsql/6.0.7": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/Npgsql.dll": {
|
||||||
|
"assemblyVersion": "6.0.7.0",
|
||||||
|
"fileVersion": "6.0.7.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/6.0.0": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"2chSQL/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"Npgsql/6.0.7": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-HhD5q/VUJY++tCzc0eCrhtsxmUdP7NxNhUMOdYW6sqpC6NRlFLvUDf5JyRj0gOGkXe3Tn49toaisgvLqlzQ2JQ==",
|
||||||
|
"path": "npgsql/6.0.7",
|
||||||
|
"hashPath": "npgsql.6.0.7.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
|
||||||
|
"path": "system.runtime.compilerservices.unsafe/6.0.0",
|
||||||
|
"hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
bin/Release/net6.0/2chSQL.dll
Normal file
BIN
bin/Release/net6.0/2chSQL.dll
Normal file
Binary file not shown.
BIN
bin/Release/net6.0/2chSQL.exe
Normal file
BIN
bin/Release/net6.0/2chSQL.exe
Normal file
Binary file not shown.
BIN
bin/Release/net6.0/2chSQL.pdb
Normal file
BIN
bin/Release/net6.0/2chSQL.pdb
Normal file
Binary file not shown.
12
bin/Release/net6.0/2chSQL.runtimeconfig.json
Normal file
12
bin/Release/net6.0/2chSQL.runtimeconfig.json
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net6.0",
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "6.0.0"
|
||||||
|
},
|
||||||
|
"configProperties": {
|
||||||
|
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
bin/Release/net6.0/Npgsql.dll
Normal file
BIN
bin/Release/net6.0/Npgsql.dll
Normal file
Binary file not shown.
53
bin/Release/net6.0/publish/win-x64/2chSQL.deps.json
Normal file
53
bin/Release/net6.0/publish/win-x64/2chSQL.deps.json
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v6.0/win-x64",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v6.0": {},
|
||||||
|
".NETCoreApp,Version=v6.0/win-x64": {
|
||||||
|
"2chSQL/1.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Npgsql": "6.0.7"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"2chSQL.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Npgsql/6.0.7": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/Npgsql.dll": {
|
||||||
|
"assemblyVersion": "6.0.7.0",
|
||||||
|
"fileVersion": "6.0.7.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/6.0.0": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"2chSQL/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"Npgsql/6.0.7": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-HhD5q/VUJY++tCzc0eCrhtsxmUdP7NxNhUMOdYW6sqpC6NRlFLvUDf5JyRj0gOGkXe3Tn49toaisgvLqlzQ2JQ==",
|
||||||
|
"path": "npgsql/6.0.7",
|
||||||
|
"hashPath": "npgsql.6.0.7.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
|
||||||
|
"path": "system.runtime.compilerservices.unsafe/6.0.0",
|
||||||
|
"hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
bin/Release/net6.0/publish/win-x64/2chSQL.dll
Normal file
BIN
bin/Release/net6.0/publish/win-x64/2chSQL.dll
Normal file
Binary file not shown.
BIN
bin/Release/net6.0/publish/win-x64/2chSQL.exe
Normal file
BIN
bin/Release/net6.0/publish/win-x64/2chSQL.exe
Normal file
Binary file not shown.
BIN
bin/Release/net6.0/publish/win-x64/2chSQL.pdb
Normal file
BIN
bin/Release/net6.0/publish/win-x64/2chSQL.pdb
Normal file
Binary file not shown.
12
bin/Release/net6.0/publish/win-x64/2chSQL.runtimeconfig.json
Normal file
12
bin/Release/net6.0/publish/win-x64/2chSQL.runtimeconfig.json
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net6.0",
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "6.0.0"
|
||||||
|
},
|
||||||
|
"configProperties": {
|
||||||
|
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
bin/Release/net6.0/publish/win-x64/Npgsql.dll
Normal file
BIN
bin/Release/net6.0/publish/win-x64/Npgsql.dll
Normal file
Binary file not shown.
BIN
bin/Release/net6.0/publish/win-x64/КИБЕРТРЕД.rar
Normal file
BIN
bin/Release/net6.0/publish/win-x64/КИБЕРТРЕД.rar
Normal file
Binary file not shown.
53
bin/Release/net6.0/win-x64/2chSQL.deps.json
Normal file
53
bin/Release/net6.0/win-x64/2chSQL.deps.json
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v6.0/win-x64",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v6.0": {},
|
||||||
|
".NETCoreApp,Version=v6.0/win-x64": {
|
||||||
|
"2chSQL/1.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Npgsql": "6.0.7"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"2chSQL.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Npgsql/6.0.7": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/Npgsql.dll": {
|
||||||
|
"assemblyVersion": "6.0.7.0",
|
||||||
|
"fileVersion": "6.0.7.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/6.0.0": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"2chSQL/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"Npgsql/6.0.7": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-HhD5q/VUJY++tCzc0eCrhtsxmUdP7NxNhUMOdYW6sqpC6NRlFLvUDf5JyRj0gOGkXe3Tn49toaisgvLqlzQ2JQ==",
|
||||||
|
"path": "npgsql/6.0.7",
|
||||||
|
"hashPath": "npgsql.6.0.7.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
|
||||||
|
"path": "system.runtime.compilerservices.unsafe/6.0.0",
|
||||||
|
"hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
bin/Release/net6.0/win-x64/2chSQL.dll
Normal file
BIN
bin/Release/net6.0/win-x64/2chSQL.dll
Normal file
Binary file not shown.
BIN
bin/Release/net6.0/win-x64/2chSQL.exe
Normal file
BIN
bin/Release/net6.0/win-x64/2chSQL.exe
Normal file
Binary file not shown.
BIN
bin/Release/net6.0/win-x64/2chSQL.pdb
Normal file
BIN
bin/Release/net6.0/win-x64/2chSQL.pdb
Normal file
Binary file not shown.
12
bin/Release/net6.0/win-x64/2chSQL.runtimeconfig.json
Normal file
12
bin/Release/net6.0/win-x64/2chSQL.runtimeconfig.json
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net6.0",
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "6.0.0"
|
||||||
|
},
|
||||||
|
"configProperties": {
|
||||||
|
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
bin/Release/net6.0/win-x64/Npgsql.dll
Normal file
BIN
bin/Release/net6.0/win-x64/Npgsql.dll
Normal file
Binary file not shown.
69
obj/2chSQL.csproj.nuget.dgspec.json
Normal file
69
obj/2chSQL.csproj.nuget.dgspec.json
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"D:\\Programming\\CSharp\\2chSQL\\2chSQL\\2chSQL.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"D:\\Programming\\CSharp\\2chSQL\\2chSQL\\2chSQL.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "D:\\Programming\\CSharp\\2chSQL\\2chSQL\\2chSQL.csproj",
|
||||||
|
"projectName": "2chSQL",
|
||||||
|
"projectPath": "D:\\Programming\\CSharp\\2chSQL\\2chSQL\\2chSQL.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
||||||
|
"outputPath": "D:\\Programming\\CSharp\\2chSQL\\2chSQL\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net6.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0": {
|
||||||
|
"targetAlias": "net6.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0": {
|
||||||
|
"targetAlias": "net6.0",
|
||||||
|
"dependencies": {
|
||||||
|
"Npgsql": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[6.0.7, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.401\\RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
15
obj/2chSQL.csproj.nuget.g.props
Normal file
15
obj/2chSQL.csproj.nuget.g.props
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<?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\Admin\.nuget\packages\</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\Admin\.nuget\packages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
2
obj/2chSQL.csproj.nuget.g.targets
Normal file
2
obj/2chSQL.csproj.nuget.g.targets
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
23
obj/Debug/net6.0/2chSQL.AssemblyInfo.cs
Normal file
23
obj/Debug/net6.0/2chSQL.AssemblyInfo.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Этот код создан программой.
|
||||||
|
// Исполняемая версия:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||||
|
// повторной генерации кода.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("2chSQL")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("2chSQL")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("2chSQL")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Создано классом WriteCodeFragment MSBuild.
|
||||||
|
|
1
obj/Debug/net6.0/2chSQL.AssemblyInfoInputs.cache
Normal file
1
obj/Debug/net6.0/2chSQL.AssemblyInfoInputs.cache
Normal file
@ -0,0 +1 @@
|
|||||||
|
ccfc554bb30609f31397b8b3676deec577e62088
|
@ -0,0 +1,10 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net6.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = _2chSQL
|
||||||
|
build_property.ProjectDir = D:\Programming\CSharp\2chSQL\2chSQL\
|
8
obj/Debug/net6.0/2chSQL.GlobalUsings.g.cs
Normal file
8
obj/Debug/net6.0/2chSQL.GlobalUsings.g.cs
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
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;
|
BIN
obj/Debug/net6.0/2chSQL.assets.cache
Normal file
BIN
obj/Debug/net6.0/2chSQL.assets.cache
Normal file
Binary file not shown.
BIN
obj/Debug/net6.0/2chSQL.csproj.AssemblyReference.cache
Normal file
BIN
obj/Debug/net6.0/2chSQL.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
0
obj/Debug/net6.0/2chSQL.csproj.CopyComplete
Normal file
0
obj/Debug/net6.0/2chSQL.csproj.CopyComplete
Normal file
1
obj/Debug/net6.0/2chSQL.csproj.CoreCompileInputs.cache
Normal file
1
obj/Debug/net6.0/2chSQL.csproj.CoreCompileInputs.cache
Normal file
@ -0,0 +1 @@
|
|||||||
|
46ea69bcb15fbe3cea0a29604e47a19e964b4041
|
17
obj/Debug/net6.0/2chSQL.csproj.FileListAbsolute.txt
Normal file
17
obj/Debug/net6.0/2chSQL.csproj.FileListAbsolute.txt
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Debug\net6.0\2chSQL.exe
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Debug\net6.0\2chSQL.deps.json
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Debug\net6.0\2chSQL.runtimeconfig.json
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Debug\net6.0\2chSQL.dll
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Debug\net6.0\2chSQL.pdb
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Debug\net6.0\Npgsql.dll
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Debug\net6.0\2chSQL.csproj.AssemblyReference.cache
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Debug\net6.0\2chSQL.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Debug\net6.0\2chSQL.AssemblyInfoInputs.cache
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Debug\net6.0\2chSQL.AssemblyInfo.cs
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Debug\net6.0\2chSQL.csproj.CoreCompileInputs.cache
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Debug\net6.0\2chSQL.csproj.CopyComplete
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Debug\net6.0\2chSQL.dll
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Debug\net6.0\refint\2chSQL.dll
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Debug\net6.0\2chSQL.pdb
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Debug\net6.0\2chSQL.genruntimeconfig.cache
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Debug\net6.0\ref\2chSQL.dll
|
BIN
obj/Debug/net6.0/2chSQL.dll
Normal file
BIN
obj/Debug/net6.0/2chSQL.dll
Normal file
Binary file not shown.
1
obj/Debug/net6.0/2chSQL.genruntimeconfig.cache
Normal file
1
obj/Debug/net6.0/2chSQL.genruntimeconfig.cache
Normal file
@ -0,0 +1 @@
|
|||||||
|
96ecee267f7877022a8aac5b4d984a35d1de5f87
|
BIN
obj/Debug/net6.0/2chSQL.pdb
Normal file
BIN
obj/Debug/net6.0/2chSQL.pdb
Normal file
Binary file not shown.
BIN
obj/Debug/net6.0/apphost.exe
Normal file
BIN
obj/Debug/net6.0/apphost.exe
Normal file
Binary file not shown.
BIN
obj/Debug/net6.0/ref/2chSQL.dll
Normal file
BIN
obj/Debug/net6.0/ref/2chSQL.dll
Normal file
Binary file not shown.
BIN
obj/Debug/net6.0/refint/2chSQL.dll
Normal file
BIN
obj/Debug/net6.0/refint/2chSQL.dll
Normal file
Binary file not shown.
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
23
obj/Release/net6.0/2chSQL.AssemblyInfo.cs
Normal file
23
obj/Release/net6.0/2chSQL.AssemblyInfo.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Этот код создан программой.
|
||||||
|
// Исполняемая версия:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||||
|
// повторной генерации кода.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("2chSQL")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("2chSQL")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("2chSQL")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Создано классом WriteCodeFragment MSBuild.
|
||||||
|
|
1
obj/Release/net6.0/2chSQL.AssemblyInfoInputs.cache
Normal file
1
obj/Release/net6.0/2chSQL.AssemblyInfoInputs.cache
Normal file
@ -0,0 +1 @@
|
|||||||
|
bddb57ed6834c62ee339cb264e8677027b2848f0
|
@ -0,0 +1,10 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net6.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = _2chSQL
|
||||||
|
build_property.ProjectDir = D:\Programming\CSharp\2chSQL\2chSQL\
|
8
obj/Release/net6.0/2chSQL.GlobalUsings.g.cs
Normal file
8
obj/Release/net6.0/2chSQL.GlobalUsings.g.cs
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
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;
|
BIN
obj/Release/net6.0/2chSQL.assets.cache
Normal file
BIN
obj/Release/net6.0/2chSQL.assets.cache
Normal file
Binary file not shown.
BIN
obj/Release/net6.0/2chSQL.csproj.AssemblyReference.cache
Normal file
BIN
obj/Release/net6.0/2chSQL.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
0
obj/Release/net6.0/2chSQL.csproj.CopyComplete
Normal file
0
obj/Release/net6.0/2chSQL.csproj.CopyComplete
Normal file
1
obj/Release/net6.0/2chSQL.csproj.CoreCompileInputs.cache
Normal file
1
obj/Release/net6.0/2chSQL.csproj.CoreCompileInputs.cache
Normal file
@ -0,0 +1 @@
|
|||||||
|
3fc3752bc4d4b4cba86b415c6ba141f12dc804dc
|
17
obj/Release/net6.0/2chSQL.csproj.FileListAbsolute.txt
Normal file
17
obj/Release/net6.0/2chSQL.csproj.FileListAbsolute.txt
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\2chSQL.exe
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\2chSQL.deps.json
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\2chSQL.runtimeconfig.json
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\2chSQL.dll
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\2chSQL.pdb
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\Npgsql.dll
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\2chSQL.csproj.AssemblyReference.cache
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\2chSQL.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\2chSQL.AssemblyInfoInputs.cache
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\2chSQL.AssemblyInfo.cs
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\2chSQL.csproj.CoreCompileInputs.cache
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\2chSQL.csproj.CopyComplete
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\2chSQL.dll
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\refint\2chSQL.dll
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\2chSQL.pdb
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\2chSQL.genruntimeconfig.cache
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\ref\2chSQL.dll
|
BIN
obj/Release/net6.0/2chSQL.dll
Normal file
BIN
obj/Release/net6.0/2chSQL.dll
Normal file
Binary file not shown.
1
obj/Release/net6.0/2chSQL.genruntimeconfig.cache
Normal file
1
obj/Release/net6.0/2chSQL.genruntimeconfig.cache
Normal file
@ -0,0 +1 @@
|
|||||||
|
a0d6ca358d1d7708585c1a2565b0b908391f35ae
|
BIN
obj/Release/net6.0/2chSQL.pdb
Normal file
BIN
obj/Release/net6.0/2chSQL.pdb
Normal file
Binary file not shown.
BIN
obj/Release/net6.0/apphost.exe
Normal file
BIN
obj/Release/net6.0/apphost.exe
Normal file
Binary file not shown.
BIN
obj/Release/net6.0/ref/2chSQL.dll
Normal file
BIN
obj/Release/net6.0/ref/2chSQL.dll
Normal file
Binary file not shown.
BIN
obj/Release/net6.0/refint/2chSQL.dll
Normal file
BIN
obj/Release/net6.0/refint/2chSQL.dll
Normal file
Binary file not shown.
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
23
obj/Release/net6.0/win-x64/2chSQL.AssemblyInfo.cs
Normal file
23
obj/Release/net6.0/win-x64/2chSQL.AssemblyInfo.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Этот код создан программой.
|
||||||
|
// Исполняемая версия:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||||
|
// повторной генерации кода.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("2chSQL")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("2chSQL")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("2chSQL")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Создано классом WriteCodeFragment MSBuild.
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
bddb57ed6834c62ee339cb264e8677027b2848f0
|
@ -0,0 +1,10 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net6.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = _2chSQL
|
||||||
|
build_property.ProjectDir = D:\Programming\CSharp\2chSQL\2chSQL\
|
8
obj/Release/net6.0/win-x64/2chSQL.GlobalUsings.g.cs
Normal file
8
obj/Release/net6.0/win-x64/2chSQL.GlobalUsings.g.cs
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
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;
|
BIN
obj/Release/net6.0/win-x64/2chSQL.assets.cache
Normal file
BIN
obj/Release/net6.0/win-x64/2chSQL.assets.cache
Normal file
Binary file not shown.
BIN
obj/Release/net6.0/win-x64/2chSQL.csproj.AssemblyReference.cache
Normal file
BIN
obj/Release/net6.0/win-x64/2chSQL.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
2bfbe63dcb78ed7b11a0e9d36b9e8ac97ce49e5d
|
@ -0,0 +1,17 @@
|
|||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\win-x64\2chSQL.exe
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\win-x64\2chSQL.deps.json
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\win-x64\2chSQL.runtimeconfig.json
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\win-x64\2chSQL.dll
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\win-x64\2chSQL.pdb
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\win-x64\Npgsql.dll
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\win-x64\2chSQL.csproj.AssemblyReference.cache
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\win-x64\2chSQL.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\win-x64\2chSQL.AssemblyInfoInputs.cache
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\win-x64\2chSQL.AssemblyInfo.cs
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\win-x64\2chSQL.csproj.CoreCompileInputs.cache
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\win-x64\2chSQL.csproj.CopyComplete
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\win-x64\2chSQL.dll
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\win-x64\refint\2chSQL.dll
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\win-x64\2chSQL.pdb
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\win-x64\2chSQL.genruntimeconfig.cache
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\obj\Release\net6.0\win-x64\ref\2chSQL.dll
|
BIN
obj/Release/net6.0/win-x64/2chSQL.dll
Normal file
BIN
obj/Release/net6.0/win-x64/2chSQL.dll
Normal file
Binary file not shown.
1
obj/Release/net6.0/win-x64/2chSQL.genruntimeconfig.cache
Normal file
1
obj/Release/net6.0/win-x64/2chSQL.genruntimeconfig.cache
Normal file
@ -0,0 +1 @@
|
|||||||
|
9d8e22032c91aec805d4d3aa21c84fd7f8ab98cd
|
BIN
obj/Release/net6.0/win-x64/2chSQL.pdb
Normal file
BIN
obj/Release/net6.0/win-x64/2chSQL.pdb
Normal file
Binary file not shown.
6
obj/Release/net6.0/win-x64/PublishOutputs.8f657d327a.txt
Normal file
6
obj/Release/net6.0/win-x64/PublishOutputs.8f657d327a.txt
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\publish\win-x64\2chSQL.exe
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\publish\win-x64\2chSQL.dll
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\publish\win-x64\2chSQL.deps.json
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\publish\win-x64\2chSQL.runtimeconfig.json
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\publish\win-x64\2chSQL.pdb
|
||||||
|
D:\Programming\CSharp\2chSQL\2chSQL\bin\Release\net6.0\publish\win-x64\Npgsql.dll
|
BIN
obj/Release/net6.0/win-x64/apphost.exe
Normal file
BIN
obj/Release/net6.0/win-x64/apphost.exe
Normal file
Binary file not shown.
BIN
obj/Release/net6.0/win-x64/ref/2chSQL.dll
Normal file
BIN
obj/Release/net6.0/win-x64/ref/2chSQL.dll
Normal file
Binary file not shown.
BIN
obj/Release/net6.0/win-x64/refint/2chSQL.dll
Normal file
BIN
obj/Release/net6.0/win-x64/refint/2chSQL.dll
Normal file
Binary file not shown.
158
obj/project.assets.json
Normal file
158
obj/project.assets.json
Normal file
@ -0,0 +1,158 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"targets": {
|
||||||
|
"net6.0": {
|
||||||
|
"Npgsql/6.0.7": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/net6.0/Npgsql.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/Npgsql.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"buildTransitive/netcoreapp3.1/_._": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"Npgsql/6.0.7": {
|
||||||
|
"sha512": "HhD5q/VUJY++tCzc0eCrhtsxmUdP7NxNhUMOdYW6sqpC6NRlFLvUDf5JyRj0gOGkXe3Tn49toaisgvLqlzQ2JQ==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "npgsql/6.0.7",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"README.md",
|
||||||
|
"lib/net5.0/Npgsql.dll",
|
||||||
|
"lib/net5.0/Npgsql.xml",
|
||||||
|
"lib/net6.0/Npgsql.dll",
|
||||||
|
"lib/net6.0/Npgsql.xml",
|
||||||
|
"lib/netcoreapp3.1/Npgsql.dll",
|
||||||
|
"lib/netcoreapp3.1/Npgsql.xml",
|
||||||
|
"lib/netstandard2.0/Npgsql.dll",
|
||||||
|
"lib/netstandard2.0/Npgsql.xml",
|
||||||
|
"lib/netstandard2.1/Npgsql.dll",
|
||||||
|
"lib/netstandard2.1/Npgsql.xml",
|
||||||
|
"npgsql.6.0.7.nupkg.sha512",
|
||||||
|
"npgsql.nuspec",
|
||||||
|
"postgresql.png"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
|
||||||
|
"sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.runtime.compilerservices.unsafe/6.0.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
|
||||||
|
"buildTransitive/netcoreapp3.1/_._",
|
||||||
|
"lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
|
||||||
|
"lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
|
||||||
|
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
|
||||||
|
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
|
||||||
|
"lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
|
||||||
|
"lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
|
||||||
|
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
|
||||||
|
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
|
||||||
|
"system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
|
||||||
|
"system.runtime.compilerservices.unsafe.nuspec",
|
||||||
|
"useSharedDesignerContext.txt"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"projectFileDependencyGroups": {
|
||||||
|
"net6.0": [
|
||||||
|
"Npgsql >= 6.0.7"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"packageFolders": {
|
||||||
|
"C:\\Users\\Admin\\.nuget\\packages\\": {}
|
||||||
|
},
|
||||||
|
"project": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "D:\\Programming\\CSharp\\2chSQL\\2chSQL\\2chSQL.csproj",
|
||||||
|
"projectName": "2chSQL",
|
||||||
|
"projectPath": "D:\\Programming\\CSharp\\2chSQL\\2chSQL\\2chSQL.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
||||||
|
"outputPath": "D:\\Programming\\CSharp\\2chSQL\\2chSQL\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net6.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0": {
|
||||||
|
"targetAlias": "net6.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0": {
|
||||||
|
"targetAlias": "net6.0",
|
||||||
|
"dependencies": {
|
||||||
|
"Npgsql": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[6.0.7, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.401\\RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
11
obj/project.nuget.cache
Normal file
11
obj/project.nuget.cache
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "57Nz0gPZ5pd1s75MAA3Hvf/wkvTjsVRJpLAKPzha1VcLetZV8Xkw2vcuMyeqgk2E8Ls/ABxBMom3nRe/4TGeEw==",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "D:\\Programming\\CSharp\\2chSQL\\2chSQL\\2chSQL.csproj",
|
||||||
|
"expectedPackageFiles": [
|
||||||
|
"C:\\Users\\Admin\\.nuget\\packages\\npgsql\\6.0.7\\npgsql.6.0.7.nupkg.sha512",
|
||||||
|
"C:\\Users\\Admin\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
|
||||||
|
],
|
||||||
|
"logs": []
|
||||||
|
}
|
74
obj/publish/win-x64/2chSQL.csproj.nuget.dgspec.json
Normal file
74
obj/publish/win-x64/2chSQL.csproj.nuget.dgspec.json
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"D:\\Programming\\CSharp\\2chSQL\\2chSQL\\2chSQL.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"D:\\Programming\\CSharp\\2chSQL\\2chSQL\\2chSQL.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "D:\\Programming\\CSharp\\2chSQL\\2chSQL\\2chSQL.csproj",
|
||||||
|
"projectName": "2chSQL",
|
||||||
|
"projectPath": "D:\\Programming\\CSharp\\2chSQL\\2chSQL\\2chSQL.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
||||||
|
"outputPath": "D:\\Programming\\CSharp\\2chSQL\\2chSQL\\obj\\publish\\win-x64\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net6.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0": {
|
||||||
|
"targetAlias": "net6.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0": {
|
||||||
|
"targetAlias": "net6.0",
|
||||||
|
"dependencies": {
|
||||||
|
"Npgsql": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[6.0.7, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.401\\RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimes": {
|
||||||
|
"win-x64": {
|
||||||
|
"#import": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
15
obj/publish/win-x64/2chSQL.csproj.nuget.g.props
Normal file
15
obj/publish/win-x64/2chSQL.csproj.nuget.g.props
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<?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\Admin\.nuget\packages\</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\Admin\.nuget\packages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
2
obj/publish/win-x64/2chSQL.csproj.nuget.g.targets
Normal file
2
obj/publish/win-x64/2chSQL.csproj.nuget.g.targets
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
197
obj/publish/win-x64/project.assets.json
Normal file
197
obj/publish/win-x64/project.assets.json
Normal file
@ -0,0 +1,197 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"targets": {
|
||||||
|
"net6.0": {
|
||||||
|
"Npgsql/6.0.7": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/net6.0/Npgsql.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/Npgsql.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"buildTransitive/netcoreapp3.1/_._": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"net6.0/win-x64": {
|
||||||
|
"Npgsql/6.0.7": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/net6.0/Npgsql.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/Npgsql.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"buildTransitive/netcoreapp3.1/_._": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"Npgsql/6.0.7": {
|
||||||
|
"sha512": "HhD5q/VUJY++tCzc0eCrhtsxmUdP7NxNhUMOdYW6sqpC6NRlFLvUDf5JyRj0gOGkXe3Tn49toaisgvLqlzQ2JQ==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "npgsql/6.0.7",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"README.md",
|
||||||
|
"lib/net5.0/Npgsql.dll",
|
||||||
|
"lib/net5.0/Npgsql.xml",
|
||||||
|
"lib/net6.0/Npgsql.dll",
|
||||||
|
"lib/net6.0/Npgsql.xml",
|
||||||
|
"lib/netcoreapp3.1/Npgsql.dll",
|
||||||
|
"lib/netcoreapp3.1/Npgsql.xml",
|
||||||
|
"lib/netstandard2.0/Npgsql.dll",
|
||||||
|
"lib/netstandard2.0/Npgsql.xml",
|
||||||
|
"lib/netstandard2.1/Npgsql.dll",
|
||||||
|
"lib/netstandard2.1/Npgsql.xml",
|
||||||
|
"npgsql.6.0.7.nupkg.sha512",
|
||||||
|
"npgsql.nuspec",
|
||||||
|
"postgresql.png"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
|
||||||
|
"sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.runtime.compilerservices.unsafe/6.0.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
|
||||||
|
"buildTransitive/netcoreapp3.1/_._",
|
||||||
|
"lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
|
||||||
|
"lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
|
||||||
|
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
|
||||||
|
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
|
||||||
|
"lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
|
||||||
|
"lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
|
||||||
|
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
|
||||||
|
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
|
||||||
|
"system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
|
||||||
|
"system.runtime.compilerservices.unsafe.nuspec",
|
||||||
|
"useSharedDesignerContext.txt"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"projectFileDependencyGroups": {
|
||||||
|
"net6.0": [
|
||||||
|
"Npgsql >= 6.0.7"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"packageFolders": {
|
||||||
|
"C:\\Users\\Admin\\.nuget\\packages\\": {}
|
||||||
|
},
|
||||||
|
"project": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "D:\\Programming\\CSharp\\2chSQL\\2chSQL\\2chSQL.csproj",
|
||||||
|
"projectName": "2chSQL",
|
||||||
|
"projectPath": "D:\\Programming\\CSharp\\2chSQL\\2chSQL\\2chSQL.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
||||||
|
"outputPath": "D:\\Programming\\CSharp\\2chSQL\\2chSQL\\obj\\publish\\win-x64\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net6.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0": {
|
||||||
|
"targetAlias": "net6.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0": {
|
||||||
|
"targetAlias": "net6.0",
|
||||||
|
"dependencies": {
|
||||||
|
"Npgsql": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[6.0.7, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.401\\RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimes": {
|
||||||
|
"win-x64": {
|
||||||
|
"#import": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
11
obj/publish/win-x64/project.nuget.cache
Normal file
11
obj/publish/win-x64/project.nuget.cache
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "5/4wy2RQpziFdxsATyE+8qyDjB360O5rsIrDvKevBrevVof7O3WiUmZ/z92xlLAEoZNt6UdPhNtN8qMd5SCHtQ==",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "D:\\Programming\\CSharp\\2chSQL\\2chSQL\\2chSQL.csproj",
|
||||||
|
"expectedPackageFiles": [
|
||||||
|
"C:\\Users\\Admin\\.nuget\\packages\\npgsql\\6.0.7\\npgsql.6.0.7.nupkg.sha512",
|
||||||
|
"C:\\Users\\Admin\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
|
||||||
|
],
|
||||||
|
"logs": []
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user