diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d17df5a..be06d16 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,12 +1,11 @@ -name: CI / CD +name: CI on: push: branches: [main, develop] + tags: ['v*'] pull_request: branches: [main, develop] - tags: - - 'v*' env: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true @@ -59,7 +58,7 @@ jobs: name: Determine Version runs-on: ubuntu-latest needs: build-and-test - if: github.event_name == 'push' || github.event_name == 'tag' + if: github.event_name == 'push' outputs: version: ${{ steps.version.outputs.version }} is_release: ${{ steps.version.outputs.is_release }} @@ -89,9 +88,11 @@ jobs: if: needs.version.outputs.is_release == 'true' strategy: matrix: + # Folder and assembly name match, so one value drives both the csproj + # path and the artifact name (artifact names cannot contain "/"). project: - - src/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj - - src/BeyondNetCode.Shell.Factory.Installer/BeyondNetCode.Shell.Factory.Installer.csproj + - BeyondNetCode.Shell.Factory + - BeyondNetCode.Shell.Factory.Installer steps: - uses: actions/checkout@v4 @@ -102,10 +103,9 @@ jobs: - name: Pack run: | - dotnet pack "${{ matrix.project }}" \ + dotnet pack "${{ matrix.project }}/${{ matrix.project }}.csproj" \ -c Release \ - --version:${{ needs.version.outputs.version }} \ - --no-build \ + -p:PackageVersion=${{ needs.version.outputs.version }} \ -p:PackageOutputPath=${{ github.workspace }}/nupkgs - name: Upload artifacts @@ -148,7 +148,7 @@ jobs: release: name: Create GitHub Release runs-on: ubuntu-latest - needs: [version] + needs: [version, publish] if: needs.version.outputs.is_release == 'true' steps: - uses: actions/checkout@v4 diff --git a/BeyondNetCode.Shell.Factory.Installer/BeyondNetCode.Shell.Factory.Installer.csproj b/BeyondNetCode.Shell.Factory.Installer/BeyondNetCode.Shell.Factory.Installer.csproj index 6344b66..90e5ffc 100644 --- a/BeyondNetCode.Shell.Factory.Installer/BeyondNetCode.Shell.Factory.Installer.csproj +++ b/BeyondNetCode.Shell.Factory.Installer/BeyondNetCode.Shell.Factory.Installer.csproj @@ -16,11 +16,11 @@ - + True - LICENSE + / - + True README.md diff --git a/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.deps.json b/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.deps.json new file mode 100644 index 0000000..281fd39 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.deps.json @@ -0,0 +1,75 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "BeyondNetCode.Shell.Factory.Installer/1.0.0": { + "dependencies": { + "BeyondNetCode.Shell.Factory": "9.9.9-test" + }, + "runtime": { + "BeyondNetCode.Shell.Factory.Installer.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "BeyondNetCode.Shell.Factory/9.9.9-test": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" + }, + "runtime": { + "BeyondNetCode.Shell.Factory.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "BeyondNetCode.Shell.Factory.Installer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512" + }, + "BeyondNetCode.Shell.Factory/9.9.9-test": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.dll b/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.dll new file mode 100644 index 0000000..e8f9af7 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.dll differ diff --git a/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.pdb b/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.pdb new file mode 100644 index 0000000..605f7aa Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.pdb differ diff --git a/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.dll b/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.dll new file mode 100644 index 0000000..c5fc046 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.dll differ diff --git a/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.pdb b/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.pdb new file mode 100644 index 0000000..aad9ece Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.pdb differ diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/BeyondNetCode.Shell.Factory.Installer.csproj.nuget.dgspec.json b/BeyondNetCode.Shell.Factory.Installer/obj/BeyondNetCode.Shell.Factory.Installer.csproj.nuget.dgspec.json new file mode 100644 index 0000000..2293b4b --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Installer/obj/BeyondNetCode.Shell.Factory.Installer.csproj.nuget.dgspec.json @@ -0,0 +1,684 @@ +{ + "format": 1, + "restore": { + "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/BeyondNetCode.Shell.Factory.Installer.csproj": {} + }, + "projects": { + "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/BeyondNetCode.Shell.Factory.Installer.csproj": { + "version": "9.9.9-test", + "restore": { + "projectUniqueName": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/BeyondNetCode.Shell.Factory.Installer.csproj", + "projectName": "BeyondNetCode.Shell.Factory.Installer", + "projectPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/BeyondNetCode.Shell.Factory.Installer.csproj", + "packagesPath": "/Users/beyondnet/.nuget/packages/", + "outputPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/beyondnet/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj": { + "projectPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.201/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj": { + "version": "9.9.9-test", + "restore": { + "projectUniqueName": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj", + "projectName": "BeyondNetCode.Shell.Factory", + "projectPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj", + "packagesPath": "/Users/beyondnet/.nuget/packages/", + "outputPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/beyondnet/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": { + "target": "Package", + "version": "[8.0.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.201/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/BeyondNetCode.Shell.Factory.Installer.csproj.nuget.g.props b/BeyondNetCode.Shell.Factory.Installer/obj/BeyondNetCode.Shell.Factory.Installer.csproj.nuget.g.props new file mode 100644 index 0000000..a64fed5 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Installer/obj/BeyondNetCode.Shell.Factory.Installer.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/beyondnet/.nuget/packages/ + /Users/beyondnet/.nuget/packages/ + PackageReference + 7.0.0 + + + + + \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/BeyondNetCode.Shell.Factory.Installer.csproj.nuget.g.targets b/BeyondNetCode.Shell.Factory.Installer/obj/BeyondNetCode.Shell.Factory.Installer.csproj.nuget.g.targets new file mode 100644 index 0000000..d3aeb37 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Installer/obj/BeyondNetCode.Shell.Factory.Installer.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/BeyondNetCode.Shell.Factory.Installer.9.9.9-test.nuspec b/BeyondNetCode.Shell.Factory.Installer/obj/Release/BeyondNetCode.Shell.Factory.Installer.9.9.9-test.nuspec new file mode 100644 index 0000000..496940b --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Installer/obj/Release/BeyondNetCode.Shell.Factory.Installer.9.9.9-test.nuspec @@ -0,0 +1,23 @@ + + + + BeyondNetCode.Shell.Factory.Installer + 9.9.9-test + BeyondNetCode.Shell.Factory.Installer + BeyondNetCode.Shell.Factory.Installer + https://github.com/beyondnetcode/Shell.Factory + BeyondNetCode.Shell.Factory.Installer provides installation and registration utilities for Shell.Factory components, enabling seamless integration with dependency injection containers. + BeyondNet Code + + + + + + + + + + + + + \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNe.77ECA46B.Up2Date b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNe.77ECA46B.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.AssemblyInfo.cs b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.AssemblyInfo.cs new file mode 100644 index 0000000..47e6101 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.AssemblyInfo.cs @@ -0,0 +1,27 @@ +//------------------------------------------------------------------------------ +// +// 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("BeyondNetCode.Shell.Factory.Installer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("BeyondNet Code")] +[assembly: System.Reflection.AssemblyDescriptionAttribute(("BeyondNetCode.Shell.Factory.Installer provides installation and registration util" + + "ities for Shell.Factory components, enabling seamless integration with dependenc" + + "y injection containers."))] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5ce44ee9005c6892800859f4a821784335280f34")] +[assembly: System.Reflection.AssemblyProductAttribute("BeyondNetCode.Shell.Factory.Installer")] +[assembly: System.Reflection.AssemblyTitleAttribute("BeyondNetCode.Shell.Factory.Installer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/beyondnetcode/Shell.Factory")] + +// Generado por la clase WriteCodeFragment de MSBuild. + diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.AssemblyInfoInputs.cache b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..b883990 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +95cfa016049297fe16c1813593b5efe54456361917f6944ffbad6356080ab08a diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.GeneratedMSBuildEditorConfig.editorconfig b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b52c575 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.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 = BeyondNetCode.Shell.Factory.Installer +build_property.ProjectDir = /private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.GlobalUsings.g.cs b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.assets.cache b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.assets.cache new file mode 100644 index 0000000..fae525f Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.assets.cache differ diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.csproj.AssemblyReference.cache b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..e6d7fdd Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.csproj.AssemblyReference.cache differ diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.csproj.CoreCompileInputs.cache b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..3d7183f --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +1bf80436b4732c44be1b4313c109702314188ea1f1a2ea652fed3e42b5f14862 diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.csproj.FileListAbsolute.txt b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..4f818e8 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.csproj.FileListAbsolute.txt @@ -0,0 +1,16 @@ +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.deps.json +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.pdb +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/bin/Release/net10.0/BeyondNetCode.Shell.Factory.pdb +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.csproj.AssemblyReference.cache +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.GeneratedMSBuildEditorConfig.editorconfig +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.AssemblyInfoInputs.cache +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.AssemblyInfo.cs +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.csproj.CoreCompileInputs.cache +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.sourcelink.json +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNe.77ECA46B.Up2Date +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/refint/BeyondNetCode.Shell.Factory.Installer.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.pdb +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/ref/BeyondNetCode.Shell.Factory.Installer.dll diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.dll b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.dll new file mode 100644 index 0000000..e8f9af7 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.dll differ diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.pdb b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.pdb new file mode 100644 index 0000000..605f7aa Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.pdb differ diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.sourcelink.json b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.sourcelink.json new file mode 100644 index 0000000..6575138 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Installer.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/*":"https://raw.githubusercontent.com/beyondnetcode/Shell.Factory/5ce44ee9005c6892800859f4a821784335280f34/*"}} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/ref/BeyondNetCode.Shell.Factory.Installer.dll b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/ref/BeyondNetCode.Shell.Factory.Installer.dll new file mode 100644 index 0000000..cfcfb22 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/ref/BeyondNetCode.Shell.Factory.Installer.dll differ diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/refint/BeyondNetCode.Shell.Factory.Installer.dll b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/refint/BeyondNetCode.Shell.Factory.Installer.dll new file mode 100644 index 0000000..cfcfb22 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Installer/obj/Release/net10.0/refint/BeyondNetCode.Shell.Factory.Installer.dll differ diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/project.assets.json b/BeyondNetCode.Shell.Factory.Installer/obj/project.assets.json new file mode 100644 index 0000000..4550114 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Installer/obj/project.assets.json @@ -0,0 +1,512 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "BeyondNetCode.Shell.Factory/9.9.9-test": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" + }, + "compile": { + "bin/placeholder/BeyondNetCode.Shell.Factory.dll": {} + }, + "runtime": { + "bin/placeholder/BeyondNetCode.Shell.Factory.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "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.2.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "sha512": "nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "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.2.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "BeyondNetCode.Shell.Factory/9.9.9-test": { + "type": "project", + "path": "../BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj", + "msbuildProject": "../BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "BeyondNetCode.Shell.Factory >= 9.9.9-test" + ] + }, + "packageFolders": { + "/Users/beyondnet/.nuget/packages/": {} + }, + "project": { + "version": "9.9.9-test", + "restore": { + "projectUniqueName": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/BeyondNetCode.Shell.Factory.Installer.csproj", + "projectName": "BeyondNetCode.Shell.Factory.Installer", + "projectPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/BeyondNetCode.Shell.Factory.Installer.csproj", + "packagesPath": "/Users/beyondnet/.nuget/packages/", + "outputPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/beyondnet/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj": { + "projectPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.201/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Installer/obj/project.nuget.cache b/BeyondNetCode.Shell.Factory.Installer/obj/project.nuget.cache new file mode 100644 index 0000000..c2faeb8 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Installer/obj/project.nuget.cache @@ -0,0 +1,11 @@ +{ + "version": 2, + "dgSpecHash": "m1yqg8vXw/E=", + "success": true, + "projectFilePath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Installer/BeyondNetCode.Shell.Factory.Installer.csproj", + "expectedPackageFiles": [ + "/Users/beyondnet/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/8.0.2/microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/microsoft.extensions.logging.abstractions/8.0.2/microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.deps.json b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.deps.json new file mode 100644 index 0000000..9b804e6 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.deps.json @@ -0,0 +1,560 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "BeyondNetCode.Shell.Factory.Tests/1.0.0": { + "dependencies": { + "BeyondNetCode.Shell.Factory": "1.0.0", + "MSTest.TestFramework": "3.0.4", + "Microsoft.NET.Test.Sdk": "17.6.0", + "Shouldly": "4.2.1", + "Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions": "14.0.0.0" + }, + "runtime": { + "BeyondNetCode.Shell.Factory.Tests.dll": {} + } + }, + "DiffEngine/11.3.0": { + "dependencies": { + "EmptyFiles": "4.4.0", + "System.Management": "6.0.1" + }, + "runtime": { + "lib/net7.0/DiffEngine.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "EmptyFiles/4.4.0": { + "runtime": { + "lib/net7.0/EmptyFiles.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Microsoft.CodeCoverage/17.6.0": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.600.1123.17103" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.NET.Test.Sdk/17.6.0": { + "dependencies": { + "Microsoft.CodeCoverage": "17.6.0", + "Microsoft.TestPlatform.TestHost": "17.6.0" + } + }, + "Microsoft.TestPlatform.ObjectModel/17.6.0": { + "dependencies": { + "NuGet.Frameworks": "5.11.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/17.6.0": { + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.6.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp3.1/testhost.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "MSTest.TestFramework/3.0.4": { + "runtime": { + "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": { + "assemblyVersion": "14.0.0.0", + "fileVersion": "14.0.8501.1" + } + }, + "resources": { + "lib/net6.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "cs" + }, + "lib/net6.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "de" + }, + "lib/net6.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "es" + }, + "lib/net6.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "fr" + }, + "lib/net6.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "it" + }, + "lib/net6.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "ja" + }, + "lib/net6.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "ko" + }, + "lib/net6.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "pl" + }, + "lib/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "pt-BR" + }, + "lib/net6.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "ru" + }, + "lib/net6.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "tr" + }, + "lib/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "NuGet.Frameworks/5.11.0": { + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": { + "assemblyVersion": "5.11.0.10", + "fileVersion": "5.11.0.10" + } + } + }, + "Shouldly/4.2.1": { + "dependencies": { + "DiffEngine": "11.3.0", + "EmptyFiles": "4.4.0" + }, + "runtime": { + "lib/net5.0/Shouldly.dll": { + "assemblyVersion": "4.2.1.0", + "fileVersion": "4.2.1.0" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Management/6.0.1": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Management.dll": { + "assemblyVersion": "6.0.0.1", + "fileVersion": "6.0.1623.17311" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.1", + "fileVersion": "6.0.1623.17311" + } + } + }, + "BeyondNetCode.Shell.Factory/1.0.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" + }, + "runtime": { + "BeyondNetCode.Shell.Factory.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions/14.0.0.0": { + "runtime": { + "Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": { + "assemblyVersion": "14.0.0.0", + "fileVersion": "14.0.8501.1" + } + } + } + } + }, + "libraries": { + "BeyondNetCode.Shell.Factory.Tests/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "DiffEngine/11.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k0ZgZqd09jLZQjR8FyQbSQE86Q7QZnjEzq1LPHtj1R2AoWO8sjV5x+jlSisL7NZAbUOI4y+7Bog8gkr9WIRBGw==", + "path": "diffengine/11.3.0", + "hashPath": "diffengine.11.3.0.nupkg.sha512" + }, + "EmptyFiles/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gwJEfIGS7FhykvtZoscwXj/XwW+mJY6UbAZk+qtLKFUGWC95kfKXnj8VkxsZQnWBxJemM/q664rGLN5nf+OHZw==", + "path": "emptyfiles/4.4.0", + "hashPath": "emptyfiles.4.4.0.nupkg.sha512" + }, + "Microsoft.CodeCoverage/17.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5v2GwzpR7JEuQUzupjx3zLwn2FutADW/weLzLt726DR3WXxsM+ICPoJG6pxuKFsumtZp890UrVuudTUhsE8Qyg==", + "path": "microsoft.codecoverage/17.6.0", + "hashPath": "microsoft.codecoverage.17.6.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512" + }, + "Microsoft.NET.Test.Sdk/17.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tHyg4C6c89QvLv6Utz3xKlba4EeoyJyIz59Q1NrjRENV7gfGnSE6I+sYPIbVOzQttoo2zpHDgOK/p6Hw2OlD7A==", + "path": "microsoft.net.test.sdk/17.6.0", + "hashPath": "microsoft.net.test.sdk.17.6.0.nupkg.sha512" + }, + "Microsoft.TestPlatform.ObjectModel/17.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AA/rrf5zwC5/OBLEOajkhjbVTM3SvxRXy8kcQ8e4mJKojbyZvqqhpfNg362N9vXU94DLg9NUTFOAnoYVT0pTJw==", + "path": "microsoft.testplatform.objectmodel/17.6.0", + "hashPath": "microsoft.testplatform.objectmodel.17.6.0.nupkg.sha512" + }, + "Microsoft.TestPlatform.TestHost/17.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7YdgUcIeCPVKLC7n7LNKDiEHWc7z3brkkYPdUbDnFsvf6WvY9UfzS0VSUJ8P2NgN0CDSD223GCJFSjSBLZRqOQ==", + "path": "microsoft.testplatform.testhost/17.6.0", + "hashPath": "microsoft.testplatform.testhost.17.6.0.nupkg.sha512" + }, + "MSTest.TestFramework/3.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hYq5xOOr2k09rtXpmcHkJ4Tdt/yS4cy8jiFPNMdDJP+lB6OY8yekOmQC4Fsvug4rhLpXGDd6zbPWYeoewqfePA==", + "path": "mstest.testframework/3.0.4", + "hashPath": "mstest.testframework.3.0.4.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "NuGet.Frameworks/5.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==", + "path": "nuget.frameworks/5.11.0", + "hashPath": "nuget.frameworks.5.11.0.nupkg.sha512" + }, + "Shouldly/4.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dKAKiSuhLKqD2TXwLKtqNg1nwzJcIKOOMncZjk9LYe4W+h+SCftpWdxwR79YZUIHMH+3Vu9s0s0UHNrgICLwRQ==", + "path": "shouldly/4.2.1", + "hashPath": "shouldly.4.2.1.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Management/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-10J1D0h/lioojphfJ4Fuh5ZUThT/xOVHdV9roGBittKKNP2PMjrvibEdbVTGZcPra1399Ja3tqIJLyQrc5Wmhg==", + "path": "system.management/6.0.1", + "hashPath": "system.management.6.0.1.nupkg.sha512" + }, + "BeyondNetCode.Shell.Factory/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions/14.0.0.0": { + "type": "reference", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.dll new file mode 100644 index 0000000..47b58cd Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.pdb b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.pdb new file mode 100644 index 0000000..4958276 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.pdb differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.runtimeconfig.json b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.runtimeconfig.json new file mode 100644 index 0000000..f730443 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.runtimeconfig.json @@ -0,0 +1,13 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.dll new file mode 100644 index 0000000..c5fc046 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.pdb b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.pdb new file mode 100644 index 0000000..aad9ece Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.pdb differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/CoverletSourceRootsMapping_BeyondNetCode.Shell.Factory.Tests b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/CoverletSourceRootsMapping_BeyondNetCode.Shell.Factory.Tests new file mode 100644 index 0000000..d3725c9 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/CoverletSourceRootsMapping_BeyondNetCode.Shell.Factory.Tests differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/DiffEngine.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/DiffEngine.dll new file mode 100755 index 0000000..0a8a517 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/DiffEngine.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles.dll new file mode 100755 index 0000000..1d18f4d Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.7z b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.7z new file mode 100755 index 0000000..46e2c91 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.7z differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.bz2 b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.bz2 new file mode 100755 index 0000000..b56f3b9 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.bz2 differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.gz b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.gz new file mode 100755 index 0000000..ea332a7 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.gz differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.tar b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.tar new file mode 100755 index 0000000..77d4c84 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.tar differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.xz b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.xz new file mode 100755 index 0000000..d793b11 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.xz differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.zip b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.zip new file mode 100755 index 0000000..15cb0ec Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.zip differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.docx b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.docx new file mode 100755 index 0000000..5c2de8e Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.docx differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.odt b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.odt new file mode 100755 index 0000000..e6de947 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.odt differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.pdf b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.pdf new file mode 100755 index 0000000..cc771d5 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.pdf differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.rtf b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.rtf new file mode 100755 index 0000000..afdd7c5 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.rtf @@ -0,0 +1 @@ +{\rtf} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.avif b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.avif new file mode 100755 index 0000000..d32be6d Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.avif differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.bmp b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.bmp new file mode 100755 index 0000000..de874f7 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.bmp differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.dds b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.dds new file mode 100755 index 0000000..e611aac Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.dds differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.dib b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.dib new file mode 100755 index 0000000..de874f7 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.dib differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.emf b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.emf new file mode 100755 index 0000000..363b241 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.emf differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.exif b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.exif new file mode 100755 index 0000000..43a6ab7 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.exif differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.gif b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.gif new file mode 100755 index 0000000..035311b Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.gif differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.heic b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.heic new file mode 100755 index 0000000..96995bc Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.heic differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.heif b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.heif new file mode 100755 index 0000000..ca70c19 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.heif differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.ico b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.ico new file mode 100755 index 0000000..d4b3252 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.ico differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.j2c b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.j2c new file mode 100755 index 0000000..905019b Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.j2c differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jfif b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jfif new file mode 100755 index 0000000..43a6ab7 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jfif differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jp2 b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jp2 new file mode 100755 index 0000000..d9c7566 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jp2 differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jpc b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jpc new file mode 100755 index 0000000..905019b Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jpc differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jpe b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jpe new file mode 100755 index 0000000..43a6ab7 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jpe differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jpg b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jpg new file mode 100755 index 0000000..43a6ab7 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jpg differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jxr b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jxr new file mode 100755 index 0000000..0138cf3 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jxr differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.pbm b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.pbm new file mode 100755 index 0000000..0cc3736 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.pbm @@ -0,0 +1,3 @@ +P4 +1 1 +€ \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.pcx b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.pcx new file mode 100755 index 0000000..368a3ef Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.pcx differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.pgm b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.pgm new file mode 100755 index 0000000..85b8651 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.pgm differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.png b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.png new file mode 100755 index 0000000..3cf27f4 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.png differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.ppm b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.ppm new file mode 100755 index 0000000..45c3886 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.ppm differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.rle b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.rle new file mode 100755 index 0000000..de874f7 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.rle differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.tga b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.tga new file mode 100755 index 0000000..0c8df87 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.tga differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.tif b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.tif new file mode 100755 index 0000000..7bad36c Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.tif differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.wdp b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.wdp new file mode 100755 index 0000000..0138cf3 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.wdp differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.webp b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.webp new file mode 100755 index 0000000..d5dc4d6 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.webp differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.wmp b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.wmp new file mode 100755 index 0000000..0138cf3 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.wmp differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/sheet/empty.ods b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/sheet/empty.ods new file mode 100755 index 0000000..9058d1d Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/sheet/empty.ods differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/sheet/empty.xlsx b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/sheet/empty.xlsx new file mode 100755 index 0000000..4331bb5 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/sheet/empty.xlsx differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/slide/empty.odp b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/slide/empty.odp new file mode 100755 index 0000000..e903cf3 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/slide/empty.odp differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/slide/empty.pptx b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/slide/empty.pptx new file mode 100755 index 0000000..fac10c7 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/slide/empty.pptx differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100755 index 0000000..81ed3de Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.Extensions.Logging.Abstractions.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100755 index 0000000..f9d1dc6 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.AdapterUtilities.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.AdapterUtilities.dll new file mode 100755 index 0000000..00a6ac7 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.AdapterUtilities.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll new file mode 100755 index 0000000..e45af4e Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CoreUtilities.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CoreUtilities.dll new file mode 100755 index 0000000..c868e1f Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CoreUtilities.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll new file mode 100755 index 0000000..8201a76 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll new file mode 100755 index 0000000..36c3817 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.Utilities.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.Utilities.dll new file mode 100755 index 0000000..75e8966 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.Utilities.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll new file mode 100755 index 0000000..224bb02 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll new file mode 100755 index 0000000..357b697 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll new file mode 100755 index 0000000..32072ab Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll new file mode 100755 index 0000000..fb5f860 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll new file mode 100755 index 0000000..4e17acc Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll new file mode 100755 index 0000000..f2fe7a2 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml new file mode 100755 index 0000000..0662a62 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml @@ -0,0 +1,173 @@ + + + + Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions + + + + + Used to specify deployment item (file or directory) for per-test deployment. + Can be specified on test class or test method. + Can have multiple instances of the attribute to specify more than one item. + The item path can be absolute or relative, if relative, it is relative to RunConfig.RelativePathRoot. + + + If specified on a test class, the class needs to contain at least one test method. This means that the + attribute cannot be combined with a test class that would contain only a AssemblyInitialize or ClassInitialize + method. + + + [DeploymentItem("file1.xml")] + [DeploymentItem("file2.xml", "DataFiles")] + [DeploymentItem("bin\Debug")]. + + + + + Initializes a new instance of the class. + + The file or directory to deploy. The path is relative to the build output directory. The item will be copied to the same directory as the deployed test assemblies. + + + + Initializes a new instance of the class. + + The relative or absolute path to the file or directory to deploy. The path is relative to the build output directory. The item will be copied to the same directory as the deployed test assemblies. + The path of the directory to which the items are to be copied. It can be either absolute or relative to the deployment directory. All files and directories identified by will be copied to this directory. + + + + Gets the path of the source file or folder to be copied. + + + + + Gets the path of the directory to which the item is copied. + + + + + Used to store information that is provided to unit tests. + + + + + Gets test properties for a test. + + + + + Gets or sets the cancellation token source. This token source is canceled when test times out. Also when explicitly canceled the test will be aborted. + + + + + Gets base directory for the test run, under which deployed files and result files are stored. + + + + + Gets directory for files deployed for the test run. Typically a subdirectory of . + + + + + Gets base directory for results from the test run. Typically a subdirectory of . + + + + + Gets directory for test run result files. Typically a subdirectory of . + + + + + Gets directory for test result files. + + + + + Gets base directory for the test run, under which deployed files and result files are stored. + Same as . Use that property instead. + + + + + Gets directory for files deployed for the test run. Typically a subdirectory of . + Same as . Use that property instead. + + + + + Gets directory for test run result files. Typically a subdirectory of . + Same as . Use that property for test run result files, or + for test-specific result files instead. + + + + + Gets the Fully-qualified name of the class containing the test method currently being executed. + + + This property can be useful in attributes derived from ExpectedExceptionBaseAttribute. + Those attributes have access to the test context, and provide messages that are included + in the test results. Users can benefit from messages that include the fully-qualified + class name in addition to the name of the test method currently being executed. + + + + + Gets the fully specified type name metadata format. + + + + + Gets the fully specified method name metadata format. + + + + + Gets the name of the test method currently being executed. + + + + + Gets the current test outcome. + + + + + Adds a file name to the list in TestResult.ResultFileNames. + + + The file Name. + + + + + Used to write trace messages while the test is running. + + formatted message string. + + + + Used to write trace messages while the test is running. + + format string. + the arguments. + + + + Used to write trace messages while the test is running. + + formatted message string. + + + + Used to write trace messages while the test is running. + + format string. + the arguments. + + + diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll new file mode 100755 index 0000000..8c97d77 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Newtonsoft.Json.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Newtonsoft.Json.dll new file mode 100755 index 0000000..1ffeabe Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Newtonsoft.Json.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/NuGet.Frameworks.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/NuGet.Frameworks.dll new file mode 100755 index 0000000..0fabf0c Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/NuGet.Frameworks.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Shouldly.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Shouldly.dll new file mode 100755 index 0000000..d4d7379 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Shouldly.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/System.CodeDom.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/System.CodeDom.dll new file mode 100755 index 0000000..54c82b6 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/System.CodeDom.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/System.Management.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/System.Management.dll new file mode 100755 index 0000000..c1d001a Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/System.Management.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..cb28e97 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..b9f081d Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..74ebedb Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..98cbcb7 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..7333544 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll new file mode 100755 index 0000000..ec70942 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..7bfd5b1 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..6a248d6 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..a1861dd Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..505dddd Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..4645b6b Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll new file mode 100755 index 0000000..f90cfdb Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..1668698 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..6bd079a Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..6430c84 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..e683698 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..1442ee8 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll new file mode 100755 index 0000000..527b529 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..c7759cf Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..c207945 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..0bc035b Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..8d900d5 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..6f0b7cd Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll new file mode 100755 index 0000000..987ef65 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..266057d Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..0d3887a Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..80d55d5 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..f7a9f3d Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..6abdb0f Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll new file mode 100755 index 0000000..27eb0b0 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..3a39a78 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..ea6315e Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..470173a Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..0d53bff Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..b09e823 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll new file mode 100755 index 0000000..4dbf6ab Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..0114575 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..a0d681f Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..6ad80ed Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..44520a2 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..9aceed9 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll new file mode 100755 index 0000000..d704c46 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..7dc061e Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..ddce776 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..5d9cc06 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..9129485 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..93dfb6d Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll new file mode 100755 index 0000000..68d9ed8 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..6f009dc Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..a52d361 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..08d86f9 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..9e7e899 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..4841034 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll new file mode 100755 index 0000000..54904db Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..d4f74e0 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..f6b8ea3 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..c926fc1 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..9aa81a0 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..193cfe8 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll new file mode 100755 index 0000000..a26f5cb Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/runtimes/win/lib/net6.0/System.Management.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/runtimes/win/lib/net6.0/System.Management.dll new file mode 100755 index 0000000..6e5d88e Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/runtimes/win/lib/net6.0/System.Management.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/testhost.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/testhost.dll new file mode 100755 index 0000000..b15bd81 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/testhost.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..0103c73 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..1af1a2b Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..8208c4a Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..1e34b72 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..764f76d Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll new file mode 100755 index 0000000..7d6fad5 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..cfbbe73 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..d8b7fb2 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..1911bc8 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..7de1876 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..c7908a2 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll new file mode 100755 index 0000000..83670d4 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100755 index 0000000..edb16db Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100755 index 0000000..432e72c Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100755 index 0000000..82406ca Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100755 index 0000000..8545af8 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100755 index 0000000..b2092e0 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll new file mode 100755 index 0000000..0024bae Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/BeyondNetCode.Shell.Factory.Tests.csproj.nuget.dgspec.json b/BeyondNetCode.Shell.Factory.Tests/obj/BeyondNetCode.Shell.Factory.Tests.csproj.nuget.dgspec.json new file mode 100644 index 0000000..320adb4 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/obj/BeyondNetCode.Shell.Factory.Tests.csproj.nuget.dgspec.json @@ -0,0 +1,706 @@ +{ + "format": 1, + "restore": { + "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/BeyondNetCode.Shell.Factory.Tests.csproj": {} + }, + "projects": { + "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/BeyondNetCode.Shell.Factory.Tests.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/BeyondNetCode.Shell.Factory.Tests.csproj", + "projectName": "BeyondNetCode.Shell.Factory.Tests", + "projectPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/BeyondNetCode.Shell.Factory.Tests.csproj", + "packagesPath": "/Users/beyondnet/.nuget/packages/", + "outputPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/beyondnet/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj": { + "projectPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "MSTest.TestAdapter": { + "target": "Package", + "version": "[3.0.4, )" + }, + "MSTest.TestFramework": { + "target": "Package", + "version": "[3.0.4, )" + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.6.0, )" + }, + "Shouldly": { + "target": "Package", + "version": "[4.2.1, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[6.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.201/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj", + "projectName": "BeyondNetCode.Shell.Factory", + "projectPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj", + "packagesPath": "/Users/beyondnet/.nuget/packages/", + "outputPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/beyondnet/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": { + "target": "Package", + "version": "[8.0.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.201/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/BeyondNetCode.Shell.Factory.Tests.csproj.nuget.g.props b/BeyondNetCode.Shell.Factory.Tests/obj/BeyondNetCode.Shell.Factory.Tests.csproj.nuget.g.props new file mode 100644 index 0000000..4cd56b3 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/obj/BeyondNetCode.Shell.Factory.Tests.csproj.nuget.g.props @@ -0,0 +1,21 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/beyondnet/.nuget/packages/ + /Users/beyondnet/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + + + + + \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/BeyondNetCode.Shell.Factory.Tests.csproj.nuget.g.targets b/BeyondNetCode.Shell.Factory.Tests/obj/BeyondNetCode.Shell.Factory.Tests.csproj.nuget.g.targets new file mode 100644 index 0000000..200c699 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/obj/BeyondNetCode.Shell.Factory.Tests.csproj.nuget.g.targets @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNe.60056143.Up2Date b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNe.60056143.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.AssemblyInfo.cs b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.AssemblyInfo.cs new file mode 100644 index 0000000..dc47446 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.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("BeyondNetCode.Shell.Factory.Tests")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5ce44ee9005c6892800859f4a821784335280f34")] +[assembly: System.Reflection.AssemblyProductAttribute("BeyondNetCode.Shell.Factory.Tests")] +[assembly: System.Reflection.AssemblyTitleAttribute("BeyondNetCode.Shell.Factory.Tests")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generado por la clase WriteCodeFragment de MSBuild. + diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.AssemblyInfoInputs.cache b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.AssemblyInfoInputs.cache new file mode 100644 index 0000000..5b342c1 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +db047e0c47029efd777c38c2b96d8ec624c226b751d81969e599d47abe2094a1 diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.GeneratedMSBuildEditorConfig.editorconfig b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e63b5c9 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.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 = BeyondNetCode.Shell.Factory.Tests +build_property.ProjectDir = /private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.GlobalUsings.g.cs b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.assets.cache b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.assets.cache new file mode 100644 index 0000000..ef4ce2f Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.assets.cache differ diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.csproj.AssemblyReference.cache b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.csproj.AssemblyReference.cache new file mode 100644 index 0000000..055a775 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.csproj.AssemblyReference.cache differ diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.csproj.CoreCompileInputs.cache b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..d2c4bba --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +32ae06206796aaeca69381e9ea72b1172a2bba66ca359f9628e775cfc2d0f5e9 diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.csproj.FileListAbsolute.txt b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..83070dc --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.csproj.FileListAbsolute.txt @@ -0,0 +1,164 @@ +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/CoverletSourceRootsMapping_BeyondNetCode.Shell.Factory.Tests +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.7z +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.bz2 +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.gz +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.tar +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.xz +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/archive/empty.zip +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.docx +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.odt +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.pdf +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/document/empty.rtf +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.avif +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.bmp +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.dds +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.dib +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.emf +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.exif +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.gif +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.heic +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.heif +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.ico +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.j2c +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jfif +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jp2 +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jpc +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jpe +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jpg +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.jxr +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.pbm +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.pcx +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.pgm +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.png +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.ppm +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.rle +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.tga +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.tif +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.wdp +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.webp +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/image/empty.wmp +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/sheet/empty.ods +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/sheet/empty.xlsx +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/slide/empty.odp +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles/slide/empty.pptx +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.AdapterUtilities.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.deps.json +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.runtimeconfig.json +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.pdb +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/DiffEngine.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/EmptyFiles.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.Extensions.Logging.Abstractions.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CoreUtilities.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.TestPlatform.Utilities.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/testhost.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Newtonsoft.Json.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/NuGet.Frameworks.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Shouldly.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/System.CodeDom.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/System.Management.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/runtimes/win/lib/net6.0/System.Management.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/BeyondNetCode.Shell.Factory.pdb +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/bin/Release/net10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.csproj.AssemblyReference.cache +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.GeneratedMSBuildEditorConfig.editorconfig +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.AssemblyInfoInputs.cache +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.AssemblyInfo.cs +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.csproj.CoreCompileInputs.cache +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.sourcelink.json +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNe.60056143.Up2Date +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/refint/BeyondNetCode.Shell.Factory.Tests.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.pdb +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.genruntimeconfig.cache +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/ref/BeyondNetCode.Shell.Factory.Tests.dll diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.dll b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.dll new file mode 100644 index 0000000..47b58cd Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.genruntimeconfig.cache b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.genruntimeconfig.cache new file mode 100644 index 0000000..41208df --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.genruntimeconfig.cache @@ -0,0 +1 @@ +0d0866f9e2d996b592e2a5eb66133c41f2a93e576890b012f18731aa518b76b3 diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.pdb b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.pdb new file mode 100644 index 0000000..4958276 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.pdb differ diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.sourcelink.json b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.sourcelink.json new file mode 100644 index 0000000..6575138 --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/BeyondNetCode.Shell.Factory.Tests.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/*":"https://raw.githubusercontent.com/beyondnetcode/Shell.Factory/5ce44ee9005c6892800859f4a821784335280f34/*"}} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/ref/BeyondNetCode.Shell.Factory.Tests.dll b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/ref/BeyondNetCode.Shell.Factory.Tests.dll new file mode 100644 index 0000000..ce799b7 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/ref/BeyondNetCode.Shell.Factory.Tests.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/refint/BeyondNetCode.Shell.Factory.Tests.dll b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/refint/BeyondNetCode.Shell.Factory.Tests.dll new file mode 100644 index 0000000..ce799b7 Binary files /dev/null and b/BeyondNetCode.Shell.Factory.Tests/obj/Release/net10.0/refint/BeyondNetCode.Shell.Factory.Tests.dll differ diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/project.assets.json b/BeyondNetCode.Shell.Factory.Tests/obj/project.assets.json new file mode 100644 index 0000000..6d1f31b --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/obj/project.assets.json @@ -0,0 +1,1822 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "coverlet.collector/6.0.0": { + "type": "package", + "build": { + "build/netstandard1.0/coverlet.collector.targets": {} + } + }, + "DiffEngine/11.3.0": { + "type": "package", + "dependencies": { + "EmptyFiles": "4.4.0", + "System.Management": "6.0.1" + }, + "compile": { + "lib/net7.0/DiffEngine.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/DiffEngine.dll": { + "related": ".xml" + } + } + }, + "EmptyFiles/4.4.0": { + "type": "package", + "compile": { + "lib/net7.0/EmptyFiles.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/EmptyFiles.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/EmptyFiles.targets": {} + } + }, + "Microsoft.CodeCoverage/17.6.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard2.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard2.0/Microsoft.CodeCoverage.targets": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.NET.Test.Sdk/17.6.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "17.6.0", + "Microsoft.TestPlatform.TestHost": "17.6.0" + }, + "compile": { + "lib/netcoreapp3.1/_._": {} + }, + "runtime": { + "lib/netcoreapp3.1/_._": {} + }, + "build": { + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props": {}, + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} + } + }, + "Microsoft.TestPlatform.ObjectModel/17.6.0": { + "type": "package", + "dependencies": { + "NuGet.Frameworks": "5.11.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/17.6.0": { + "type": "package", + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.6.0", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp3.1/testhost.dll": { + "related": ".deps.json" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp3.1/testhost.dll": { + "related": ".deps.json" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props": {} + } + }, + "MSTest.TestAdapter/3.0.4": { + "type": "package", + "build": { + "build/net6.0/MSTest.TestAdapter.props": {}, + "build/net6.0/MSTest.TestAdapter.targets": {} + } + }, + "MSTest.TestFramework/3.0.4": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net6.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "cs" + }, + "lib/net6.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "de" + }, + "lib/net6.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "es" + }, + "lib/net6.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "fr" + }, + "lib/net6.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "it" + }, + "lib/net6.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "ja" + }, + "lib/net6.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "ko" + }, + "lib/net6.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "pl" + }, + "lib/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "pt-BR" + }, + "lib/net6.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "ru" + }, + "lib/net6.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "tr" + }, + "lib/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "build/net6.0/MSTest.TestFramework.targets": {} + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "NuGet.Frameworks/5.11.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NuGet.Frameworks.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": { + "related": ".xml" + } + } + }, + "Shouldly/4.2.1": { + "type": "package", + "dependencies": { + "DiffEngine": "11.3.0", + "EmptyFiles": "4.4.0" + }, + "compile": { + "lib/net5.0/Shouldly.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Shouldly.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/Shouldly.targets": {} + } + }, + "System.CodeDom/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Management/6.0.1": { + "type": "package", + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Management.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Management.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "BeyondNetCode.Shell.Factory/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" + }, + "compile": { + "bin/placeholder/BeyondNetCode.Shell.Factory.dll": {} + }, + "runtime": { + "bin/placeholder/BeyondNetCode.Shell.Factory.dll": {} + } + } + } + }, + "libraries": { + "coverlet.collector/6.0.0": { + "sha512": "tW3lsNS+dAEII6YGUX/VMoJjBS1QvsxqJeqLaJXub08y1FSjasFPtQ4UBUsudE9PNrzLjooClMsPtY2cZLdXpQ==", + "type": "package", + "path": "coverlet.collector/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard1.0/Microsoft.Bcl.AsyncInterfaces.dll", + "build/netstandard1.0/Microsoft.CSharp.dll", + "build/netstandard1.0/Microsoft.DotNet.PlatformAbstractions.dll", + "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.dll", + "build/netstandard1.0/Microsoft.Extensions.DependencyModel.dll", + "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll", + "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "build/netstandard1.0/Mono.Cecil.Mdb.dll", + "build/netstandard1.0/Mono.Cecil.Pdb.dll", + "build/netstandard1.0/Mono.Cecil.Rocks.dll", + "build/netstandard1.0/Mono.Cecil.dll", + "build/netstandard1.0/Newtonsoft.Json.dll", + "build/netstandard1.0/NuGet.Frameworks.dll", + "build/netstandard1.0/System.AppContext.dll", + "build/netstandard1.0/System.Collections.Immutable.dll", + "build/netstandard1.0/System.Dynamic.Runtime.dll", + "build/netstandard1.0/System.IO.FileSystem.Primitives.dll", + "build/netstandard1.0/System.Linq.Expressions.dll", + "build/netstandard1.0/System.Linq.dll", + "build/netstandard1.0/System.ObjectModel.dll", + "build/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "build/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "build/netstandard1.0/System.Reflection.Emit.dll", + "build/netstandard1.0/System.Reflection.Metadata.dll", + "build/netstandard1.0/System.Reflection.TypeExtensions.dll", + "build/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "build/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "build/netstandard1.0/System.Text.RegularExpressions.dll", + "build/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "build/netstandard1.0/System.Threading.dll", + "build/netstandard1.0/System.Xml.ReaderWriter.dll", + "build/netstandard1.0/System.Xml.XDocument.dll", + "build/netstandard1.0/coverlet.collector.deps.json", + "build/netstandard1.0/coverlet.collector.dll", + "build/netstandard1.0/coverlet.collector.pdb", + "build/netstandard1.0/coverlet.collector.targets", + "build/netstandard1.0/coverlet.core.dll", + "build/netstandard1.0/coverlet.core.pdb", + "coverlet-icon.png", + "coverlet.collector.6.0.0.nupkg.sha512", + "coverlet.collector.nuspec" + ] + }, + "DiffEngine/11.3.0": { + "sha512": "k0ZgZqd09jLZQjR8FyQbSQE86Q7QZnjEzq1LPHtj1R2AoWO8sjV5x+jlSisL7NZAbUOI4y+7Bog8gkr9WIRBGw==", + "type": "package", + "path": "diffengine/11.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "diffengine.11.3.0.nupkg.sha512", + "diffengine.nuspec", + "icon.png", + "lib/net461/DiffEngine.dll", + "lib/net461/DiffEngine.xml", + "lib/net48/DiffEngine.dll", + "lib/net48/DiffEngine.xml", + "lib/net5.0/DiffEngine.dll", + "lib/net5.0/DiffEngine.xml", + "lib/net6.0/DiffEngine.dll", + "lib/net6.0/DiffEngine.xml", + "lib/net7.0/DiffEngine.dll", + "lib/net7.0/DiffEngine.xml", + "lib/netcoreapp2.0/DiffEngine.dll", + "lib/netcoreapp2.0/DiffEngine.xml", + "lib/netcoreapp2.1/DiffEngine.dll", + "lib/netcoreapp2.1/DiffEngine.xml", + "lib/netcoreapp3.0/DiffEngine.dll", + "lib/netcoreapp3.0/DiffEngine.xml", + "lib/netcoreapp3.1/DiffEngine.dll", + "lib/netcoreapp3.1/DiffEngine.xml", + "lib/netstandard2.0/DiffEngine.dll", + "lib/netstandard2.0/DiffEngine.xml", + "lib/netstandard2.1/DiffEngine.dll", + "lib/netstandard2.1/DiffEngine.xml" + ] + }, + "EmptyFiles/4.4.0": { + "sha512": "gwJEfIGS7FhykvtZoscwXj/XwW+mJY6UbAZk+qtLKFUGWC95kfKXnj8VkxsZQnWBxJemM/q664rGLN5nf+OHZw==", + "type": "package", + "path": "emptyfiles/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EmptyFiles/archive/empty.7z", + "EmptyFiles/archive/empty.bz2", + "EmptyFiles/archive/empty.gz", + "EmptyFiles/archive/empty.tar", + "EmptyFiles/archive/empty.xz", + "EmptyFiles/archive/empty.zip", + "EmptyFiles/document/empty.docx", + "EmptyFiles/document/empty.odt", + "EmptyFiles/document/empty.pdf", + "EmptyFiles/document/empty.rtf", + "EmptyFiles/image/empty.avif", + "EmptyFiles/image/empty.bmp", + "EmptyFiles/image/empty.dds", + "EmptyFiles/image/empty.dib", + "EmptyFiles/image/empty.emf", + "EmptyFiles/image/empty.exif", + "EmptyFiles/image/empty.gif", + "EmptyFiles/image/empty.heic", + "EmptyFiles/image/empty.heif", + "EmptyFiles/image/empty.ico", + "EmptyFiles/image/empty.j2c", + "EmptyFiles/image/empty.jfif", + "EmptyFiles/image/empty.jp2", + "EmptyFiles/image/empty.jpc", + "EmptyFiles/image/empty.jpe", + "EmptyFiles/image/empty.jpg", + "EmptyFiles/image/empty.jxr", + "EmptyFiles/image/empty.pbm", + "EmptyFiles/image/empty.pcx", + "EmptyFiles/image/empty.pgm", + "EmptyFiles/image/empty.png", + "EmptyFiles/image/empty.ppm", + "EmptyFiles/image/empty.rle", + "EmptyFiles/image/empty.tga", + "EmptyFiles/image/empty.tif", + "EmptyFiles/image/empty.wdp", + "EmptyFiles/image/empty.webp", + "EmptyFiles/image/empty.wmp", + "EmptyFiles/sheet/empty.ods", + "EmptyFiles/sheet/empty.xlsx", + "EmptyFiles/slide/empty.odp", + "EmptyFiles/slide/empty.pptx", + "build/EmptyFiles.targets", + "buildTransitive/EmptyFiles.targets", + "emptyfiles.4.4.0.nupkg.sha512", + "emptyfiles.nuspec", + "icon.png", + "lib/net461/EmptyFiles.dll", + "lib/net461/EmptyFiles.xml", + "lib/net5.0/EmptyFiles.dll", + "lib/net5.0/EmptyFiles.xml", + "lib/net6.0/EmptyFiles.dll", + "lib/net6.0/EmptyFiles.xml", + "lib/net7.0/EmptyFiles.dll", + "lib/net7.0/EmptyFiles.xml", + "lib/netstandard2.0/EmptyFiles.dll", + "lib/netstandard2.0/EmptyFiles.xml", + "lib/netstandard2.1/EmptyFiles.dll", + "lib/netstandard2.1/EmptyFiles.xml" + ] + }, + "Microsoft.CodeCoverage/17.6.0": { + "sha512": "5v2GwzpR7JEuQUzupjx3zLwn2FutADW/weLzLt726DR3WXxsM+ICPoJG6pxuKFsumtZp890UrVuudTUhsE8Qyg==", + "type": "package", + "path": "microsoft.codecoverage/17.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "ThirdPartyNotices.txt", + "build/netstandard2.0/CodeCoverage/CodeCoverage.config", + "build/netstandard2.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config", + "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/arm64/VanguardInstrumentationProfiler_arm64.config", + "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll", + "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "build/netstandard2.0/CodeCoverage/covrun32.dll", + "build/netstandard2.0/CodeCoverage/msdia140.dll", + "build/netstandard2.0/InstrumentationEngine/alpine/x64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/InstrumentationEngine/alpine/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/InstrumentationEngine/alpine/x64/libInstrumentationEngine.so", + "build/netstandard2.0/InstrumentationEngine/arm64/MicrosoftInstrumentationEngine_arm64.dll", + "build/netstandard2.0/InstrumentationEngine/macos/x64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/InstrumentationEngine/macos/x64/libCoverageInstrumentationMethod.dylib", + "build/netstandard2.0/InstrumentationEngine/macos/x64/libInstrumentationEngine.dylib", + "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libInstrumentationEngine.so", + "build/netstandard2.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll", + "build/netstandard2.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.props", + "build/netstandard2.0/Microsoft.CodeCoverage.targets", + "build/netstandard2.0/Microsoft.DiaSymReader.dll", + "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard2.0/Mono.Cecil.Pdb.dll", + "build/netstandard2.0/Mono.Cecil.Rocks.dll", + "build/netstandard2.0/Mono.Cecil.dll", + "build/netstandard2.0/ThirdPartyNotices.txt", + "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.17.6.0.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "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.2.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "sha512": "nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "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.2.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.NET.Test.Sdk/17.6.0": { + "sha512": "tHyg4C6c89QvLv6Utz3xKlba4EeoyJyIz59Q1NrjRENV7gfGnSE6I+sYPIbVOzQttoo2zpHDgOK/p6Hw2OlD7A==", + "type": "package", + "path": "microsoft.net.test.sdk/17.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "build/net462/Microsoft.NET.Test.Sdk.props", + "build/net462/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets", + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", + "lib/net462/_._", + "lib/netcoreapp3.1/_._", + "microsoft.net.test.sdk.17.6.0.nupkg.sha512", + "microsoft.net.test.sdk.nuspec" + ] + }, + "Microsoft.TestPlatform.ObjectModel/17.6.0": { + "sha512": "AA/rrf5zwC5/OBLEOajkhjbVTM3SvxRXy8kcQ8e4mJKojbyZvqqhpfNg362N9vXU94DLg9NUTFOAnoYVT0pTJw==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/17.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "microsoft.testplatform.objectmodel.17.6.0.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/17.6.0": { + "sha512": "7YdgUcIeCPVKLC7n7LNKDiEHWc7z3brkkYPdUbDnFsvf6WvY9UfzS0VSUJ8P2NgN0CDSD223GCJFSjSBLZRqOQ==", + "type": "package", + "path": "microsoft.testplatform.testhost/17.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "ThirdPartyNotices.txt", + "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props", + "build/netcoreapp3.1/x64/testhost.dll", + "build/netcoreapp3.1/x64/testhost.exe", + "build/netcoreapp3.1/x86/testhost.x86.dll", + "build/netcoreapp3.1/x86/testhost.x86.exe", + "lib/net462/_._", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/testhost.deps.json", + "lib/netcoreapp3.1/testhost.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/x64/msdia140.dll", + "lib/netcoreapp3.1/x86/msdia140.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "microsoft.testplatform.testhost.17.6.0.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "MSTest.TestAdapter/3.0.4": { + "sha512": "18THEGVcU4fbAOZWvRtEyvQCnZ/o+3LFAiFbAkWYh63GC5TmHoJ10IUiF9L02SMmbLbWpH1/PxvO7mcInIY4/Q==", + "type": "package", + "path": "mstest.testadapter/3.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/_localization/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/_localization/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_localization/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/_localization/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/_localization/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_localization/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_localization/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/_localization/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_localization/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/_localization/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/_localization/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_localization/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_localization/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/_localization/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_localization/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/_localization/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_localization/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/_localization/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/_localization/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_localization/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_localization/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/_localization/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_localization/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/_localization/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_localization/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/_localization/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_localization/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/_localization/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_localization/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/_localization/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_localization/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/_localization/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_localization/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/_localization/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_localization/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/_localization/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/_localization/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/_localization/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll", + "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll", + "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "build/net462/MSTest.TestAdapter.props", + "build/net462/MSTest.TestAdapter.targets", + "build/net462/Microsoft.TestPlatform.AdapterUtilities.dll", + "build/net462/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll", + "build/net462/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", + "build/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "build/net462/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net462/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net462/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net462/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net462/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net462/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net462/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net462/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net462/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net462/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net462/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net462/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net462/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net6.0/MSTest.TestAdapter.props", + "build/net6.0/MSTest.TestAdapter.targets", + "build/net6.0/Microsoft.TestPlatform.AdapterUtilities.dll", + "build/net6.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll", + "build/net6.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", + "build/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "build/net6.0/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net6.0/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net6.0/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net6.0/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net6.0/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net6.0/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net6.0/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net6.0/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net6.0/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net6.0/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net6.0/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net6.0/winui/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", + "build/net6.0/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/net6.0/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netcoreapp3.1/MSTest.TestAdapter.props", + "build/netcoreapp3.1/Microsoft.TestPlatform.AdapterUtilities.dll", + "build/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll", + "build/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", + "build/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "build/netcoreapp3.1/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netcoreapp3.1/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netcoreapp3.1/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netcoreapp3.1/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netcoreapp3.1/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netcoreapp3.1/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netcoreapp3.1/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netcoreapp3.1/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netcoreapp3.1/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netcoreapp3.1/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netstandard2.0/MSTest.TestAdapter.props", + "build/netstandard2.0/Microsoft.TestPlatform.AdapterUtilities.dll", + "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll", + "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", + "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "build/netstandard2.0/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netstandard2.0/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netstandard2.0/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netstandard2.0/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netstandard2.0/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netstandard2.0/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netstandard2.0/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netstandard2.0/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netstandard2.0/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netstandard2.0/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netstandard2.0/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/uap10.0/MSTest.TestAdapter.props", + "build/uap10.0/MSTest.TestAdapter.targets", + "build/uap10.0/Microsoft.TestPlatform.AdapterUtilities.dll", + "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll", + "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll", + "build/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll", + "mstest.testadapter.3.0.4.nupkg.sha512", + "mstest.testadapter.nuspec" + ] + }, + "MSTest.TestFramework/3.0.4": { + "sha512": "hYq5xOOr2k09rtXpmcHkJ4Tdt/yS4cy8jiFPNMdDJP+lB6OY8yekOmQC4Fsvug4rhLpXGDd6zbPWYeoewqfePA==", + "type": "package", + "path": "mstest.testframework/3.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/net6.0/MSTest.TestFramework.targets", + "build/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", + "build/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "build/net6.0/winui/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", + "build/net6.0/winui/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", + "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net462/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net462/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net462/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/net6.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net6.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net6.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net6.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net6.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net6.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net6.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net6.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net6.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net6.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.xml", + "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll", + "mstest.testframework.3.0.4.nupkg.sha512", + "mstest.testframework.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.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/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.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NuGet.Frameworks/5.11.0": { + "sha512": "eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==", + "type": "package", + "path": "nuget.frameworks/5.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net40/NuGet.Frameworks.dll", + "lib/net40/NuGet.Frameworks.xml", + "lib/net472/NuGet.Frameworks.dll", + "lib/net472/NuGet.Frameworks.xml", + "lib/netstandard2.0/NuGet.Frameworks.dll", + "lib/netstandard2.0/NuGet.Frameworks.xml", + "nuget.frameworks.5.11.0.nupkg.sha512", + "nuget.frameworks.nuspec" + ] + }, + "Shouldly/4.2.1": { + "sha512": "dKAKiSuhLKqD2TXwLKtqNg1nwzJcIKOOMncZjk9LYe4W+h+SCftpWdxwR79YZUIHMH+3Vu9s0s0UHNrgICLwRQ==", + "type": "package", + "path": "shouldly/4.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "assets/logo_128x128.png", + "buildTransitive/Shouldly.targets", + "lib/net5.0/Shouldly.dll", + "lib/net5.0/Shouldly.xml", + "lib/netstandard2.0/Shouldly.dll", + "lib/netstandard2.0/Shouldly.xml", + "shouldly.4.2.1.nupkg.sha512", + "shouldly.nuspec" + ] + }, + "System.CodeDom/6.0.0": { + "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "type": "package", + "path": "system.codedom/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.6.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Management/6.0.1": { + "sha512": "10J1D0h/lioojphfJ4Fuh5ZUThT/xOVHdV9roGBittKKNP2PMjrvibEdbVTGZcPra1399Ja3tqIJLyQrc5Wmhg==", + "type": "package", + "path": "system.management/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Management.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.Management.dll", + "lib/net6.0/System.Management.xml", + "lib/netcoreapp3.1/System.Management.dll", + "lib/netcoreapp3.1/System.Management.xml", + "lib/netstandard2.0/System.Management.dll", + "lib/netstandard2.0/System.Management.xml", + "runtimes/win/lib/net6.0/System.Management.dll", + "runtimes/win/lib/net6.0/System.Management.xml", + "runtimes/win/lib/netcoreapp3.1/System.Management.dll", + "runtimes/win/lib/netcoreapp3.1/System.Management.xml", + "system.management.6.0.1.nupkg.sha512", + "system.management.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "BeyondNetCode.Shell.Factory/1.0.0": { + "type": "project", + "path": "../BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj", + "msbuildProject": "../BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "BeyondNetCode.Shell.Factory >= 1.0.0", + "MSTest.TestAdapter >= 3.0.4", + "MSTest.TestFramework >= 3.0.4", + "Microsoft.NET.Test.Sdk >= 17.6.0", + "Shouldly >= 4.2.1", + "coverlet.collector >= 6.0.0" + ] + }, + "packageFolders": { + "/Users/beyondnet/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/BeyondNetCode.Shell.Factory.Tests.csproj", + "projectName": "BeyondNetCode.Shell.Factory.Tests", + "projectPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/BeyondNetCode.Shell.Factory.Tests.csproj", + "packagesPath": "/Users/beyondnet/.nuget/packages/", + "outputPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/beyondnet/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj": { + "projectPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "MSTest.TestAdapter": { + "target": "Package", + "version": "[3.0.4, )" + }, + "MSTest.TestFramework": { + "target": "Package", + "version": "[3.0.4, )" + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.6.0, )" + }, + "Shouldly": { + "target": "Package", + "version": "[4.2.1, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[6.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.201/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory.Tests/obj/project.nuget.cache b/BeyondNetCode.Shell.Factory.Tests/obj/project.nuget.cache new file mode 100644 index 0000000..6dd65da --- /dev/null +++ b/BeyondNetCode.Shell.Factory.Tests/obj/project.nuget.cache @@ -0,0 +1,26 @@ +{ + "version": 2, + "dgSpecHash": "ldmfMbNIws8=", + "success": true, + "projectFilePath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory.Tests/BeyondNetCode.Shell.Factory.Tests.csproj", + "expectedPackageFiles": [ + "/Users/beyondnet/.nuget/packages/coverlet.collector/6.0.0/coverlet.collector.6.0.0.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/diffengine/11.3.0/diffengine.11.3.0.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/emptyfiles/4.4.0/emptyfiles.4.4.0.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/microsoft.codecoverage/17.6.0/microsoft.codecoverage.17.6.0.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/8.0.2/microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/microsoft.extensions.logging.abstractions/8.0.2/microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/microsoft.net.test.sdk/17.6.0/microsoft.net.test.sdk.17.6.0.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/microsoft.testplatform.objectmodel/17.6.0/microsoft.testplatform.objectmodel.17.6.0.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/microsoft.testplatform.testhost/17.6.0/microsoft.testplatform.testhost.17.6.0.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/mstest.testadapter/3.0.4/mstest.testadapter.3.0.4.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/mstest.testframework/3.0.4/mstest.testframework.3.0.4.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/nuget.frameworks/5.11.0/nuget.frameworks.5.11.0.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/shouldly/4.2.1/shouldly.4.2.1.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/system.codedom/6.0.0/system.codedom.6.0.0.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/system.management/6.0.1/system.management.6.0.1.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/beyondnetcode.shell.factory/1.0.0/beyondnetcode.shell.factory.1.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj b/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj index f733f43..d263a32 100644 --- a/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj +++ b/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj @@ -17,11 +17,11 @@ - + True - LICENSE + / - + True README.md diff --git a/BeyondNetCode.Shell.Factory/bin/Release/net10.0/BeyondNetCode.Shell.Factory.deps.json b/BeyondNetCode.Shell.Factory/bin/Release/net10.0/BeyondNetCode.Shell.Factory.deps.json new file mode 100644 index 0000000..5473672 --- /dev/null +++ b/BeyondNetCode.Shell.Factory/bin/Release/net10.0/BeyondNetCode.Shell.Factory.deps.json @@ -0,0 +1,59 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "BeyondNetCode.Shell.Factory/1.0.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" + }, + "runtime": { + "BeyondNetCode.Shell.Factory.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + } + } + }, + "libraries": { + "BeyondNetCode.Shell.Factory/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory/bin/Release/net10.0/BeyondNetCode.Shell.Factory.dll b/BeyondNetCode.Shell.Factory/bin/Release/net10.0/BeyondNetCode.Shell.Factory.dll new file mode 100644 index 0000000..c5fc046 Binary files /dev/null and b/BeyondNetCode.Shell.Factory/bin/Release/net10.0/BeyondNetCode.Shell.Factory.dll differ diff --git a/BeyondNetCode.Shell.Factory/bin/Release/net10.0/BeyondNetCode.Shell.Factory.pdb b/BeyondNetCode.Shell.Factory/bin/Release/net10.0/BeyondNetCode.Shell.Factory.pdb new file mode 100644 index 0000000..aad9ece Binary files /dev/null and b/BeyondNetCode.Shell.Factory/bin/Release/net10.0/BeyondNetCode.Shell.Factory.pdb differ diff --git a/BeyondNetCode.Shell.Factory/obj/BeyondNetCode.Shell.Factory.csproj.nuget.dgspec.json b/BeyondNetCode.Shell.Factory/obj/BeyondNetCode.Shell.Factory.csproj.nuget.dgspec.json new file mode 100644 index 0000000..297e5e2 --- /dev/null +++ b/BeyondNetCode.Shell.Factory/obj/BeyondNetCode.Shell.Factory.csproj.nuget.dgspec.json @@ -0,0 +1,347 @@ +{ + "format": 1, + "restore": { + "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj": {} + }, + "projects": { + "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj": { + "version": "9.9.9-test", + "restore": { + "projectUniqueName": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj", + "projectName": "BeyondNetCode.Shell.Factory", + "projectPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj", + "packagesPath": "/Users/beyondnet/.nuget/packages/", + "outputPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/beyondnet/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": { + "target": "Package", + "version": "[8.0.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.201/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory/obj/BeyondNetCode.Shell.Factory.csproj.nuget.g.props b/BeyondNetCode.Shell.Factory/obj/BeyondNetCode.Shell.Factory.csproj.nuget.g.props new file mode 100644 index 0000000..a64fed5 --- /dev/null +++ b/BeyondNetCode.Shell.Factory/obj/BeyondNetCode.Shell.Factory.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/beyondnet/.nuget/packages/ + /Users/beyondnet/.nuget/packages/ + PackageReference + 7.0.0 + + + + + \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory/obj/BeyondNetCode.Shell.Factory.csproj.nuget.g.targets b/BeyondNetCode.Shell.Factory/obj/BeyondNetCode.Shell.Factory.csproj.nuget.g.targets new file mode 100644 index 0000000..d3aeb37 --- /dev/null +++ b/BeyondNetCode.Shell.Factory/obj/BeyondNetCode.Shell.Factory.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory/obj/Release/BeyondNetCode.Shell.Factory.9.9.9-test.nuspec b/BeyondNetCode.Shell.Factory/obj/Release/BeyondNetCode.Shell.Factory.9.9.9-test.nuspec new file mode 100644 index 0000000..c907adf --- /dev/null +++ b/BeyondNetCode.Shell.Factory/obj/Release/BeyondNetCode.Shell.Factory.9.9.9-test.nuspec @@ -0,0 +1,24 @@ + + + + BeyondNetCode.Shell.Factory + 9.9.9-test + BeyondNetCode.Shell.Factory + BeyondNetCode.Shell.Factory + https://github.com/beyondnetcode/Shell.Factory + BeyondNetCode.Shell.Factory is a .NET library aimed at improving the factory and abstract factory patterns by introducing configuration-driven behavior. It enables developers to create structured factories that simplify object instantiation across different .NET applications. + BeyondNet Code + factory, factory-patterns + + + + + + + + + + + + + \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.AssemblyInfo.cs b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.AssemblyInfo.cs new file mode 100644 index 0000000..2a89339 --- /dev/null +++ b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 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("BeyondNetCode.Shell.Factory")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("BeyondNet Code")] +[assembly: System.Reflection.AssemblyDescriptionAttribute(@"BeyondNetCode.Shell.Factory is a .NET library aimed at improving the factory and abstract factory patterns by introducing configuration-driven behavior. It enables developers to create structured factories that simplify object instantiation across different .NET applications.")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5ce44ee9005c6892800859f4a821784335280f34")] +[assembly: System.Reflection.AssemblyProductAttribute("BeyondNetCode.Shell.Factory")] +[assembly: System.Reflection.AssemblyTitleAttribute("BeyondNetCode.Shell.Factory")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/beyondnetcode/Shell.Factory")] + +// Generado por la clase WriteCodeFragment de MSBuild. + diff --git a/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.AssemblyInfoInputs.cache b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.AssemblyInfoInputs.cache new file mode 100644 index 0000000..3ebde06 --- /dev/null +++ b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b227738915d97cd7010bd44de7a0ee757fc28ea3013652be73d4ea3c220454c2 diff --git a/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.GeneratedMSBuildEditorConfig.editorconfig b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ee1d765 --- /dev/null +++ b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.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 = BeyondNetCode.Shell.Factory +build_property.ProjectDir = /private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.GlobalUsings.g.cs b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.assets.cache b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.assets.cache new file mode 100644 index 0000000..3e64b07 Binary files /dev/null and b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.assets.cache differ diff --git a/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.csproj.AssemblyReference.cache b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.csproj.AssemblyReference.cache new file mode 100644 index 0000000..9f6470a Binary files /dev/null and b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.csproj.AssemblyReference.cache differ diff --git a/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.csproj.CoreCompileInputs.cache b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..d54293b --- /dev/null +++ b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +fb5199c32d088272de3d6cbabf6ed7e808891474d63710aae2015d4bd8b565c6 diff --git a/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.csproj.FileListAbsolute.txt b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..3a3a70d --- /dev/null +++ b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.csproj.FileListAbsolute.txt @@ -0,0 +1,13 @@ +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/bin/Release/net10.0/BeyondNetCode.Shell.Factory.deps.json +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/bin/Release/net10.0/BeyondNetCode.Shell.Factory.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/bin/Release/net10.0/BeyondNetCode.Shell.Factory.pdb +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.csproj.AssemblyReference.cache +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.GeneratedMSBuildEditorConfig.editorconfig +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.AssemblyInfoInputs.cache +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.AssemblyInfo.cs +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.csproj.CoreCompileInputs.cache +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.sourcelink.json +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/obj/Release/net10.0/refint/BeyondNetCode.Shell.Factory.dll +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.pdb +/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/obj/Release/net10.0/ref/BeyondNetCode.Shell.Factory.dll diff --git a/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.dll b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.dll new file mode 100644 index 0000000..c5fc046 Binary files /dev/null and b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.dll differ diff --git a/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.pdb b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.pdb new file mode 100644 index 0000000..aad9ece Binary files /dev/null and b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.pdb differ diff --git a/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.sourcelink.json b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.sourcelink.json new file mode 100644 index 0000000..6575138 --- /dev/null +++ b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/BeyondNetCode.Shell.Factory.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/*":"https://raw.githubusercontent.com/beyondnetcode/Shell.Factory/5ce44ee9005c6892800859f4a821784335280f34/*"}} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory/obj/Release/net10.0/ref/BeyondNetCode.Shell.Factory.dll b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/ref/BeyondNetCode.Shell.Factory.dll new file mode 100644 index 0000000..51e0f89 Binary files /dev/null and b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/ref/BeyondNetCode.Shell.Factory.dll differ diff --git a/BeyondNetCode.Shell.Factory/obj/Release/net10.0/refint/BeyondNetCode.Shell.Factory.dll b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/refint/BeyondNetCode.Shell.Factory.dll new file mode 100644 index 0000000..51e0f89 Binary files /dev/null and b/BeyondNetCode.Shell.Factory/obj/Release/net10.0/refint/BeyondNetCode.Shell.Factory.dll differ diff --git a/BeyondNetCode.Shell.Factory/obj/project.assets.json b/BeyondNetCode.Shell.Factory/obj/project.assets.json new file mode 100644 index 0000000..3e0a33f --- /dev/null +++ b/BeyondNetCode.Shell.Factory/obj/project.assets.json @@ -0,0 +1,496 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + } + } + }, + "libraries": { + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "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.2.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "sha512": "nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "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.2.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Microsoft.Extensions.Logging.Abstractions >= 8.0.2" + ] + }, + "packageFolders": { + "/Users/beyondnet/.nuget/packages/": {} + }, + "project": { + "version": "9.9.9-test", + "restore": { + "projectUniqueName": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj", + "projectName": "BeyondNetCode.Shell.Factory", + "projectPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj", + "packagesPath": "/Users/beyondnet/.nuget/packages/", + "outputPath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/beyondnet/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": { + "target": "Package", + "version": "[8.0.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.201/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/BeyondNetCode.Shell.Factory/obj/project.nuget.cache b/BeyondNetCode.Shell.Factory/obj/project.nuget.cache new file mode 100644 index 0000000..8b2c5a0 --- /dev/null +++ b/BeyondNetCode.Shell.Factory/obj/project.nuget.cache @@ -0,0 +1,11 @@ +{ + "version": 2, + "dgSpecHash": "SD3T07X+45s=", + "success": true, + "projectFilePath": "/private/tmp/claude-501/-Users-beyondnet-Source-beyondnetcode/e491753a-94e4-4868-8636-0181a8dcb42d/scratchpad/Shell.Factory/BeyondNetCode.Shell.Factory/BeyondNetCode.Shell.Factory.csproj", + "expectedPackageFiles": [ + "/Users/beyondnet/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/8.0.2/microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "/Users/beyondnet/.nuget/packages/microsoft.extensions.logging.abstractions/8.0.2/microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/README.md b/README.md index fa11729..4dfb001 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ NuGet - Build + Build