commit 0a91734a27836b548e422e7f53f42a86a6e65aa0 Author: chrisbell Date: Tue Jan 20 10:05:45 2026 -0600 Init diff --git a/SessionZero.sln b/SessionZero.sln new file mode 100644 index 0000000..ce6e57b --- /dev/null +++ b/SessionZero.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SzLib", "SzLib\SzLib.csproj", "{ED0D882A-FB40-4BD7-9681-7A13C5B6443C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SzCli", "SzCli\SzCli.csproj", "{F598E3F7-5CE7-4713-9AED-9BCFDC872974}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {ED0D882A-FB40-4BD7-9681-7A13C5B6443C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ED0D882A-FB40-4BD7-9681-7A13C5B6443C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ED0D882A-FB40-4BD7-9681-7A13C5B6443C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ED0D882A-FB40-4BD7-9681-7A13C5B6443C}.Release|Any CPU.Build.0 = Release|Any CPU + {F598E3F7-5CE7-4713-9AED-9BCFDC872974}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F598E3F7-5CE7-4713-9AED-9BCFDC872974}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F598E3F7-5CE7-4713-9AED-9BCFDC872974}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F598E3F7-5CE7-4713-9AED-9BCFDC872974}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/SzCli/Program.cs b/SzCli/Program.cs new file mode 100644 index 0000000..3751555 --- /dev/null +++ b/SzCli/Program.cs @@ -0,0 +1,2 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!"); diff --git a/SzCli/SzCli.csproj b/SzCli/SzCli.csproj new file mode 100644 index 0000000..62cb45c --- /dev/null +++ b/SzCli/SzCli.csproj @@ -0,0 +1,14 @@ + + + + + + + + Exe + net8.0 + enable + enable + + + diff --git a/SzCli/bin/Debug/net8.0/SzCli b/SzCli/bin/Debug/net8.0/SzCli new file mode 100755 index 0000000..0bd51ab Binary files /dev/null and b/SzCli/bin/Debug/net8.0/SzCli differ diff --git a/SzCli/bin/Debug/net8.0/SzCli.deps.json b/SzCli/bin/Debug/net8.0/SzCli.deps.json new file mode 100644 index 0000000..c9b16ab --- /dev/null +++ b/SzCli/bin/Debug/net8.0/SzCli.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "SzCli/1.0.0": { + "runtime": { + "SzCli.dll": {} + } + } + } + }, + "libraries": { + "SzCli/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/SzCli/bin/Debug/net8.0/SzCli.dll b/SzCli/bin/Debug/net8.0/SzCli.dll new file mode 100644 index 0000000..3d39ae9 Binary files /dev/null and b/SzCli/bin/Debug/net8.0/SzCli.dll differ diff --git a/SzCli/bin/Debug/net8.0/SzCli.pdb b/SzCli/bin/Debug/net8.0/SzCli.pdb new file mode 100644 index 0000000..ad0110b Binary files /dev/null and b/SzCli/bin/Debug/net8.0/SzCli.pdb differ diff --git a/SzCli/bin/Debug/net8.0/SzCli.runtimeconfig.json b/SzCli/bin/Debug/net8.0/SzCli.runtimeconfig.json new file mode 100644 index 0000000..becfaea --- /dev/null +++ b/SzCli/bin/Debug/net8.0/SzCli.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/SzCli/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/SzCli/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..af94399 --- /dev/null +++ b/SzCli/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = "")] diff --git a/SzCli/obj/Debug/net8.0/SzCli.AssemblyInfo.cs b/SzCli/obj/Debug/net8.0/SzCli.AssemblyInfo.cs new file mode 100644 index 0000000..54f1900 --- /dev/null +++ b/SzCli/obj/Debug/net8.0/SzCli.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("SzCli")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("SzCli")] +[assembly: System.Reflection.AssemblyTitleAttribute("SzCli")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/SzCli/obj/Debug/net8.0/SzCli.AssemblyInfoInputs.cache b/SzCli/obj/Debug/net8.0/SzCli.AssemblyInfoInputs.cache new file mode 100644 index 0000000..0bd26a8 --- /dev/null +++ b/SzCli/obj/Debug/net8.0/SzCli.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +afe5c40efd4716643682615343a5156aa629cadf7e8a019aed8de227767d5d14 diff --git a/SzCli/obj/Debug/net8.0/SzCli.GeneratedMSBuildEditorConfig.editorconfig b/SzCli/obj/Debug/net8.0/SzCli.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..1cd2946 --- /dev/null +++ b/SzCli/obj/Debug/net8.0/SzCli.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = SzCli +build_property.ProjectDir = /data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/SzCli/obj/Debug/net8.0/SzCli.GlobalUsings.g.cs b/SzCli/obj/Debug/net8.0/SzCli.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/SzCli/obj/Debug/net8.0/SzCli.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/SzCli/obj/Debug/net8.0/SzCli.assets.cache b/SzCli/obj/Debug/net8.0/SzCli.assets.cache new file mode 100644 index 0000000..84f2b0b Binary files /dev/null and b/SzCli/obj/Debug/net8.0/SzCli.assets.cache differ diff --git a/SzCli/obj/Debug/net8.0/SzCli.csproj.CoreCompileInputs.cache b/SzCli/obj/Debug/net8.0/SzCli.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..43b7e98 --- /dev/null +++ b/SzCli/obj/Debug/net8.0/SzCli.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +dab4a57a9d611670fdf1cc3846137771063d76dab36e53cb6b65f70229653bb2 diff --git a/SzCli/obj/Debug/net8.0/SzCli.csproj.FileListAbsolute.txt b/SzCli/obj/Debug/net8.0/SzCli.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..55c6dff --- /dev/null +++ b/SzCli/obj/Debug/net8.0/SzCli.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/bin/Debug/net8.0/SzCli +/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/bin/Debug/net8.0/SzCli.deps.json +/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/bin/Debug/net8.0/SzCli.runtimeconfig.json +/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/bin/Debug/net8.0/SzCli.dll +/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/bin/Debug/net8.0/SzCli.pdb +/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/obj/Debug/net8.0/SzCli.GeneratedMSBuildEditorConfig.editorconfig +/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/obj/Debug/net8.0/SzCli.AssemblyInfoInputs.cache +/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/obj/Debug/net8.0/SzCli.AssemblyInfo.cs +/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/obj/Debug/net8.0/SzCli.csproj.CoreCompileInputs.cache +/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/obj/Debug/net8.0/SzCli.dll +/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/obj/Debug/net8.0/refint/SzCli.dll +/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/obj/Debug/net8.0/SzCli.pdb +/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/obj/Debug/net8.0/SzCli.genruntimeconfig.cache +/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/obj/Debug/net8.0/ref/SzCli.dll diff --git a/SzCli/obj/Debug/net8.0/SzCli.dll b/SzCli/obj/Debug/net8.0/SzCli.dll new file mode 100644 index 0000000..3d39ae9 Binary files /dev/null and b/SzCli/obj/Debug/net8.0/SzCli.dll differ diff --git a/SzCli/obj/Debug/net8.0/SzCli.genruntimeconfig.cache b/SzCli/obj/Debug/net8.0/SzCli.genruntimeconfig.cache new file mode 100644 index 0000000..8c03db6 --- /dev/null +++ b/SzCli/obj/Debug/net8.0/SzCli.genruntimeconfig.cache @@ -0,0 +1 @@ +b8727a6ae593e7f5a29f341947d40380ff342eabe79f877cbe12242927c6d5e5 diff --git a/SzCli/obj/Debug/net8.0/SzCli.pdb b/SzCli/obj/Debug/net8.0/SzCli.pdb new file mode 100644 index 0000000..ad0110b Binary files /dev/null and b/SzCli/obj/Debug/net8.0/SzCli.pdb differ diff --git a/SzCli/obj/Debug/net8.0/apphost b/SzCli/obj/Debug/net8.0/apphost new file mode 100755 index 0000000..0bd51ab Binary files /dev/null and b/SzCli/obj/Debug/net8.0/apphost differ diff --git a/SzCli/obj/Debug/net8.0/ref/SzCli.dll b/SzCli/obj/Debug/net8.0/ref/SzCli.dll new file mode 100644 index 0000000..9978967 Binary files /dev/null and b/SzCli/obj/Debug/net8.0/ref/SzCli.dll differ diff --git a/SzCli/obj/Debug/net8.0/refint/SzCli.dll b/SzCli/obj/Debug/net8.0/refint/SzCli.dll new file mode 100644 index 0000000..9978967 Binary files /dev/null and b/SzCli/obj/Debug/net8.0/refint/SzCli.dll differ diff --git a/SzCli/obj/SzCli.csproj.nuget.dgspec.json b/SzCli/obj/SzCli.csproj.nuget.dgspec.json new file mode 100644 index 0000000..dbc5672 --- /dev/null +++ b/SzCli/obj/SzCli.csproj.nuget.dgspec.json @@ -0,0 +1,73 @@ +{ + "format": 1, + "restore": { + "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/SzCli.csproj": {} + }, + "projects": { + "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/SzCli.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/SzCli.csproj", + "projectName": "SzCli", + "projectPath": "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/SzCli.csproj", + "packagesPath": "/home/chris/.nuget/packages/", + "outputPath": "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/chris/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[8.0.22, 8.0.22]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.416/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/SzCli/obj/SzCli.csproj.nuget.g.props b/SzCli/obj/SzCli.csproj.nuget.g.props new file mode 100644 index 0000000..19af5ab --- /dev/null +++ b/SzCli/obj/SzCli.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/chris/.nuget/packages/ + /home/chris/.nuget/packages/ + PackageReference + 6.11.1 + + + + + \ No newline at end of file diff --git a/SzCli/obj/SzCli.csproj.nuget.g.targets b/SzCli/obj/SzCli.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/SzCli/obj/SzCli.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/SzCli/obj/project.assets.json b/SzCli/obj/project.assets.json new file mode 100644 index 0000000..8bc8e0a --- /dev/null +++ b/SzCli/obj/project.assets.json @@ -0,0 +1,78 @@ +{ + "version": 3, + "targets": { + "net8.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0": [] + }, + "packageFolders": { + "/home/chris/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/SzCli.csproj", + "projectName": "SzCli", + "projectPath": "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/SzCli.csproj", + "packagesPath": "/home/chris/.nuget/packages/", + "outputPath": "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/chris/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[8.0.22, 8.0.22]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.416/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/SzCli/obj/project.nuget.cache b/SzCli/obj/project.nuget.cache new file mode 100644 index 0000000..1ba4acf --- /dev/null +++ b/SzCli/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "TzQuaOcUYSs=", + "success": true, + "projectFilePath": "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzCli/SzCli.csproj", + "expectedPackageFiles": [ + "/home/chris/.nuget/packages/microsoft.aspnetcore.app.ref/8.0.22/microsoft.aspnetcore.app.ref.8.0.22.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/SzLib/Class1.cs b/SzLib/Class1.cs new file mode 100644 index 0000000..782cceb --- /dev/null +++ b/SzLib/Class1.cs @@ -0,0 +1,6 @@ +namespace SzLib; + +public class Class1 +{ + +} diff --git a/SzLib/SzLib.csproj b/SzLib/SzLib.csproj new file mode 100644 index 0000000..fa71b7a --- /dev/null +++ b/SzLib/SzLib.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + + diff --git a/SzLib/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/SzLib/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..af94399 --- /dev/null +++ b/SzLib/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = "")] diff --git a/SzLib/obj/Debug/net8.0/SzLib.AssemblyInfo.cs b/SzLib/obj/Debug/net8.0/SzLib.AssemblyInfo.cs new file mode 100644 index 0000000..11d4b78 --- /dev/null +++ b/SzLib/obj/Debug/net8.0/SzLib.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("SzLib")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("SzLib")] +[assembly: System.Reflection.AssemblyTitleAttribute("SzLib")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/SzLib/obj/Debug/net8.0/SzLib.AssemblyInfoInputs.cache b/SzLib/obj/Debug/net8.0/SzLib.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ea5aad1 --- /dev/null +++ b/SzLib/obj/Debug/net8.0/SzLib.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +80c4d268bae2ab39e969427907169a51964e621c diff --git a/SzLib/obj/Debug/net8.0/SzLib.GeneratedMSBuildEditorConfig.editorconfig b/SzLib/obj/Debug/net8.0/SzLib.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5ff539e --- /dev/null +++ b/SzLib/obj/Debug/net8.0/SzLib.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net8.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 = SzLib +build_property.ProjectDir = /data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzLib/ diff --git a/SzLib/obj/Debug/net8.0/SzLib.GlobalUsings.g.cs b/SzLib/obj/Debug/net8.0/SzLib.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/SzLib/obj/Debug/net8.0/SzLib.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/SzLib/obj/Debug/net8.0/SzLib.assets.cache b/SzLib/obj/Debug/net8.0/SzLib.assets.cache new file mode 100644 index 0000000..b52e960 Binary files /dev/null and b/SzLib/obj/Debug/net8.0/SzLib.assets.cache differ diff --git a/SzLib/obj/SzLib.csproj.nuget.dgspec.json b/SzLib/obj/SzLib.csproj.nuget.dgspec.json new file mode 100644 index 0000000..f14ad8b --- /dev/null +++ b/SzLib/obj/SzLib.csproj.nuget.dgspec.json @@ -0,0 +1,73 @@ +{ + "format": 1, + "restore": { + "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzLib/SzLib.csproj": {} + }, + "projects": { + "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzLib/SzLib.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzLib/SzLib.csproj", + "projectName": "SzLib", + "projectPath": "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzLib/SzLib.csproj", + "packagesPath": "/home/chris/.nuget/packages/", + "outputPath": "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzLib/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/chris/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[8.0.22, 8.0.22]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.416/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/SzLib/obj/SzLib.csproj.nuget.g.props b/SzLib/obj/SzLib.csproj.nuget.g.props new file mode 100644 index 0000000..19af5ab --- /dev/null +++ b/SzLib/obj/SzLib.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/chris/.nuget/packages/ + /home/chris/.nuget/packages/ + PackageReference + 6.11.1 + + + + + \ No newline at end of file diff --git a/SzLib/obj/SzLib.csproj.nuget.g.targets b/SzLib/obj/SzLib.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/SzLib/obj/SzLib.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/SzLib/obj/project.assets.json b/SzLib/obj/project.assets.json new file mode 100644 index 0000000..fb96928 --- /dev/null +++ b/SzLib/obj/project.assets.json @@ -0,0 +1,78 @@ +{ + "version": 3, + "targets": { + "net8.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0": [] + }, + "packageFolders": { + "/home/chris/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzLib/SzLib.csproj", + "projectName": "SzLib", + "projectPath": "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzLib/SzLib.csproj", + "packagesPath": "/home/chris/.nuget/packages/", + "outputPath": "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzLib/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/chris/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[8.0.22, 8.0.22]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.416/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/SzLib/obj/project.nuget.cache b/SzLib/obj/project.nuget.cache new file mode 100644 index 0000000..dc99d60 --- /dev/null +++ b/SzLib/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "rw6Dqopfnh8=", + "success": true, + "projectFilePath": "/data/Projects/bellsworne/sessionzero/SessionZeroCS/SessionZero/SzLib/SzLib.csproj", + "expectedPackageFiles": [ + "/home/chris/.nuget/packages/microsoft.aspnetcore.app.ref/8.0.22/microsoft.aspnetcore.app.ref.8.0.22.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/global.json b/global.json new file mode 100644 index 0000000..3fea262 --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "sdk": { + "version": "8.0.0", + "rollForward": "latestFeature" + } +}