diff --git a/server/.gitignore b/server/.gitignore deleted file mode 100644 index 7761cae..0000000 --- a/server/.gitignore +++ /dev/null @@ -1,66 +0,0 @@ - -# Created by https://www.toptal.com/developers/gitignore/api/unity -# Edit at https://www.toptal.com/developers/gitignore?templates=unity - -### Unity ### -# This .gitignore file should be placed at the root of your Unity project directory -# -# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore -/Server/[Ll]ibrary/ -/Server/[Tt]emp/ -/Server/[Oo]bj/ -/Server/[Bb]uild/ -/Server/[Ll]ogs/ -/Server/[Uu]ser[Ss]ettings/ - -# MemoryCaptures can get excessive in size. -# They also could contain extremely sensitive data -/Server/[Mm]emoryCaptures/ - -# Recordings can get excessive in size -/Server/[Rr]ecordings/ - -# Autogenerated Jetbrains Rider plugin -/Server/[Aa]ssets/Plugins/Editor/JetBrains* - -# Visual Studio cache directory -.vs/ -.obj/ - -# Visual Code directory -.vscode/ - -# Gradle cache directory -.gradle/ - -# Autogenerated VS/MD/Consulo solution and project files -ExportedObj/ -.consulo/ -*.csproj -*.unityproj -*.sln -*.suo -*.tmp -*.user -*.userprefs -*.pidb -*.booproj -*.svd -*.pdb -*.mdb -*.opendb -*.VC.db - -# Unity3D generated meta files -*.pidb.meta -*.pdb.meta -*.mdb.meta - -# Unity3D generated file on crash reports -sysinfo.txt - -# Builds -*.apk -*.aab -*.unitypackage -*.app diff --git a/server/Server/obj/Debug/.DS_Store b/server/Server/obj/Debug/.DS_Store new file mode 100644 index 0000000..04ad432 Binary files /dev/null and b/server/Server/obj/Debug/.DS_Store differ diff --git a/server/Server/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/server/Server/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..ed92695 --- /dev/null +++ b/server/Server/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 = ".NET 6.0")] diff --git a/server/Server/obj/Debug/net6.0/Server.AssemblyInfo.cs b/server/Server/obj/Debug/net6.0/Server.AssemblyInfo.cs new file mode 100644 index 0000000..c2a9cd2 --- /dev/null +++ b/server/Server/obj/Debug/net6.0/Server.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 이 코드는 도구를 사용하여 생성되었습니다. +// 런타임 버전:4.0.30319.42000 +// +// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면 +// 이러한 변경 내용이 손실됩니다. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Server")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Server")] +[assembly: System.Reflection.AssemblyTitleAttribute("Server")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// MSBuild WriteCodeFragment 클래스에서 생성되었습니다. + diff --git a/server/Server/obj/Debug/net6.0/Server.AssemblyInfoInputs.cache b/server/Server/obj/Debug/net6.0/Server.AssemblyInfoInputs.cache new file mode 100644 index 0000000..3d2b19f --- /dev/null +++ b/server/Server/obj/Debug/net6.0/Server.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +24a19a338571d06fa5670dc4c5fa352c3d517153 diff --git a/server/Server/obj/Debug/net6.0/Server.GeneratedMSBuildEditorConfig.editorconfig b/server/Server/obj/Debug/net6.0/Server.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..452b32f --- /dev/null +++ b/server/Server/obj/Debug/net6.0/Server.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Server +build_property.RootNamespace = Server +build_property.ProjectDir = E:\git\CsServer\Server\ +build_property.RazorLangVersion = 6.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = E:\git\CsServer\Server +build_property._RazorSourceGeneratorDebug = diff --git a/server/Server/obj/Debug/net6.0/Server.GlobalUsings.g.cs b/server/Server/obj/Debug/net6.0/Server.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/server/Server/obj/Debug/net6.0/Server.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +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.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/server/Server/obj/Debug/net6.0/Server.MvcApplicationPartsAssemblyInfo.cache b/server/Server/obj/Debug/net6.0/Server.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/server/Server/obj/Debug/net6.0/Server.assets.cache b/server/Server/obj/Debug/net6.0/Server.assets.cache new file mode 100644 index 0000000..147e0f7 Binary files /dev/null and b/server/Server/obj/Debug/net6.0/Server.assets.cache differ diff --git a/server/Server/obj/Debug/net6.0/Server.csproj.AssemblyReference.cache b/server/Server/obj/Debug/net6.0/Server.csproj.AssemblyReference.cache new file mode 100644 index 0000000..fea32bf Binary files /dev/null and b/server/Server/obj/Debug/net6.0/Server.csproj.AssemblyReference.cache differ diff --git a/server/Server/obj/Debug/net6.0/Server.csproj.BuildWithSkipAnalyzers b/server/Server/obj/Debug/net6.0/Server.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/server/Server/obj/Debug/net6.0/Server.csproj.CopyComplete b/server/Server/obj/Debug/net6.0/Server.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/server/Server/obj/Debug/net6.0/Server.csproj.CoreCompileInputs.cache b/server/Server/obj/Debug/net6.0/Server.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4d51c9b --- /dev/null +++ b/server/Server/obj/Debug/net6.0/Server.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e06c50d31a8c60a25c1a22bc641412d14691fe3a diff --git a/server/Server/obj/Debug/net6.0/Server.csproj.FileListAbsolute.txt b/server/Server/obj/Debug/net6.0/Server.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c5d083d --- /dev/null +++ b/server/Server/obj/Debug/net6.0/Server.csproj.FileListAbsolute.txt @@ -0,0 +1,140 @@ +C:/Users/snowpipe/Desktop/bin/Server/Server/bin/Debug/net6.0/appsettings.Development.json +C:/Users/snowpipe/Desktop/bin/Server/Server/bin/Debug/net6.0/appsettings.json +C:/Users/snowpipe/Desktop/bin/Server/Server/bin/Debug/net6.0/Server.exe +C:/Users/snowpipe/Desktop/bin/Server/Server/bin/Debug/net6.0/Server.deps.json +C:/Users/snowpipe/Desktop/bin/Server/Server/bin/Debug/net6.0/Server.runtimeconfig.json +C:/Users/snowpipe/Desktop/bin/Server/Server/bin/Debug/net6.0/Server.dll +C:/Users/snowpipe/Desktop/bin/Server/Server/bin/Debug/net6.0/Server.pdb +C:/Users/snowpipe/Desktop/bin/Server/Server/bin/Debug/net6.0/Newtonsoft.Json.dll +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/Server.csproj.AssemblyReference.cache +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/Server.GeneratedMSBuildEditorConfig.editorconfig +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/Server.AssemblyInfoInputs.cache +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/Server.AssemblyInfo.cs +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/Server.csproj.CoreCompileInputs.cache +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/Server.MvcApplicationPartsAssemblyInfo.cache +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/staticwebassets/msbuild.Server.Microsoft.AspNetCore.StaticWebAssets.props +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/staticwebassets/msbuild.build.Server.props +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.Server.props +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.Server.props +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/staticwebassets.pack.json +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/staticwebassets.build.json +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/staticwebassets.development.json +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/scopedcss/bundle/Server.styles.css +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/Server.csproj.CopyComplete +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/Server.dll +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/refint/Server.dll +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/Server.pdb +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/Server.genruntimeconfig.cache +C:/Users/snowpipe/Desktop/bin/Server/Server/obj/Debug/net6.0/ref/Server.dll +/Users/pandoli365/Desktop/net/CsServer/Server/bin/Debug/net6.0/appsettings.Development.json +/Users/pandoli365/Desktop/net/CsServer/Server/bin/Debug/net6.0/appsettings.json +/Users/pandoli365/Desktop/net/CsServer/Server/bin/Debug/net6.0/Server +/Users/pandoli365/Desktop/net/CsServer/Server/bin/Debug/net6.0/Server.deps.json +/Users/pandoli365/Desktop/net/CsServer/Server/bin/Debug/net6.0/Server.runtimeconfig.json +/Users/pandoli365/Desktop/net/CsServer/Server/bin/Debug/net6.0/Server.dll +/Users/pandoli365/Desktop/net/CsServer/Server/bin/Debug/net6.0/Server.pdb +/Users/pandoli365/Desktop/net/CsServer/Server/bin/Debug/net6.0/Newtonsoft.Json.dll +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/Server.csproj.AssemblyReference.cache +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/Server.GeneratedMSBuildEditorConfig.editorconfig +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/Server.AssemblyInfoInputs.cache +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/Server.AssemblyInfo.cs +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/Server.csproj.CoreCompileInputs.cache +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/Server.MvcApplicationPartsAssemblyInfo.cache +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/staticwebassets/msbuild.Server.Microsoft.AspNetCore.StaticWebAssets.props +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/staticwebassets/msbuild.build.Server.props +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.Server.props +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.Server.props +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/staticwebassets.pack.json +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/staticwebassets.build.json +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/staticwebassets.development.json +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/scopedcss/bundle/Server.styles.css +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/Server.csproj.CopyComplete +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/Server.dll +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/refint/Server.dll +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/Server.pdb +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/Server.genruntimeconfig.cache +/Users/pandoli365/Desktop/net/CsServer/Server/obj/Debug/net6.0/ref/Server.dll +/Users/pandoli365/Desktop/net/CsServer/Server/bin/Debug/net6.0/NLog.config +/Users/pandoli365/Desktop/net/CsServer/Server/bin/Debug/net6.0/NLog.dll +/Users/pandoli365/Downloads/git/CsServer/Server/bin/Debug/net6.0/NLog.config +/Users/pandoli365/Downloads/git/CsServer/Server/bin/Debug/net6.0/appsettings.Development.json +/Users/pandoli365/Downloads/git/CsServer/Server/bin/Debug/net6.0/appsettings.json +/Users/pandoli365/Downloads/git/CsServer/Server/bin/Debug/net6.0/Server +/Users/pandoli365/Downloads/git/CsServer/Server/bin/Debug/net6.0/Server.deps.json +/Users/pandoli365/Downloads/git/CsServer/Server/bin/Debug/net6.0/Server.runtimeconfig.json +/Users/pandoli365/Downloads/git/CsServer/Server/bin/Debug/net6.0/Server.dll +/Users/pandoli365/Downloads/git/CsServer/Server/bin/Debug/net6.0/Server.pdb +/Users/pandoli365/Downloads/git/CsServer/Server/bin/Debug/net6.0/Newtonsoft.Json.dll +/Users/pandoli365/Downloads/git/CsServer/Server/bin/Debug/net6.0/NLog.dll +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/Server.csproj.AssemblyReference.cache +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/Server.GeneratedMSBuildEditorConfig.editorconfig +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/Server.AssemblyInfoInputs.cache +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/Server.AssemblyInfo.cs +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/Server.csproj.CoreCompileInputs.cache +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/Server.MvcApplicationPartsAssemblyInfo.cache +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/staticwebassets/msbuild.Server.Microsoft.AspNetCore.StaticWebAssets.props +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/staticwebassets/msbuild.build.Server.props +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.Server.props +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.Server.props +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/staticwebassets.pack.json +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/staticwebassets.build.json +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/staticwebassets.development.json +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/scopedcss/bundle/Server.styles.css +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/Server.csproj.CopyComplete +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/Server.dll +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/refint/Server.dll +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/Server.pdb +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/Server.genruntimeconfig.cache +/Users/pandoli365/Downloads/git/CsServer/Server/obj/Debug/net6.0/ref/Server.dll +E:\git\CsServer\Server\bin\Debug\net6.0\NLog.config +E:\git\CsServer\Server\bin\Debug\net6.0\appsettings.Development.json +E:\git\CsServer\Server\bin\Debug\net6.0\appsettings.json +E:\git\CsServer\Server\bin\Debug\net6.0\Server.exe +E:\git\CsServer\Server\bin\Debug\net6.0\Server.deps.json +E:\git\CsServer\Server\bin\Debug\net6.0\Server.runtimeconfig.json +E:\git\CsServer\Server\bin\Debug\net6.0\Server.dll +E:\git\CsServer\Server\bin\Debug\net6.0\Server.pdb +E:\git\CsServer\Server\bin\Debug\net6.0\Newtonsoft.Json.dll +E:\git\CsServer\Server\bin\Debug\net6.0\NLog.dll +E:\git\CsServer\Server\obj\Debug\net6.0\Server.csproj.AssemblyReference.cache +E:\git\CsServer\Server\obj\Debug\net6.0\Server.GeneratedMSBuildEditorConfig.editorconfig +E:\git\CsServer\Server\obj\Debug\net6.0\Server.AssemblyInfoInputs.cache +E:\git\CsServer\Server\obj\Debug\net6.0\Server.AssemblyInfo.cs +E:\git\CsServer\Server\obj\Debug\net6.0\Server.csproj.CoreCompileInputs.cache +E:\git\CsServer\Server\obj\Debug\net6.0\Server.MvcApplicationPartsAssemblyInfo.cache +E:\git\CsServer\Server\obj\Debug\net6.0\staticwebassets.build.json +E:\git\CsServer\Server\obj\Debug\net6.0\staticwebassets.development.json +E:\git\CsServer\Server\obj\Debug\net6.0\scopedcss\bundle\Server.styles.css +E:\git\CsServer\Server\obj\Debug\net6.0\Server.csproj.CopyComplete +E:\git\CsServer\Server\obj\Debug\net6.0\Server.dll +E:\git\CsServer\Server\obj\Debug\net6.0\refint\Server.dll +E:\git\CsServer\Server\obj\Debug\net6.0\Server.pdb +E:\git\CsServer\Server\obj\Debug\net6.0\Server.genruntimeconfig.cache +E:\git\CsServer\Server\obj\Debug\net6.0\ref\Server.dll +E:\git\CsServer\Server\bin\Debug\net6.0\LibGit2Sharp.dll +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\linux-arm\native\libgit2-e632535.so +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\linux-arm64\native\libgit2-e632535.so +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\linux-musl-arm\native\libgit2-e632535.so +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\linux-musl-arm64\native\libgit2-e632535.so +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libgit2-e632535.so +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\linux-x64\native\libgit2-e632535.so +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\osx-arm64\native\libgit2-e632535.dylib +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\osx-x64\native\libgit2-e632535.dylib +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win-arm64\native\git2-e632535.dll +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win-x64\native\git2-e632535.dll +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win-x86\native\git2-e632535.dll +E:\git\CsServer\Server\bin\Debug\net6.0\Aspose.Cells.dll +E:\git\CsServer\Server\bin\Debug\net6.0\SkiaSharp.dll +E:\git\CsServer\Server\bin\Debug\net6.0\System.Security.Cryptography.Pkcs.dll +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\osx\native\libSkiaSharp.dylib +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win-arm64\native\libSkiaSharp.dll +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win-x64\native\libSkiaSharp.dll +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win-x86\native\libSkiaSharp.dll +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll +E:\git\CsServer\Server\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +E:\git\CsServer\Server\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll +E:\git\CsServer\Server\bin\Debug\net6.0\Npgsql.dll +E:\git\CsServer\Server\bin\Debug\net6.0\System.Diagnostics.DiagnosticSource.dll +E:\git\CsServer\Server\bin\Debug\net6.0\System.Text.Encodings.Web.dll +E:\git\CsServer\Server\bin\Debug\net6.0\System.Text.Json.dll +E:\git\CsServer\Server\bin\Debug\net6.0\runtimes\browser\lib\net6.0\System.Text.Encodings.Web.dll diff --git a/server/Server/obj/Debug/net6.0/Server.dll b/server/Server/obj/Debug/net6.0/Server.dll new file mode 100644 index 0000000..03d3ae7 Binary files /dev/null and b/server/Server/obj/Debug/net6.0/Server.dll differ diff --git a/server/Server/obj/Debug/net6.0/Server.genruntimeconfig.cache b/server/Server/obj/Debug/net6.0/Server.genruntimeconfig.cache new file mode 100644 index 0000000..3b698c1 --- /dev/null +++ b/server/Server/obj/Debug/net6.0/Server.genruntimeconfig.cache @@ -0,0 +1 @@ +5a972d05249776184d6dd56cb42ed98944f2aa1f diff --git a/server/Server/obj/Debug/net6.0/apphost b/server/Server/obj/Debug/net6.0/apphost new file mode 100644 index 0000000..7d83e9b Binary files /dev/null and b/server/Server/obj/Debug/net6.0/apphost differ diff --git a/server/Server/obj/Debug/net6.0/apphost.exe b/server/Server/obj/Debug/net6.0/apphost.exe new file mode 100644 index 0000000..e221984 Binary files /dev/null and b/server/Server/obj/Debug/net6.0/apphost.exe differ diff --git a/server/Server/obj/Debug/net6.0/ref/Server.dll b/server/Server/obj/Debug/net6.0/ref/Server.dll new file mode 100644 index 0000000..a90568d Binary files /dev/null and b/server/Server/obj/Debug/net6.0/ref/Server.dll differ diff --git a/server/Server/obj/Debug/net6.0/refint/Server.dll b/server/Server/obj/Debug/net6.0/refint/Server.dll new file mode 100644 index 0000000..a90568d Binary files /dev/null and b/server/Server/obj/Debug/net6.0/refint/Server.dll differ diff --git a/server/Server/obj/Debug/net6.0/staticwebassets.build.json b/server/Server/obj/Debug/net6.0/staticwebassets.build.json new file mode 100644 index 0000000..abfef2d --- /dev/null +++ b/server/Server/obj/Debug/net6.0/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "z8/jf/uVtfFHkS7UZKSCL97FvnwEOhJPQdCo8dr/ZzU=", + "Source": "Server", + "BasePath": "_content/Server", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/server/Server/obj/Debug/net6.0/staticwebassets/msbuild.build.Server.props b/server/Server/obj/Debug/net6.0/staticwebassets/msbuild.build.Server.props new file mode 100644 index 0000000..5a6032a --- /dev/null +++ b/server/Server/obj/Debug/net6.0/staticwebassets/msbuild.build.Server.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/server/Server/obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.Server.props b/server/Server/obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.Server.props new file mode 100644 index 0000000..da21aa0 --- /dev/null +++ b/server/Server/obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.Server.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/server/Server/obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.Server.props b/server/Server/obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.Server.props new file mode 100644 index 0000000..c06b3f4 --- /dev/null +++ b/server/Server/obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.Server.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/server/Server/obj/Server.csproj.nuget.dgspec.json b/server/Server/obj/Server.csproj.nuget.dgspec.json new file mode 100644 index 0000000..7a5491a --- /dev/null +++ b/server/Server/obj/Server.csproj.nuget.dgspec.json @@ -0,0 +1,92 @@ +{ + "format": 1, + "restore": { + "E:\\git\\CsServer\\Server\\Server.csproj": {} + }, + "projects": { + "E:\\git\\CsServer\\Server\\Server.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\git\\CsServer\\Server\\Server.csproj", + "projectName": "Server", + "projectPath": "E:\\git\\CsServer\\Server\\Server.csproj", + "packagesPath": "C:\\Users\\acst0\\.nuget\\packages\\", + "outputPath": "E:\\git\\CsServer\\Server\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\acst0\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.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": { + "Aspose.Cells": { + "target": "Package", + "version": "[23.11.0, )" + }, + "LibGit2Sharp": { + "target": "Package", + "version": "[0.28.0, )" + }, + "NLog": { + "target": "Package", + "version": "[5.2.5, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "Npgsql": { + "target": "Package", + "version": "[8.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/server/Server/obj/Server.csproj.nuget.g.props b/server/Server/obj/Server.csproj.nuget.g.props new file mode 100644 index 0000000..2bb18c5 --- /dev/null +++ b/server/Server/obj/Server.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\acst0\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.3.0 + + + + + + + + + \ No newline at end of file diff --git a/server/Server/obj/Server.csproj.nuget.g.targets b/server/Server/obj/Server.csproj.nuget.g.targets new file mode 100644 index 0000000..03c1b87 --- /dev/null +++ b/server/Server/obj/Server.csproj.nuget.g.targets @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/server/Server/obj/project.assets.json b/server/Server/obj/project.assets.json new file mode 100644 index 0000000..e60f862 --- /dev/null +++ b/server/Server/obj/project.assets.json @@ -0,0 +1,1143 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "Aspose.Cells/23.11.0": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.6", + "System.Security.Cryptography.Pkcs": "6.0.3", + "System.Text.Encoding.CodePages": "4.7.0" + }, + "compile": { + "lib/net6.0/Aspose.Cells.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Aspose.Cells.dll": { + "related": ".xml" + } + } + }, + "LibGit2Sharp/0.28.0": { + "type": "package", + "dependencies": { + "LibGit2Sharp.NativeBinaries": "[2.0.320]" + }, + "compile": { + "lib/net6.0/LibGit2Sharp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/LibGit2Sharp.dll": { + "related": ".xml" + } + } + }, + "LibGit2Sharp.NativeBinaries/2.0.320": { + "type": "package", + "build": { + "build/LibGit2Sharp.NativeBinaries.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/LibGit2Sharp.NativeBinaries.props": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libgit2-e632535.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libgit2-e632535.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-arm/native/libgit2-e632535.so": { + "assetType": "native", + "rid": "linux-musl-arm" + }, + "runtimes/linux-musl-arm64/native/libgit2-e632535.so": { + "assetType": "native", + "rid": "linux-musl-arm64" + }, + "runtimes/linux-musl-x64/native/libgit2-e632535.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libgit2-e632535.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/osx-arm64/native/libgit2-e632535.dylib": { + "assetType": "native", + "rid": "osx-arm64" + }, + "runtimes/osx-x64/native/libgit2-e632535.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm64/native/git2-e632535.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/git2-e632535.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/git2-e632535.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "NLog/5.2.5": { + "type": "package", + "compile": { + "lib/netstandard2.0/NLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/NLog.dll": { + "related": ".xml" + } + } + }, + "Npgsql/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Json": "8.0.0" + }, + "compile": { + "lib/net6.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "SkiaSharp/2.88.6": { + "type": "package", + "dependencies": { + "SkiaSharp.NativeAssets.Win32": "2.88.6", + "SkiaSharp.NativeAssets.macOS": "2.88.6" + }, + "compile": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.NativeAssets.macOS/2.88.6": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libSkiaSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "SkiaSharp.NativeAssets.Win32/2.88.6": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.Diagnostics.DiagnosticSource/8.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Formats.Asn1/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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/_._": {} + } + }, + "System.Security.Cryptography.Pkcs/6.0.3": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.CodePages/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/8.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "8.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} + } + } + } + }, + "libraries": { + "Aspose.Cells/23.11.0": { + "sha512": "iYwyXNrsBxtKTrNUndRnOp2gnqIMLRH/EvJqWQfV94poKfXoe0hLINTeptxa88Tnv432iuQOxUJAsjh1LTs7Dw==", + "type": "package", + "path": "aspose.cells/23.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Help/Aspose.Cells For .NET Documentation.chm", + "Help/Aspose.Cells.GridJs for .NETSTANDARD Documentation.chm", + "License/Aspose_End-User-License-Agreement.txt", + "License/thirdpartylicenses.Aspose.Cells.for.NET.pdf", + "aspose.cells.23.11.0.nupkg.sha512", + "aspose.cells.nuspec", + "images/aspose_cells-for-net.png", + "lib/net40-client/Aspose.Cells.dll", + "lib/net40-client/Aspose.Cells.xml", + "lib/net40/Aspose.Cells.dll", + "lib/net40/Aspose.Cells.xml", + "lib/net6.0-windows7.0/Aspose.Cells.dll", + "lib/net6.0-windows7.0/Aspose.Cells.xml", + "lib/net6.0/Aspose.Cells.dll", + "lib/net6.0/Aspose.Cells.xml", + "lib/net7.0-windows7.0/Aspose.Cells.dll", + "lib/net7.0-windows7.0/Aspose.Cells.xml", + "lib/net7.0/Aspose.Cells.dll", + "lib/net7.0/Aspose.Cells.xml", + "lib/netstandard2.0/Aspose.Cells.dll", + "lib/netstandard2.0/Aspose.Cells.xml" + ] + }, + "LibGit2Sharp/0.28.0": { + "sha512": "+VGXLAQovtTc41EkUXBKSuu40XcyuWUmQrslpd0CPMGkpnLTgQwoRLSSCRxLSPjYSi9SskyRUOLa9tjg/L108A==", + "type": "package", + "path": "libgit2sharp/0.28.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "App_Readme/CHANGES.md", + "App_Readme/LICENSE.md", + "App_Readme/README.md", + "lib/net472/LibGit2Sharp.dll", + "lib/net472/LibGit2Sharp.xml", + "lib/net6.0/LibGit2Sharp.dll", + "lib/net6.0/LibGit2Sharp.xml", + "libgit2sharp.0.28.0.nupkg.sha512", + "libgit2sharp.nuspec", + "square-logo.png" + ] + }, + "LibGit2Sharp.NativeBinaries/2.0.320": { + "sha512": "7vIqOhB+5LOi9arXi8IdlkWURpQEiMtnwVP//djA7cQvIVfpC4bZSnQIDe4kwwvsU/w1oH0YkBTgMmpkVndNbg==", + "type": "package", + "path": "libgit2sharp.nativebinaries/2.0.320", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/LibGit2Sharp.NativeBinaries.props", + "build/net46/LibGit2Sharp.NativeBinaries.props", + "buildMultiTargeting/LibGit2Sharp.NativeBinaries.props", + "libgit2/LibGit2Sharp.dll.config", + "libgit2/libgit2.license.txt", + "libgit2/libgit2.png", + "libgit2/libgit2_hash.txt", + "libgit2sharp.nativebinaries.2.0.320.nupkg.sha512", + "libgit2sharp.nativebinaries.nuspec", + "runtimes/linux-arm/native/libgit2-e632535.so", + "runtimes/linux-arm64/native/libgit2-e632535.so", + "runtimes/linux-musl-arm/native/libgit2-e632535.so", + "runtimes/linux-musl-arm64/native/libgit2-e632535.so", + "runtimes/linux-musl-x64/native/libgit2-e632535.so", + "runtimes/linux-x64/native/libgit2-e632535.so", + "runtimes/osx-arm64/native/libgit2-e632535.dylib", + "runtimes/osx-x64/native/libgit2-e632535.dylib", + "runtimes/win-arm64/native/git2-e632535.dll", + "runtimes/win-x64/native/git2-e632535.dll", + "runtimes/win-x86/native/git2-e632535.dll" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "type": "package", + "path": "microsoft.netcore.platforms/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NLog/5.2.5": { + "sha512": "mMXtbAxfNzqkXcBjhJ3wN3rH7kwUZ0JL0GrUBI/lso7+tQ/HC4e5SnlmR3R5qQ9zWbqMbjxeH37rIf0yQGWTiA==", + "type": "package", + "path": "nlog/5.2.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "N.png", + "lib/net35/NLog.dll", + "lib/net35/NLog.xml", + "lib/net45/NLog.dll", + "lib/net45/NLog.xml", + "lib/net46/NLog.dll", + "lib/net46/NLog.xml", + "lib/netstandard1.3/NLog.dll", + "lib/netstandard1.3/NLog.xml", + "lib/netstandard1.5/NLog.dll", + "lib/netstandard1.5/NLog.xml", + "lib/netstandard2.0/NLog.dll", + "lib/netstandard2.0/NLog.xml", + "nlog.5.2.5.nupkg.sha512", + "nlog.nuspec" + ] + }, + "Npgsql/8.0.0": { + "sha512": "Qiz74U+O7Mv4knrsXgKVYGJjgwoziK+aMFZqz7PtKR3vyGIhZA0tnW6HoUnL3X+YqtmVuhmoKkN8LDWEHMxPbw==", + "type": "package", + "path": "npgsql/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net7.0/Npgsql.dll", + "lib/net7.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.8.0.0.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "SkiaSharp/2.88.6": { + "sha512": "wdfeBAQrEQCbJIRgAiargzP1Uy+0grZiG4CSgBnhAgcJTsPzlifIaO73JRdwIlT3TyBoeU9jEqzwFUhl4hTYnQ==", + "type": "package", + "path": "skiasharp/2.88.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "interactive-extensions/dotnet/SkiaSharp.DotNet.Interactive.dll", + "lib/monoandroid1.0/SkiaSharp.dll", + "lib/monoandroid1.0/SkiaSharp.pdb", + "lib/monoandroid1.0/SkiaSharp.xml", + "lib/net462/SkiaSharp.dll", + "lib/net462/SkiaSharp.pdb", + "lib/net462/SkiaSharp.xml", + "lib/net6.0-android30.0/SkiaSharp.dll", + "lib/net6.0-android30.0/SkiaSharp.pdb", + "lib/net6.0-android30.0/SkiaSharp.xml", + "lib/net6.0-ios13.6/SkiaSharp.dll", + "lib/net6.0-ios13.6/SkiaSharp.pdb", + "lib/net6.0-ios13.6/SkiaSharp.xml", + "lib/net6.0-maccatalyst13.5/SkiaSharp.dll", + "lib/net6.0-maccatalyst13.5/SkiaSharp.pdb", + "lib/net6.0-maccatalyst13.5/SkiaSharp.xml", + "lib/net6.0-macos10.15/SkiaSharp.dll", + "lib/net6.0-macos10.15/SkiaSharp.pdb", + "lib/net6.0-macos10.15/SkiaSharp.xml", + "lib/net6.0-tizen7.0/SkiaSharp.dll", + "lib/net6.0-tizen7.0/SkiaSharp.pdb", + "lib/net6.0-tizen7.0/SkiaSharp.xml", + "lib/net6.0-tvos13.4/SkiaSharp.dll", + "lib/net6.0-tvos13.4/SkiaSharp.pdb", + "lib/net6.0-tvos13.4/SkiaSharp.xml", + "lib/net6.0/SkiaSharp.dll", + "lib/net6.0/SkiaSharp.pdb", + "lib/net6.0/SkiaSharp.xml", + "lib/netcoreapp3.1/SkiaSharp.dll", + "lib/netcoreapp3.1/SkiaSharp.pdb", + "lib/netcoreapp3.1/SkiaSharp.xml", + "lib/netstandard1.3/SkiaSharp.dll", + "lib/netstandard1.3/SkiaSharp.pdb", + "lib/netstandard1.3/SkiaSharp.xml", + "lib/netstandard2.0/SkiaSharp.dll", + "lib/netstandard2.0/SkiaSharp.pdb", + "lib/netstandard2.0/SkiaSharp.xml", + "lib/netstandard2.1/SkiaSharp.dll", + "lib/netstandard2.1/SkiaSharp.pdb", + "lib/netstandard2.1/SkiaSharp.xml", + "lib/tizen40/SkiaSharp.dll", + "lib/tizen40/SkiaSharp.pdb", + "lib/tizen40/SkiaSharp.xml", + "lib/uap10.0.10240/SkiaSharp.dll", + "lib/uap10.0.10240/SkiaSharp.pdb", + "lib/uap10.0.10240/SkiaSharp.xml", + "lib/uap10.0.16299/SkiaSharp.dll", + "lib/uap10.0.16299/SkiaSharp.pdb", + "lib/uap10.0.16299/SkiaSharp.xml", + "lib/xamarinios1.0/SkiaSharp.dll", + "lib/xamarinios1.0/SkiaSharp.pdb", + "lib/xamarinios1.0/SkiaSharp.xml", + "lib/xamarinmac2.0/SkiaSharp.dll", + "lib/xamarinmac2.0/SkiaSharp.pdb", + "lib/xamarinmac2.0/SkiaSharp.xml", + "lib/xamarintvos1.0/SkiaSharp.dll", + "lib/xamarintvos1.0/SkiaSharp.pdb", + "lib/xamarintvos1.0/SkiaSharp.xml", + "lib/xamarinwatchos1.0/SkiaSharp.dll", + "lib/xamarinwatchos1.0/SkiaSharp.pdb", + "lib/xamarinwatchos1.0/SkiaSharp.xml", + "skiasharp.2.88.6.nupkg.sha512", + "skiasharp.nuspec" + ] + }, + "SkiaSharp.NativeAssets.macOS/2.88.6": { + "sha512": "Sko9LFxRXSjb3OGh5/RxrVRXxYo48tr5NKuuSy6jB85GrYt8WRqVY1iLOLwtjPiVAt4cp+pyD4i30azanS64dw==", + "type": "package", + "path": "skiasharp.nativeassets.macos/2.88.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libSkiaSharp.dylib", + "skiasharp.nativeassets.macos.2.88.6.nupkg.sha512", + "skiasharp.nativeassets.macos.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Win32/2.88.6": { + "sha512": "7TzFO0u/g2MpQsTty4fyCDdMcfcWI+aLswwfnYXr3gtNS6VLKdMXPMeKpJa3pJSLnUBN6wD0JjuCe8OoLBQ6cQ==", + "type": "package", + "path": "skiasharp.nativeassets.win32/2.88.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Win32.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libSkiaSharp.dll", + "runtimes/win-x64/native/libSkiaSharp.dll", + "runtimes/win-x86/native/libSkiaSharp.dll", + "skiasharp.nativeassets.win32.2.88.6.nupkg.sha512", + "skiasharp.nativeassets.win32.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/8.0.0": { + "sha512": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net7.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Formats.Asn1/6.0.0": { + "sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", + "type": "package", + "path": "system.formats.asn1/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Formats.Asn1.dll", + "lib/net461/System.Formats.Asn1.xml", + "lib/net6.0/System.Formats.Asn1.dll", + "lib/net6.0/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.6.0.0.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "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" + ] + }, + "System.Security.Cryptography.Pkcs/6.0.3": { + "sha512": "18UT1BdZ4TYFBHk/wuq7JzCdE3X75z81X+C2rXqIlmEnC21Pm60spGV/dKQSzbyomstqYE33EuN5hfnC86VFxA==", + "type": "package", + "path": "system.security.cryptography.pkcs/6.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.xml", + "lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", + "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.6.0.3.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encoding.CodePages/4.7.0": { + "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==", + "type": "package", + "path": "system.text.encoding.codepages/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.4.7.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/8.0.0": { + "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "type": "package", + "path": "system.text.encodings.web/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/net7.0/System.Text.Encodings.Web.dll", + "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.8.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/8.0.0": { + "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "type": "package", + "path": "system.text.json/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/net7.0/System.Text.Json.dll", + "lib/net7.0/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.8.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "Aspose.Cells >= 23.11.0", + "LibGit2Sharp >= 0.28.0", + "NLog >= 5.2.5", + "Newtonsoft.Json >= 13.0.3", + "Npgsql >= 8.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\acst0\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\git\\CsServer\\Server\\Server.csproj", + "projectName": "Server", + "projectPath": "E:\\git\\CsServer\\Server\\Server.csproj", + "packagesPath": "C:\\Users\\acst0\\.nuget\\packages\\", + "outputPath": "E:\\git\\CsServer\\Server\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\acst0\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.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": { + "Aspose.Cells": { + "target": "Package", + "version": "[23.11.0, )" + }, + "LibGit2Sharp": { + "target": "Package", + "version": "[0.28.0, )" + }, + "NLog": { + "target": "Package", + "version": "[5.2.5, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "Npgsql": { + "target": "Package", + "version": "[8.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/server/Server/obj/project.nuget.cache b/server/Server/obj/project.nuget.cache new file mode 100644 index 0000000..11347c7 --- /dev/null +++ b/server/Server/obj/project.nuget.cache @@ -0,0 +1,28 @@ +{ + "version": 2, + "dgSpecHash": "mqjrT0psY1bh5pPYuFvVGksqVDGIb9h3wRTl0WKT65Jvc3vVnbn6gASe/F71xdFwk7B4tkYfnfbGzX7I7bZYhQ==", + "success": true, + "projectFilePath": "E:\\git\\CsServer\\Server\\Server.csproj", + "expectedPackageFiles": [ + "C:\\Users\\acst0\\.nuget\\packages\\aspose.cells\\23.11.0\\aspose.cells.23.11.0.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\libgit2sharp\\0.28.0\\libgit2sharp.0.28.0.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\libgit2sharp.nativebinaries\\2.0.320\\libgit2sharp.nativebinaries.2.0.320.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.0\\microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.0\\microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\nlog\\5.2.5\\nlog.5.2.5.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\npgsql\\8.0.0\\npgsql.8.0.0.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\skiasharp\\2.88.6\\skiasharp.2.88.6.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\skiasharp.nativeassets.macos\\2.88.6\\skiasharp.nativeassets.macos.2.88.6.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\skiasharp.nativeassets.win32\\2.88.6\\skiasharp.nativeassets.win32.2.88.6.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.0\\system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.3\\system.security.cryptography.pkcs.6.0.3.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512", + "C:\\Users\\acst0\\.nuget\\packages\\system.text.json\\8.0.0\\system.text.json.8.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file