commit 3a09f89384040a114662f6d27c1946ee9a48fbde Author: RakVhalate Date: Fri Oct 14 20:00:11 2022 +1000 benis diff --git a/2chSQL.csproj b/2chSQL.csproj new file mode 100644 index 0000000..2ef3d83 --- /dev/null +++ b/2chSQL.csproj @@ -0,0 +1,15 @@ + + + + Exe + net6.0 + _2chSQL + enable + enable + + + + + + + diff --git a/2chSQL.csproj.user b/2chSQL.csproj.user new file mode 100644 index 0000000..fcd6eea --- /dev/null +++ b/2chSQL.csproj.user @@ -0,0 +1,6 @@ + + + + <_LastSelectedProfileId>D:\Programming\CSharp\2chSQL\2chSQL\Properties\PublishProfiles\FolderProfile.pubxml + + \ No newline at end of file diff --git a/DBLinks.cs b/DBLinks.cs new file mode 100644 index 0000000..66a9930 --- /dev/null +++ b/DBLinks.cs @@ -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("С добавлением закончено"); + } + } +} diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..257498c --- /dev/null +++ b/Program.cs @@ -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; + } + + } + } +} \ No newline at end of file diff --git a/Properties/PublishProfiles/FolderProfile.pubxml b/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 0000000..c7d0b3a --- /dev/null +++ b/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,18 @@ + + + + + Release + Any CPU + bin\Release\net6.0\publish\win-x64\ + FileSystem + <_TargetId>Folder + net6.0 + win-x64 + false + false + false + + \ No newline at end of file diff --git a/Properties/PublishProfiles/FolderProfile.pubxml.user b/Properties/PublishProfiles/FolderProfile.pubxml.user new file mode 100644 index 0000000..132e52d --- /dev/null +++ b/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -0,0 +1,10 @@ + + + + + True|2022-10-14T09:40:26.3564048Z;False|2022-10-14T19:40:20.2288873+10:00; + + + \ No newline at end of file diff --git a/bin/Debug/net6.0/2chSQL.deps.json b/bin/Debug/net6.0/2chSQL.deps.json new file mode 100644 index 0000000..1ec4b15 --- /dev/null +++ b/bin/Debug/net6.0/2chSQL.deps.json @@ -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" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net6.0/2chSQL.dll b/bin/Debug/net6.0/2chSQL.dll new file mode 100644 index 0000000..0818dc1 Binary files /dev/null and b/bin/Debug/net6.0/2chSQL.dll differ diff --git a/bin/Debug/net6.0/2chSQL.exe b/bin/Debug/net6.0/2chSQL.exe new file mode 100644 index 0000000..2cc77b6 Binary files /dev/null and b/bin/Debug/net6.0/2chSQL.exe differ diff --git a/bin/Debug/net6.0/2chSQL.pdb b/bin/Debug/net6.0/2chSQL.pdb new file mode 100644 index 0000000..5268761 Binary files /dev/null and b/bin/Debug/net6.0/2chSQL.pdb differ diff --git a/bin/Debug/net6.0/2chSQL.runtimeconfig.json b/bin/Debug/net6.0/2chSQL.runtimeconfig.json new file mode 100644 index 0000000..4986d16 --- /dev/null +++ b/bin/Debug/net6.0/2chSQL.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net6.0/Npgsql.dll b/bin/Debug/net6.0/Npgsql.dll new file mode 100644 index 0000000..e100da4 Binary files /dev/null and b/bin/Debug/net6.0/Npgsql.dll differ diff --git a/bin/Release/net6.0/2chSQL.deps.json b/bin/Release/net6.0/2chSQL.deps.json new file mode 100644 index 0000000..1ec4b15 --- /dev/null +++ b/bin/Release/net6.0/2chSQL.deps.json @@ -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" + } + } +} \ No newline at end of file diff --git a/bin/Release/net6.0/2chSQL.dll b/bin/Release/net6.0/2chSQL.dll new file mode 100644 index 0000000..8dc6d8c Binary files /dev/null and b/bin/Release/net6.0/2chSQL.dll differ diff --git a/bin/Release/net6.0/2chSQL.exe b/bin/Release/net6.0/2chSQL.exe new file mode 100644 index 0000000..2cc77b6 Binary files /dev/null and b/bin/Release/net6.0/2chSQL.exe differ diff --git a/bin/Release/net6.0/2chSQL.pdb b/bin/Release/net6.0/2chSQL.pdb new file mode 100644 index 0000000..d995594 Binary files /dev/null and b/bin/Release/net6.0/2chSQL.pdb differ diff --git a/bin/Release/net6.0/2chSQL.runtimeconfig.json b/bin/Release/net6.0/2chSQL.runtimeconfig.json new file mode 100644 index 0000000..e7b3b03 --- /dev/null +++ b/bin/Release/net6.0/2chSQL.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/bin/Release/net6.0/Npgsql.dll b/bin/Release/net6.0/Npgsql.dll new file mode 100644 index 0000000..e100da4 Binary files /dev/null and b/bin/Release/net6.0/Npgsql.dll differ diff --git a/bin/Release/net6.0/publish/win-x64/2chSQL.deps.json b/bin/Release/net6.0/publish/win-x64/2chSQL.deps.json new file mode 100644 index 0000000..226acaa --- /dev/null +++ b/bin/Release/net6.0/publish/win-x64/2chSQL.deps.json @@ -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" + } + } +} \ No newline at end of file diff --git a/bin/Release/net6.0/publish/win-x64/2chSQL.dll b/bin/Release/net6.0/publish/win-x64/2chSQL.dll new file mode 100644 index 0000000..b04f984 Binary files /dev/null and b/bin/Release/net6.0/publish/win-x64/2chSQL.dll differ diff --git a/bin/Release/net6.0/publish/win-x64/2chSQL.exe b/bin/Release/net6.0/publish/win-x64/2chSQL.exe new file mode 100644 index 0000000..2cc77b6 Binary files /dev/null and b/bin/Release/net6.0/publish/win-x64/2chSQL.exe differ diff --git a/bin/Release/net6.0/publish/win-x64/2chSQL.pdb b/bin/Release/net6.0/publish/win-x64/2chSQL.pdb new file mode 100644 index 0000000..8316d02 Binary files /dev/null and b/bin/Release/net6.0/publish/win-x64/2chSQL.pdb differ diff --git a/bin/Release/net6.0/publish/win-x64/2chSQL.runtimeconfig.json b/bin/Release/net6.0/publish/win-x64/2chSQL.runtimeconfig.json new file mode 100644 index 0000000..e7b3b03 --- /dev/null +++ b/bin/Release/net6.0/publish/win-x64/2chSQL.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/bin/Release/net6.0/publish/win-x64/Npgsql.dll b/bin/Release/net6.0/publish/win-x64/Npgsql.dll new file mode 100644 index 0000000..e100da4 Binary files /dev/null and b/bin/Release/net6.0/publish/win-x64/Npgsql.dll differ diff --git a/bin/Release/net6.0/publish/win-x64/КИБЕРТРЕД.rar b/bin/Release/net6.0/publish/win-x64/КИБЕРТРЕД.rar new file mode 100644 index 0000000..776cf22 Binary files /dev/null and b/bin/Release/net6.0/publish/win-x64/КИБЕРТРЕД.rar differ diff --git a/bin/Release/net6.0/win-x64/2chSQL.deps.json b/bin/Release/net6.0/win-x64/2chSQL.deps.json new file mode 100644 index 0000000..226acaa --- /dev/null +++ b/bin/Release/net6.0/win-x64/2chSQL.deps.json @@ -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" + } + } +} \ No newline at end of file diff --git a/bin/Release/net6.0/win-x64/2chSQL.dll b/bin/Release/net6.0/win-x64/2chSQL.dll new file mode 100644 index 0000000..b04f984 Binary files /dev/null and b/bin/Release/net6.0/win-x64/2chSQL.dll differ diff --git a/bin/Release/net6.0/win-x64/2chSQL.exe b/bin/Release/net6.0/win-x64/2chSQL.exe new file mode 100644 index 0000000..2cc77b6 Binary files /dev/null and b/bin/Release/net6.0/win-x64/2chSQL.exe differ diff --git a/bin/Release/net6.0/win-x64/2chSQL.pdb b/bin/Release/net6.0/win-x64/2chSQL.pdb new file mode 100644 index 0000000..8316d02 Binary files /dev/null and b/bin/Release/net6.0/win-x64/2chSQL.pdb differ diff --git a/bin/Release/net6.0/win-x64/2chSQL.runtimeconfig.json b/bin/Release/net6.0/win-x64/2chSQL.runtimeconfig.json new file mode 100644 index 0000000..e7b3b03 --- /dev/null +++ b/bin/Release/net6.0/win-x64/2chSQL.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/bin/Release/net6.0/win-x64/Npgsql.dll b/bin/Release/net6.0/win-x64/Npgsql.dll new file mode 100644 index 0000000..e100da4 Binary files /dev/null and b/bin/Release/net6.0/win-x64/Npgsql.dll differ diff --git a/obj/2chSQL.csproj.nuget.dgspec.json b/obj/2chSQL.csproj.nuget.dgspec.json new file mode 100644 index 0000000..1ec62b5 --- /dev/null +++ b/obj/2chSQL.csproj.nuget.dgspec.json @@ -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" + } + } + } + } +} \ No newline at end of file diff --git a/obj/2chSQL.csproj.nuget.g.props b/obj/2chSQL.csproj.nuget.g.props new file mode 100644 index 0000000..e3937d8 --- /dev/null +++ b/obj/2chSQL.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Admin\.nuget\packages\ + PackageReference + 6.3.0 + + + + + \ No newline at end of file diff --git a/obj/2chSQL.csproj.nuget.g.targets b/obj/2chSQL.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/obj/2chSQL.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/obj/Debug/net6.0/2chSQL.AssemblyInfo.cs b/obj/Debug/net6.0/2chSQL.AssemblyInfo.cs new file mode 100644 index 0000000..54d8423 --- /dev/null +++ b/obj/Debug/net6.0/2chSQL.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +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. + diff --git a/obj/Debug/net6.0/2chSQL.AssemblyInfoInputs.cache b/obj/Debug/net6.0/2chSQL.AssemblyInfoInputs.cache new file mode 100644 index 0000000..12487f7 --- /dev/null +++ b/obj/Debug/net6.0/2chSQL.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +ccfc554bb30609f31397b8b3676deec577e62088 diff --git a/obj/Debug/net6.0/2chSQL.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0/2chSQL.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..90cf9ff --- /dev/null +++ b/obj/Debug/net6.0/2chSQL.GeneratedMSBuildEditorConfig.editorconfig @@ -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\ diff --git a/obj/Debug/net6.0/2chSQL.GlobalUsings.g.cs b/obj/Debug/net6.0/2chSQL.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net6.0/2chSQL.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +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; diff --git a/obj/Debug/net6.0/2chSQL.assets.cache b/obj/Debug/net6.0/2chSQL.assets.cache new file mode 100644 index 0000000..9a06e9a Binary files /dev/null and b/obj/Debug/net6.0/2chSQL.assets.cache differ diff --git a/obj/Debug/net6.0/2chSQL.csproj.AssemblyReference.cache b/obj/Debug/net6.0/2chSQL.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f1d9f8a Binary files /dev/null and b/obj/Debug/net6.0/2chSQL.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net6.0/2chSQL.csproj.BuildWithSkipAnalyzers b/obj/Debug/net6.0/2chSQL.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0/2chSQL.csproj.CopyComplete b/obj/Debug/net6.0/2chSQL.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net6.0/2chSQL.csproj.CoreCompileInputs.cache b/obj/Debug/net6.0/2chSQL.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..31d1702 --- /dev/null +++ b/obj/Debug/net6.0/2chSQL.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +46ea69bcb15fbe3cea0a29604e47a19e964b4041 diff --git a/obj/Debug/net6.0/2chSQL.csproj.FileListAbsolute.txt b/obj/Debug/net6.0/2chSQL.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..cc4ab63 --- /dev/null +++ b/obj/Debug/net6.0/2chSQL.csproj.FileListAbsolute.txt @@ -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 diff --git a/obj/Debug/net6.0/2chSQL.dll b/obj/Debug/net6.0/2chSQL.dll new file mode 100644 index 0000000..0818dc1 Binary files /dev/null and b/obj/Debug/net6.0/2chSQL.dll differ diff --git a/obj/Debug/net6.0/2chSQL.genruntimeconfig.cache b/obj/Debug/net6.0/2chSQL.genruntimeconfig.cache new file mode 100644 index 0000000..be50afa --- /dev/null +++ b/obj/Debug/net6.0/2chSQL.genruntimeconfig.cache @@ -0,0 +1 @@ +96ecee267f7877022a8aac5b4d984a35d1de5f87 diff --git a/obj/Debug/net6.0/2chSQL.pdb b/obj/Debug/net6.0/2chSQL.pdb new file mode 100644 index 0000000..5268761 Binary files /dev/null and b/obj/Debug/net6.0/2chSQL.pdb differ diff --git a/obj/Debug/net6.0/apphost.exe b/obj/Debug/net6.0/apphost.exe new file mode 100644 index 0000000..2cc77b6 Binary files /dev/null and b/obj/Debug/net6.0/apphost.exe differ diff --git a/obj/Debug/net6.0/ref/2chSQL.dll b/obj/Debug/net6.0/ref/2chSQL.dll new file mode 100644 index 0000000..b2f3e36 Binary files /dev/null and b/obj/Debug/net6.0/ref/2chSQL.dll differ diff --git a/obj/Debug/net6.0/refint/2chSQL.dll b/obj/Debug/net6.0/refint/2chSQL.dll new file mode 100644 index 0000000..b2f3e36 Binary files /dev/null and b/obj/Debug/net6.0/refint/2chSQL.dll differ diff --git a/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/obj/Release/net6.0/2chSQL.AssemblyInfo.cs b/obj/Release/net6.0/2chSQL.AssemblyInfo.cs new file mode 100644 index 0000000..4ad401b --- /dev/null +++ b/obj/Release/net6.0/2chSQL.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +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. + diff --git a/obj/Release/net6.0/2chSQL.AssemblyInfoInputs.cache b/obj/Release/net6.0/2chSQL.AssemblyInfoInputs.cache new file mode 100644 index 0000000..7e5ebfe --- /dev/null +++ b/obj/Release/net6.0/2chSQL.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +bddb57ed6834c62ee339cb264e8677027b2848f0 diff --git a/obj/Release/net6.0/2chSQL.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net6.0/2chSQL.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..90cf9ff --- /dev/null +++ b/obj/Release/net6.0/2chSQL.GeneratedMSBuildEditorConfig.editorconfig @@ -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\ diff --git a/obj/Release/net6.0/2chSQL.GlobalUsings.g.cs b/obj/Release/net6.0/2chSQL.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Release/net6.0/2chSQL.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +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; diff --git a/obj/Release/net6.0/2chSQL.assets.cache b/obj/Release/net6.0/2chSQL.assets.cache new file mode 100644 index 0000000..bbd551c Binary files /dev/null and b/obj/Release/net6.0/2chSQL.assets.cache differ diff --git a/obj/Release/net6.0/2chSQL.csproj.AssemblyReference.cache b/obj/Release/net6.0/2chSQL.csproj.AssemblyReference.cache new file mode 100644 index 0000000..ebd328c Binary files /dev/null and b/obj/Release/net6.0/2chSQL.csproj.AssemblyReference.cache differ diff --git a/obj/Release/net6.0/2chSQL.csproj.CopyComplete b/obj/Release/net6.0/2chSQL.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net6.0/2chSQL.csproj.CoreCompileInputs.cache b/obj/Release/net6.0/2chSQL.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..32f4b98 --- /dev/null +++ b/obj/Release/net6.0/2chSQL.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +3fc3752bc4d4b4cba86b415c6ba141f12dc804dc diff --git a/obj/Release/net6.0/2chSQL.csproj.FileListAbsolute.txt b/obj/Release/net6.0/2chSQL.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..5f74d48 --- /dev/null +++ b/obj/Release/net6.0/2chSQL.csproj.FileListAbsolute.txt @@ -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 diff --git a/obj/Release/net6.0/2chSQL.dll b/obj/Release/net6.0/2chSQL.dll new file mode 100644 index 0000000..8dc6d8c Binary files /dev/null and b/obj/Release/net6.0/2chSQL.dll differ diff --git a/obj/Release/net6.0/2chSQL.genruntimeconfig.cache b/obj/Release/net6.0/2chSQL.genruntimeconfig.cache new file mode 100644 index 0000000..bd5ecdf --- /dev/null +++ b/obj/Release/net6.0/2chSQL.genruntimeconfig.cache @@ -0,0 +1 @@ +a0d6ca358d1d7708585c1a2565b0b908391f35ae diff --git a/obj/Release/net6.0/2chSQL.pdb b/obj/Release/net6.0/2chSQL.pdb new file mode 100644 index 0000000..d995594 Binary files /dev/null and b/obj/Release/net6.0/2chSQL.pdb differ diff --git a/obj/Release/net6.0/apphost.exe b/obj/Release/net6.0/apphost.exe new file mode 100644 index 0000000..2cc77b6 Binary files /dev/null and b/obj/Release/net6.0/apphost.exe differ diff --git a/obj/Release/net6.0/ref/2chSQL.dll b/obj/Release/net6.0/ref/2chSQL.dll new file mode 100644 index 0000000..d894193 Binary files /dev/null and b/obj/Release/net6.0/ref/2chSQL.dll differ diff --git a/obj/Release/net6.0/refint/2chSQL.dll b/obj/Release/net6.0/refint/2chSQL.dll new file mode 100644 index 0000000..d894193 Binary files /dev/null and b/obj/Release/net6.0/refint/2chSQL.dll differ diff --git a/obj/Release/net6.0/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Release/net6.0/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/obj/Release/net6.0/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/obj/Release/net6.0/win-x64/2chSQL.AssemblyInfo.cs b/obj/Release/net6.0/win-x64/2chSQL.AssemblyInfo.cs new file mode 100644 index 0000000..4ad401b --- /dev/null +++ b/obj/Release/net6.0/win-x64/2chSQL.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +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. + diff --git a/obj/Release/net6.0/win-x64/2chSQL.AssemblyInfoInputs.cache b/obj/Release/net6.0/win-x64/2chSQL.AssemblyInfoInputs.cache new file mode 100644 index 0000000..7e5ebfe --- /dev/null +++ b/obj/Release/net6.0/win-x64/2chSQL.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +bddb57ed6834c62ee339cb264e8677027b2848f0 diff --git a/obj/Release/net6.0/win-x64/2chSQL.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net6.0/win-x64/2chSQL.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..90cf9ff --- /dev/null +++ b/obj/Release/net6.0/win-x64/2chSQL.GeneratedMSBuildEditorConfig.editorconfig @@ -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\ diff --git a/obj/Release/net6.0/win-x64/2chSQL.GlobalUsings.g.cs b/obj/Release/net6.0/win-x64/2chSQL.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Release/net6.0/win-x64/2chSQL.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +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; diff --git a/obj/Release/net6.0/win-x64/2chSQL.assets.cache b/obj/Release/net6.0/win-x64/2chSQL.assets.cache new file mode 100644 index 0000000..dd0b5be Binary files /dev/null and b/obj/Release/net6.0/win-x64/2chSQL.assets.cache differ diff --git a/obj/Release/net6.0/win-x64/2chSQL.csproj.AssemblyReference.cache b/obj/Release/net6.0/win-x64/2chSQL.csproj.AssemblyReference.cache new file mode 100644 index 0000000..ebd328c Binary files /dev/null and b/obj/Release/net6.0/win-x64/2chSQL.csproj.AssemblyReference.cache differ diff --git a/obj/Release/net6.0/win-x64/2chSQL.csproj.CopyComplete b/obj/Release/net6.0/win-x64/2chSQL.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net6.0/win-x64/2chSQL.csproj.CoreCompileInputs.cache b/obj/Release/net6.0/win-x64/2chSQL.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..d67e15a --- /dev/null +++ b/obj/Release/net6.0/win-x64/2chSQL.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +2bfbe63dcb78ed7b11a0e9d36b9e8ac97ce49e5d diff --git a/obj/Release/net6.0/win-x64/2chSQL.csproj.FileListAbsolute.txt b/obj/Release/net6.0/win-x64/2chSQL.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..be79533 --- /dev/null +++ b/obj/Release/net6.0/win-x64/2chSQL.csproj.FileListAbsolute.txt @@ -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 diff --git a/obj/Release/net6.0/win-x64/2chSQL.dll b/obj/Release/net6.0/win-x64/2chSQL.dll new file mode 100644 index 0000000..b04f984 Binary files /dev/null and b/obj/Release/net6.0/win-x64/2chSQL.dll differ diff --git a/obj/Release/net6.0/win-x64/2chSQL.genruntimeconfig.cache b/obj/Release/net6.0/win-x64/2chSQL.genruntimeconfig.cache new file mode 100644 index 0000000..c427376 --- /dev/null +++ b/obj/Release/net6.0/win-x64/2chSQL.genruntimeconfig.cache @@ -0,0 +1 @@ +9d8e22032c91aec805d4d3aa21c84fd7f8ab98cd diff --git a/obj/Release/net6.0/win-x64/2chSQL.pdb b/obj/Release/net6.0/win-x64/2chSQL.pdb new file mode 100644 index 0000000..8316d02 Binary files /dev/null and b/obj/Release/net6.0/win-x64/2chSQL.pdb differ diff --git a/obj/Release/net6.0/win-x64/PublishOutputs.8f657d327a.txt b/obj/Release/net6.0/win-x64/PublishOutputs.8f657d327a.txt new file mode 100644 index 0000000..fb6ec14 --- /dev/null +++ b/obj/Release/net6.0/win-x64/PublishOutputs.8f657d327a.txt @@ -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 diff --git a/obj/Release/net6.0/win-x64/apphost.exe b/obj/Release/net6.0/win-x64/apphost.exe new file mode 100644 index 0000000..2cc77b6 Binary files /dev/null and b/obj/Release/net6.0/win-x64/apphost.exe differ diff --git a/obj/Release/net6.0/win-x64/ref/2chSQL.dll b/obj/Release/net6.0/win-x64/ref/2chSQL.dll new file mode 100644 index 0000000..8b3ba83 Binary files /dev/null and b/obj/Release/net6.0/win-x64/ref/2chSQL.dll differ diff --git a/obj/Release/net6.0/win-x64/refint/2chSQL.dll b/obj/Release/net6.0/win-x64/refint/2chSQL.dll new file mode 100644 index 0000000..8b3ba83 Binary files /dev/null and b/obj/Release/net6.0/win-x64/refint/2chSQL.dll differ diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..f9efd36 --- /dev/null +++ b/obj/project.assets.json @@ -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" + } + } + } +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..304722c --- /dev/null +++ b/obj/project.nuget.cache @@ -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": [] +} \ No newline at end of file diff --git a/obj/publish/win-x64/2chSQL.csproj.nuget.dgspec.json b/obj/publish/win-x64/2chSQL.csproj.nuget.dgspec.json new file mode 100644 index 0000000..c3e28bc --- /dev/null +++ b/obj/publish/win-x64/2chSQL.csproj.nuget.dgspec.json @@ -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": [] + } + } + } + } +} \ No newline at end of file diff --git a/obj/publish/win-x64/2chSQL.csproj.nuget.g.props b/obj/publish/win-x64/2chSQL.csproj.nuget.g.props new file mode 100644 index 0000000..e3937d8 --- /dev/null +++ b/obj/publish/win-x64/2chSQL.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Admin\.nuget\packages\ + PackageReference + 6.3.0 + + + + + \ No newline at end of file diff --git a/obj/publish/win-x64/2chSQL.csproj.nuget.g.targets b/obj/publish/win-x64/2chSQL.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/obj/publish/win-x64/2chSQL.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/obj/publish/win-x64/project.assets.json b/obj/publish/win-x64/project.assets.json new file mode 100644 index 0000000..4ddf4b8 --- /dev/null +++ b/obj/publish/win-x64/project.assets.json @@ -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": [] + } + } + } +} \ No newline at end of file diff --git a/obj/publish/win-x64/project.nuget.cache b/obj/publish/win-x64/project.nuget.cache new file mode 100644 index 0000000..8c48a4e --- /dev/null +++ b/obj/publish/win-x64/project.nuget.cache @@ -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": [] +} \ No newline at end of file