├── .config └── dotnet-tools.json ├── .editorconfig ├── .github ├── CODEOWNERS ├── dependabot.yaml └── workflows │ ├── build-natives.yaml │ ├── build-push-and-pr.yaml │ └── build-release.yaml ├── .gitignore ├── LICENSE ├── README.md ├── THIRD-PARTY-NOTICES ├── YetAnotherHttpHandler.sln ├── YetAnotherHttpHandler.sln.DotSettings ├── native ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── about.hbs ├── about.toml └── yaha_native │ ├── .gitignore │ ├── Cargo.toml │ ├── build.rs │ └── src │ ├── binding.rs │ ├── context.rs │ ├── interop.rs │ ├── lib.rs │ └── primitives.rs ├── perf └── PerformanceCheck │ ├── PerformanceCheck.csproj │ └── Program.cs ├── src ├── YetAnotherHttpHandler.Dependencies │ ├── README.md │ ├── README.md.meta │ ├── package.json │ └── package.json.meta ├── YetAnotherHttpHandler.Unity │ ├── .gitignore │ ├── .vsconfig │ ├── Assets │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── BuildTransitiveFilter.NugetForUnityPlugin.meta │ │ │ ├── BuildTransitiveFilter.NugetForUnityPlugin │ │ │ │ ├── BuildTransitiveFilter.NugetForUnityPlugin.asmdef │ │ │ │ ├── BuildTransitiveFilter.NugetForUnityPlugin.asmdef.meta │ │ │ │ ├── BuildTransitiveFilterPlugin.cs │ │ │ │ └── BuildTransitiveFilterPlugin.cs.meta │ │ │ ├── NuGetForUnityHack.meta │ │ │ ├── NuGetForUnityHack │ │ │ │ ├── ExposeInstalledPackagesManager.cs │ │ │ │ ├── ExposeInstalledPackagesManager.cs.meta │ │ │ │ ├── NuGetForUnityHack.asmref │ │ │ │ └── NuGetForUnityHack.asmref.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── PackageExporter.cs │ │ │ │ └── PackageExporter.cs.meta │ │ ├── NuGet.config │ │ ├── NuGet.config.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── Grpc.Core.Api.2.61.0.meta │ │ │ ├── Grpc.Core.Api.2.61.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── Grpc.Core.Api.nuspec │ │ │ │ ├── Grpc.Core.Api.nuspec.meta │ │ │ │ ├── README.md │ │ │ │ ├── README.md.meta │ │ │ │ ├── lib.meta │ │ │ │ ├── lib │ │ │ │ │ ├── netstandard2.1.meta │ │ │ │ │ └── netstandard2.1 │ │ │ │ │ │ ├── Grpc.Core.Api.dll │ │ │ │ │ │ ├── Grpc.Core.Api.dll.meta │ │ │ │ │ │ ├── Grpc.Core.Api.xml │ │ │ │ │ │ └── Grpc.Core.Api.xml.meta │ │ │ │ ├── packageIcon.png │ │ │ │ └── packageIcon.png.meta │ │ │ ├── Grpc.Net.Client.2.61.0.meta │ │ │ ├── Grpc.Net.Client.2.61.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── Grpc.Net.Client.nuspec │ │ │ │ ├── Grpc.Net.Client.nuspec.meta │ │ │ │ ├── README.md │ │ │ │ ├── README.md.meta │ │ │ │ ├── lib.meta │ │ │ │ ├── lib │ │ │ │ │ ├── netstandard2.1.meta │ │ │ │ │ └── netstandard2.1 │ │ │ │ │ │ ├── Grpc.Net.Client.dll │ │ │ │ │ │ ├── Grpc.Net.Client.dll.meta │ │ │ │ │ │ ├── Grpc.Net.Client.xml │ │ │ │ │ │ └── Grpc.Net.Client.xml.meta │ │ │ │ ├── packageIcon.png │ │ │ │ └── packageIcon.png.meta │ │ │ ├── Grpc.Net.Common.2.61.0.meta │ │ │ ├── Grpc.Net.Common.2.61.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── Grpc.Net.Common.nuspec │ │ │ │ ├── Grpc.Net.Common.nuspec.meta │ │ │ │ ├── lib.meta │ │ │ │ ├── lib │ │ │ │ │ ├── netstandard2.1.meta │ │ │ │ │ └── netstandard2.1 │ │ │ │ │ │ ├── Grpc.Net.Common.dll │ │ │ │ │ │ ├── Grpc.Net.Common.dll.meta │ │ │ │ │ │ ├── Grpc.Net.Common.xml │ │ │ │ │ │ └── Grpc.Net.Common.xml.meta │ │ │ │ ├── packageIcon.png │ │ │ │ └── packageIcon.png.meta │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.6.0.0.meta │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.6.0.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon.png.meta │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── LICENSE.TXT.meta │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.nuspec │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.nuspec.meta │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT.meta │ │ │ │ ├── analyzers.meta │ │ │ │ ├── analyzers │ │ │ │ │ ├── dotnet.meta │ │ │ │ │ └── dotnet │ │ │ │ │ │ ├── roslyn3.11.meta │ │ │ │ │ │ ├── roslyn3.11 │ │ │ │ │ │ ├── cs.meta │ │ │ │ │ │ └── cs │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.dll │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.dll.meta │ │ │ │ │ │ │ ├── cs.meta │ │ │ │ │ │ │ ├── cs │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ │ ├── de.meta │ │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ │ ├── es.meta │ │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ │ ├── fr.meta │ │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ │ ├── it.meta │ │ │ │ │ │ │ ├── it │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ │ ├── ja.meta │ │ │ │ │ │ │ ├── ja │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ │ ├── ko.meta │ │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ │ ├── pl.meta │ │ │ │ │ │ │ ├── pl │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ │ ├── pt-BR.meta │ │ │ │ │ │ │ ├── pt-BR │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ │ ├── ru.meta │ │ │ │ │ │ │ ├── ru │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ │ ├── tr.meta │ │ │ │ │ │ │ ├── tr │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ │ ├── zh-Hans.meta │ │ │ │ │ │ │ ├── zh-Hans │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ │ ├── zh-Hant.meta │ │ │ │ │ │ │ └── zh-Hant │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ ├── roslyn4.0.meta │ │ │ │ │ │ └── roslyn4.0 │ │ │ │ │ │ ├── cs.meta │ │ │ │ │ │ └── cs │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.dll │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.dll.meta │ │ │ │ │ │ ├── cs.meta │ │ │ │ │ │ ├── cs │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ ├── de.meta │ │ │ │ │ │ ├── de │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ ├── es.meta │ │ │ │ │ │ ├── es │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ ├── fr.meta │ │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ ├── it.meta │ │ │ │ │ │ ├── it │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ ├── ja.meta │ │ │ │ │ │ ├── ja │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ ├── ko.meta │ │ │ │ │ │ ├── ko │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ ├── pl.meta │ │ │ │ │ │ ├── pl │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ ├── pt-BR.meta │ │ │ │ │ │ ├── pt-BR │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ ├── ru.meta │ │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ ├── tr.meta │ │ │ │ │ │ ├── tr │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ ├── zh-Hans.meta │ │ │ │ │ │ ├── zh-Hans │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ │ │ ├── zh-Hant.meta │ │ │ │ │ │ └── zh-Hant │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll.meta │ │ │ │ ├── lib.meta │ │ │ │ ├── lib │ │ │ │ │ ├── netstandard2.0.meta │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll.meta │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.xml │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Abstractions.xml.meta │ │ │ │ ├── useSharedDesignerContext.txt │ │ │ │ └── useSharedDesignerContext.txt.meta │ │ │ ├── System.Diagnostics.DiagnosticSource.6.0.1.meta │ │ │ ├── System.Diagnostics.DiagnosticSource.6.0.1 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon.png.meta │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── LICENSE.TXT.meta │ │ │ │ ├── System.Diagnostics.DiagnosticSource.nuspec │ │ │ │ ├── System.Diagnostics.DiagnosticSource.nuspec.meta │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT.meta │ │ │ │ ├── lib.meta │ │ │ │ ├── lib │ │ │ │ │ ├── netstandard2.0.meta │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ │ │ │ ├── System.Diagnostics.DiagnosticSource.dll.meta │ │ │ │ │ │ ├── System.Diagnostics.DiagnosticSource.xml │ │ │ │ │ │ └── System.Diagnostics.DiagnosticSource.xml.meta │ │ │ │ ├── useSharedDesignerContext.txt │ │ │ │ └── useSharedDesignerContext.txt.meta │ │ │ ├── System.IO.Pipelines.8.0.0.meta │ │ │ ├── System.IO.Pipelines.8.0.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon.png.meta │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── LICENSE.TXT.meta │ │ │ │ ├── System.IO.Pipelines.nuspec │ │ │ │ ├── System.IO.Pipelines.nuspec.meta │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT.meta │ │ │ │ ├── lib.meta │ │ │ │ ├── lib │ │ │ │ │ ├── netstandard2.0.meta │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ ├── System.IO.Pipelines.dll │ │ │ │ │ │ ├── System.IO.Pipelines.dll.meta │ │ │ │ │ │ ├── System.IO.Pipelines.xml │ │ │ │ │ │ └── System.IO.Pipelines.xml.meta │ │ │ │ ├── useSharedDesignerContext.txt │ │ │ │ └── useSharedDesignerContext.txt.meta │ │ │ ├── System.Runtime.CompilerServices.Unsafe.6.0.0.meta │ │ │ └── System.Runtime.CompilerServices.Unsafe.6.0.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon.png.meta │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── LICENSE.TXT.meta │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.nuspec │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.nuspec.meta │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT.meta │ │ │ │ ├── lib.meta │ │ │ │ ├── lib │ │ │ │ ├── netstandard2.0.meta │ │ │ │ └── netstandard2.0 │ │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll.meta │ │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.xml │ │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.xml.meta │ │ │ │ ├── useSharedDesignerContext.txt │ │ │ │ └── useSharedDesignerContext.txt.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── SampleScene.unity │ │ │ └── SampleScene.unity.meta │ │ ├── Tests.meta │ │ ├── Tests │ │ │ ├── SimpleCall.cs │ │ │ ├── SimpleCall.cs.meta │ │ │ ├── Tests.asmdef │ │ │ └── Tests.asmdef.meta │ │ ├── packages.config │ │ └── packages.config.meta │ ├── Packages │ │ ├── manifest.json │ │ └── packages-lock.json │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── MemorySettings.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── PackageManagerSettings.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ ├── VersionControlSettings.asset │ │ ├── XRSettings.asset │ │ └── boot.config └── YetAnotherHttpHandler │ ├── .gitignore │ ├── Directory.Build.props │ ├── Directory.Build.props.meta │ ├── Directory.Build.targets │ ├── Directory.Build.targets.meta │ ├── InteropExtensions.cs │ ├── InteropExtensions.cs.meta │ ├── NativeHttpHandlerCore.cs │ ├── NativeHttpHandlerCore.cs.meta │ ├── NativeMethods.Uwp.g.cs │ ├── NativeMethods.Uwp.g.cs.meta │ ├── NativeMethods.g.cs │ ├── NativeMethods.g.cs.meta │ ├── NativeRuntime.cs │ ├── NativeRuntime.cs.meta │ ├── Plugins.meta │ ├── Plugins │ ├── Cysharp.Net.Http.YetAnotherHttpHandler.Native.meta │ ├── Cysharp.Net.Http.YetAnotherHttpHandler.Native │ │ ├── runtimes.meta │ │ └── runtimes │ │ │ ├── android-arm.meta │ │ │ ├── android-arm │ │ │ ├── native.meta │ │ │ └── native │ │ │ │ ├── libCysharp.Net.Http.YetAnotherHttpHandler.Native.so │ │ │ │ └── libCysharp.Net.Http.YetAnotherHttpHandler.Native.so.meta │ │ │ ├── android-arm64.meta │ │ │ ├── android-arm64 │ │ │ ├── native.meta │ │ │ └── native │ │ │ │ ├── libCysharp.Net.Http.YetAnotherHttpHandler.Native.so │ │ │ │ └── libCysharp.Net.Http.YetAnotherHttpHandler.Native.so.meta │ │ │ ├── android-x64.meta │ │ │ ├── android-x64 │ │ │ ├── native.meta │ │ │ └── native │ │ │ │ ├── libCysharp.Net.Http.YetAnotherHttpHandler.Native.so │ │ │ │ └── libCysharp.Net.Http.YetAnotherHttpHandler.Native.so.meta │ │ │ ├── ios-arm64-sim.meta │ │ │ ├── ios-arm64-sim │ │ │ ├── native.meta │ │ │ └── native │ │ │ │ ├── libCysharp.Net.Http.YetAnotherHttpHandler.Native.a │ │ │ │ └── libCysharp.Net.Http.YetAnotherHttpHandler.Native.a.meta │ │ │ ├── ios-arm64.meta │ │ │ ├── ios-arm64 │ │ │ ├── native.meta │ │ │ └── native │ │ │ │ ├── libCysharp.Net.Http.YetAnotherHttpHandler.Native.a │ │ │ │ └── libCysharp.Net.Http.YetAnotherHttpHandler.Native.a.meta │ │ │ ├── ios-x64.meta │ │ │ ├── ios-x64 │ │ │ ├── native.meta │ │ │ └── native │ │ │ │ ├── libCysharp.Net.Http.YetAnotherHttpHandler.Native.a │ │ │ │ └── libCysharp.Net.Http.YetAnotherHttpHandler.Native.a.meta │ │ │ ├── linux-x64.meta │ │ │ ├── linux-x64 │ │ │ ├── native.meta │ │ │ └── native │ │ │ │ ├── libCysharp.Net.Http.YetAnotherHttpHandler.Native.so │ │ │ │ └── libCysharp.Net.Http.YetAnotherHttpHandler.Native.so.meta │ │ │ ├── osx-universal.meta │ │ │ ├── osx-universal │ │ │ ├── native.meta │ │ │ └── native │ │ │ │ ├── Cysharp.Net.Http.YetAnotherHttpHandler.Native.bundle │ │ │ │ └── Cysharp.Net.Http.YetAnotherHttpHandler.Native.bundle.meta │ │ │ ├── win-arm64-uwp.meta │ │ │ ├── win-arm64-uwp │ │ │ ├── native.meta │ │ │ └── native │ │ │ │ ├── Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll │ │ │ │ └── Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll.meta │ │ │ ├── win-arm64.meta │ │ │ ├── win-arm64 │ │ │ ├── native.meta │ │ │ └── native │ │ │ │ ├── Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll │ │ │ │ └── Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll.meta │ │ │ ├── win-x64.meta │ │ │ └── win-x64 │ │ │ ├── native.meta │ │ │ └── native │ │ │ ├── Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll │ │ │ └── Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll.meta │ ├── README.md │ └── README.md.meta │ ├── RequestContext.cs │ ├── RequestContext.cs.meta │ ├── ResponseContext.cs │ ├── ResponseContext.cs.meta │ ├── Shims.meta │ ├── Shims │ ├── Http2StreamException.cs │ ├── Http2StreamException.cs.meta │ ├── HttpVersionShim.cs │ ├── HttpVersionShim.cs.meta │ ├── MonoPInvokeCallback.cs │ ├── MonoPInvokeCallback.cs.meta │ ├── TrailingHeadersShim.cs │ └── TrailingHeadersShim.cs.meta │ ├── ThrowHelper.cs │ ├── ThrowHelper.cs.meta │ ├── UnsafeUtilities.cs │ ├── UnsafeUtilities.cs.meta │ ├── UriHelper.cs │ ├── UriHelper.cs.meta │ ├── Utf8Strings.cs │ ├── Utf8Strings.cs.meta │ ├── YahaEventSource.cs │ ├── YahaEventSource.cs.meta │ ├── YahaSafeHandles.cs │ ├── YahaSafeHandles.cs.meta │ ├── YetAnotherHttpHandler.Unity.asmdef │ ├── YetAnotherHttpHandler.Unity.asmdef.meta │ ├── YetAnotherHttpHandler.cs │ ├── YetAnotherHttpHandler.cs.meta │ ├── YetAnotherHttpHandler.csproj │ ├── YetAnotherHttpHandler.csproj.meta │ ├── YetAnotherHttpHttpContent.cs │ ├── YetAnotherHttpHttpContent.cs.meta │ ├── csc.rsp │ ├── csc.rsp.meta │ ├── package.json │ └── package.json.meta └── test ├── YetAnotherHttpHandler.Packaging.Test ├── LoadLibraryFromPackageTest.cs ├── README.md ├── Usings.cs └── YetAnotherHttpHandler.Packaging.Test.csproj ├── YetAnotherHttpHandler.StandaloneTestServer ├── Program.cs ├── Properties │ └── launchSettings.json ├── YetAnotherHttpHandler.StandaloneTestServer.csproj ├── appsettings.Development.json └── appsettings.json ├── YetAnotherHttpHandler.Test ├── BackPressureTest.cs ├── ClientCertificateTest.cs ├── Helpers │ ├── NativeLibraryResolver.cs │ ├── OSSkipConditionAttribute2.cs │ ├── TestOutputLoggerProvider.cs │ ├── TestServerHelper.cs │ ├── TestWebAppServer.cs │ └── ThreadEnumerator.cs ├── Http1Test.cs ├── Http2ClearTextTest.cs ├── Http2Test.cs ├── Http2TestBase.cs ├── ITestServerBuilder.cs ├── NativeMethodsTest.cs ├── Properties │ └── launchSettings.json ├── Protos │ └── greet.proto ├── StreamExtensions.cs ├── StressTest.cs ├── TestServerForHttp1AndHttp2.cs ├── TimeoutTestBase.cs ├── UdsTest.cs ├── UriHelperTest.cs ├── UseTestServerBase.cs ├── Usings.cs ├── VersionNegotiationTest.cs ├── YahaEventListener.cs ├── YetAnotherHttpHandler.Test.csproj └── YetAnotherHttpHandlerTest.cs ├── YetAnotherHttpHandler.Unity.Test ├── .gitignore ├── .vsconfig ├── Assets │ ├── NuGet.config │ ├── NuGet.config.meta │ ├── Packages.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── Tests.meta │ ├── Tests │ │ ├── Compat.meta │ │ ├── Compat │ │ │ ├── Assert.cs │ │ │ ├── Assert.cs.meta │ │ │ ├── Extensions.cs │ │ │ └── Extensions.cs.meta │ │ ├── Greet.cs │ │ ├── Greet.cs.meta │ │ ├── GreetGrpc.cs │ │ ├── GreetGrpc.cs.meta │ │ ├── Http1Test.cs │ │ ├── Http1Test.cs.meta │ │ ├── Http2ClearTextTest.cs │ │ ├── Http2ClearTextTest.cs.meta │ │ ├── YahaUnityTestBase.cs │ │ ├── YahaUnityTestBase.cs.meta │ │ ├── YetAnotherHttpHandler.Unity.Tests.asmdef │ │ └── YetAnotherHttpHandler.Unity.Tests.asmdef.meta │ ├── packages.config │ └── packages.config.meta ├── Packages │ ├── manifest.json │ └── packages-lock.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ ├── XRSettings.asset │ └── boot.config └── certs ├── README.md ├── client.conf ├── client.crt ├── client.csr ├── client.key ├── client.pfx ├── client_unknown.conf ├── client_unknown.crt ├── client_unknown.csr ├── client_unknown.key ├── client_unknown.pfx ├── localhost.crt ├── localhost.key ├── localhost.pfx └── localhost.srl /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @mayuki 2 | -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/build-natives.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/.github/workflows/build-natives.yaml -------------------------------------------------------------------------------- /.github/workflows/build-push-and-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/.github/workflows/build-push-and-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/build-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/.github/workflows/build-release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/THIRD-PARTY-NOTICES -------------------------------------------------------------------------------- /YetAnotherHttpHandler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/YetAnotherHttpHandler.sln -------------------------------------------------------------------------------- /YetAnotherHttpHandler.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/YetAnotherHttpHandler.sln.DotSettings -------------------------------------------------------------------------------- /native/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | .idea/ 3 | .DS_Store 4 | .vs/ 5 | 6 | artifacts -------------------------------------------------------------------------------- /native/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/native/Cargo.lock -------------------------------------------------------------------------------- /native/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/native/Cargo.toml -------------------------------------------------------------------------------- /native/about.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/native/about.hbs -------------------------------------------------------------------------------- /native/about.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/native/about.toml -------------------------------------------------------------------------------- /native/yaha_native/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /native/yaha_native/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/native/yaha_native/Cargo.toml -------------------------------------------------------------------------------- /native/yaha_native/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/native/yaha_native/build.rs -------------------------------------------------------------------------------- /native/yaha_native/src/binding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/native/yaha_native/src/binding.rs -------------------------------------------------------------------------------- /native/yaha_native/src/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/native/yaha_native/src/context.rs -------------------------------------------------------------------------------- /native/yaha_native/src/interop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/native/yaha_native/src/interop.rs -------------------------------------------------------------------------------- /native/yaha_native/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/native/yaha_native/src/lib.rs -------------------------------------------------------------------------------- /native/yaha_native/src/primitives.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/native/yaha_native/src/primitives.rs -------------------------------------------------------------------------------- /perf/PerformanceCheck/PerformanceCheck.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/perf/PerformanceCheck/PerformanceCheck.csproj -------------------------------------------------------------------------------- /perf/PerformanceCheck/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/perf/PerformanceCheck/Program.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Dependencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Dependencies/README.md -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Dependencies/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Dependencies/README.md.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Dependencies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Dependencies/package.json -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Dependencies/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Dependencies/package.json.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/.gitignore -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/.vsconfig -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Editor.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Editor/BuildTransitiveFilter.NugetForUnityPlugin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Editor/BuildTransitiveFilter.NugetForUnityPlugin.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Editor/BuildTransitiveFilter.NugetForUnityPlugin/BuildTransitiveFilter.NugetForUnityPlugin.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Editor/BuildTransitiveFilter.NugetForUnityPlugin/BuildTransitiveFilter.NugetForUnityPlugin.asmdef -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Editor/BuildTransitiveFilter.NugetForUnityPlugin/BuildTransitiveFilter.NugetForUnityPlugin.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Editor/BuildTransitiveFilter.NugetForUnityPlugin/BuildTransitiveFilter.NugetForUnityPlugin.asmdef.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Editor/BuildTransitiveFilter.NugetForUnityPlugin/BuildTransitiveFilterPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Editor/BuildTransitiveFilter.NugetForUnityPlugin/BuildTransitiveFilterPlugin.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Editor/BuildTransitiveFilter.NugetForUnityPlugin/BuildTransitiveFilterPlugin.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Editor/BuildTransitiveFilter.NugetForUnityPlugin/BuildTransitiveFilterPlugin.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Editor/NuGetForUnityHack.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Editor/NuGetForUnityHack.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Editor/NuGetForUnityHack/ExposeInstalledPackagesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Editor/NuGetForUnityHack/ExposeInstalledPackagesManager.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Editor/NuGetForUnityHack/ExposeInstalledPackagesManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Editor/NuGetForUnityHack/ExposeInstalledPackagesManager.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Editor/NuGetForUnityHack/NuGetForUnityHack.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "NuGetForUnity" 3 | } -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Editor/NuGetForUnityHack/NuGetForUnityHack.asmref.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Editor/NuGetForUnityHack/NuGetForUnityHack.asmref.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Editor/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Editor/Scripts.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Editor/Scripts/PackageExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Editor/Scripts/PackageExporter.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Editor/Scripts/PackageExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Editor/Scripts/PackageExporter.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/NuGet.config -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/NuGet.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/NuGet.config.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/.signature.p7s -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/Grpc.Core.Api.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/Grpc.Core.Api.nuspec -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/Grpc.Core.Api.nuspec.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/Grpc.Core.Api.nuspec.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/README.md -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/README.md.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/lib.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/lib/netstandard2.1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/lib/netstandard2.1.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/lib/netstandard2.1/Grpc.Core.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/lib/netstandard2.1/Grpc.Core.Api.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/lib/netstandard2.1/Grpc.Core.Api.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/lib/netstandard2.1/Grpc.Core.Api.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/lib/netstandard2.1/Grpc.Core.Api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/lib/netstandard2.1/Grpc.Core.Api.xml -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/lib/netstandard2.1/Grpc.Core.Api.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/lib/netstandard2.1/Grpc.Core.Api.xml.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/packageIcon.png -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/packageIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.2.61.0/packageIcon.png.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/.signature.p7s -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/Grpc.Net.Client.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/Grpc.Net.Client.nuspec -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/Grpc.Net.Client.nuspec.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/Grpc.Net.Client.nuspec.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/README.md -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/README.md.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/lib.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/lib/netstandard2.1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/lib/netstandard2.1.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/lib/netstandard2.1/Grpc.Net.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/lib/netstandard2.1/Grpc.Net.Client.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/lib/netstandard2.1/Grpc.Net.Client.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/lib/netstandard2.1/Grpc.Net.Client.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/lib/netstandard2.1/Grpc.Net.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/lib/netstandard2.1/Grpc.Net.Client.xml -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/lib/netstandard2.1/Grpc.Net.Client.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/lib/netstandard2.1/Grpc.Net.Client.xml.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/packageIcon.png -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/packageIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.2.61.0/packageIcon.png.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/.signature.p7s -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/Grpc.Net.Common.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/Grpc.Net.Common.nuspec -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/Grpc.Net.Common.nuspec.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/Grpc.Net.Common.nuspec.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/lib.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/lib/netstandard2.1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/lib/netstandard2.1.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/lib/netstandard2.1/Grpc.Net.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/lib/netstandard2.1/Grpc.Net.Common.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/lib/netstandard2.1/Grpc.Net.Common.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/lib/netstandard2.1/Grpc.Net.Common.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/lib/netstandard2.1/Grpc.Net.Common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/lib/netstandard2.1/Grpc.Net.Common.xml -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/lib/netstandard2.1/Grpc.Net.Common.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/lib/netstandard2.1/Grpc.Net.Common.xml.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/packageIcon.png -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/packageIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.2.61.0/packageIcon.png.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/.signature.p7s -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/Icon.png -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/Icon.png.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/LICENSE.TXT -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/LICENSE.TXT.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/LICENSE.TXT.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/Microsoft.Extensions.Logging.Abstractions.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/Microsoft.Extensions.Logging.Abstractions.nuspec -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/Microsoft.Extensions.Logging.Abstractions.nuspec.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/Microsoft.Extensions.Logging.Abstractions.nuspec.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/THIRD-PARTY-NOTICES.TXT.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/THIRD-PARTY-NOTICES.TXT.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/de.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/de.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/es.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/es.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/fr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/fr.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/it.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/it.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ja.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ja.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ko.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ko.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/pl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/pl.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/pt-BR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/pt-BR.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ru.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ru.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/tr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/tr.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/zh-Hans.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/zh-Hans.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/zh-Hant.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/zh-Hant.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/de.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/de.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/es.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/es.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/fr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/fr.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/it.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/it.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ja.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ja.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ko.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ko.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/pl.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/pl.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/pt-BR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/pt-BR.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ru.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ru.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/tr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/tr.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/zh-Hans.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/zh-Hans.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/zh-Hant.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/zh-Hant.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/lib.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/lib/netstandard2.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/lib/netstandard2.0.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/useSharedDesignerContext.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.6.0.0/useSharedDesignerContext.txt.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/.signature.p7s -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/Icon.png -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/Icon.png.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/LICENSE.TXT -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/LICENSE.TXT.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/LICENSE.TXT.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/System.Diagnostics.DiagnosticSource.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/System.Diagnostics.DiagnosticSource.nuspec -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/System.Diagnostics.DiagnosticSource.nuspec.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/System.Diagnostics.DiagnosticSource.nuspec.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/THIRD-PARTY-NOTICES.TXT.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/THIRD-PARTY-NOTICES.TXT.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/lib.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/lib/netstandard2.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/lib/netstandard2.0.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/useSharedDesignerContext.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.6.0.1/useSharedDesignerContext.txt.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/.signature.p7s -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/Icon.png -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/Icon.png.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/LICENSE.TXT -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/LICENSE.TXT.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/LICENSE.TXT.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/System.IO.Pipelines.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/System.IO.Pipelines.nuspec -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/System.IO.Pipelines.nuspec.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/System.IO.Pipelines.nuspec.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/THIRD-PARTY-NOTICES.TXT.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/THIRD-PARTY-NOTICES.TXT.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/lib.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/lib/netstandard2.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/lib/netstandard2.0.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/lib/netstandard2.0/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/lib/netstandard2.0/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/lib/netstandard2.0/System.IO.Pipelines.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/lib/netstandard2.0/System.IO.Pipelines.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/lib/netstandard2.0/System.IO.Pipelines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/lib/netstandard2.0/System.IO.Pipelines.xml -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/lib/netstandard2.0/System.IO.Pipelines.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/lib/netstandard2.0/System.IO.Pipelines.xml.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/useSharedDesignerContext.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.8.0.0/useSharedDesignerContext.txt.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/.signature.p7s -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/Icon.png -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/Icon.png.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/LICENSE.TXT -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/LICENSE.TXT.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/LICENSE.TXT.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/System.Runtime.CompilerServices.Unsafe.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/System.Runtime.CompilerServices.Unsafe.nuspec -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/System.Runtime.CompilerServices.Unsafe.nuspec.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/System.Runtime.CompilerServices.Unsafe.nuspec.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/THIRD-PARTY-NOTICES.TXT.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/THIRD-PARTY-NOTICES.TXT.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/lib.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/useSharedDesignerContext.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.6.0.0/useSharedDesignerContext.txt.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Scenes.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Tests.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Tests/SimpleCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Tests/SimpleCall.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Tests/SimpleCall.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Tests/SimpleCall.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Tests/Tests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Tests/Tests.asmdef -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/Tests/Tests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/Tests/Tests.asmdef.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/packages.config -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Assets/packages.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Assets/packages.config.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Packages/manifest.json -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/Packages/packages-lock.json -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler.Unity/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler.Unity/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/.gitignore: -------------------------------------------------------------------------------- 1 | obj/ 2 | obj.meta 3 | 4 | .output/ -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Directory.Build.props -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Directory.Build.props.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Directory.Build.props.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Directory.Build.targets -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Directory.Build.targets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Directory.Build.targets.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/InteropExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/InteropExtensions.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/InteropExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/InteropExtensions.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/NativeHttpHandlerCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/NativeHttpHandlerCore.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/NativeHttpHandlerCore.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/NativeHttpHandlerCore.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/NativeMethods.Uwp.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/NativeMethods.Uwp.g.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/NativeMethods.Uwp.g.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/NativeMethods.Uwp.g.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/NativeMethods.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/NativeMethods.g.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/NativeMethods.g.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/NativeMethods.g.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/NativeRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/NativeRuntime.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/NativeRuntime.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/NativeRuntime.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm/native.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm/native.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm64.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm64/native.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm64/native.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-arm64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-x64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-x64.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-x64/native.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-x64/native.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-x64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-x64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-x64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/android-x64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64-sim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64-sim.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64-sim/native.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64-sim/native.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64-sim/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64-sim/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.a -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64-sim/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64-sim/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.a.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64/native.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64/native.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.a -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-arm64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.a.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-x64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-x64.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-x64/native.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-x64/native.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-x64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-x64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.a -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-x64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/ios-x64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.a.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/linux-x64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/linux-x64.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/linux-x64/native.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/linux-x64/native.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/linux-x64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/linux-x64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/linux-x64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/linux-x64/native/libCysharp.Net.Http.YetAnotherHttpHandler.Native.so.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/osx-universal.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/osx-universal.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/osx-universal/native.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/osx-universal/native.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/osx-universal/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/osx-universal/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.bundle -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/osx-universal/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/osx-universal/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.bundle.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64-uwp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64-uwp.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64-uwp/native.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64-uwp/native.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64-uwp/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64-uwp/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64-uwp/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64-uwp/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64/native.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64/native.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-arm64/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-x64.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-x64.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-x64/native.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-x64/native.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-x64/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-x64/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-x64/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/Cysharp.Net.Http.YetAnotherHttpHandler.Native/runtimes/win-x64/native/Cysharp.Net.Http.YetAnotherHttpHandler.Native.dll.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/README.md -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Plugins/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Plugins/README.md.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/RequestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/RequestContext.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/RequestContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/RequestContext.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/ResponseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/ResponseContext.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/ResponseContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/ResponseContext.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Shims.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Shims.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Shims/Http2StreamException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Shims/Http2StreamException.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Shims/Http2StreamException.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Shims/Http2StreamException.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Shims/HttpVersionShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Shims/HttpVersionShim.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Shims/HttpVersionShim.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Shims/HttpVersionShim.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Shims/MonoPInvokeCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Shims/MonoPInvokeCallback.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Shims/MonoPInvokeCallback.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Shims/MonoPInvokeCallback.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Shims/TrailingHeadersShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Shims/TrailingHeadersShim.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Shims/TrailingHeadersShim.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Shims/TrailingHeadersShim.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/ThrowHelper.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/ThrowHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/ThrowHelper.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/UnsafeUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/UnsafeUtilities.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/UnsafeUtilities.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/UnsafeUtilities.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/UriHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/UriHelper.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/UriHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/UriHelper.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Utf8Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Utf8Strings.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/Utf8Strings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/Utf8Strings.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/YahaEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/YahaEventSource.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/YahaEventSource.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/YahaEventSource.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/YahaSafeHandles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/YahaSafeHandles.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/YahaSafeHandles.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/YahaSafeHandles.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/YetAnotherHttpHandler.Unity.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/YetAnotherHttpHandler.Unity.asmdef -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/YetAnotherHttpHandler.Unity.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/YetAnotherHttpHandler.Unity.asmdef.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/YetAnotherHttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/YetAnotherHttpHandler.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/YetAnotherHttpHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/YetAnotherHttpHandler.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/YetAnotherHttpHandler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/YetAnotherHttpHandler.csproj -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/YetAnotherHttpHandler.csproj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/YetAnotherHttpHandler.csproj.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/YetAnotherHttpHttpContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/YetAnotherHttpHttpContent.cs -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/YetAnotherHttpHttpContent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/YetAnotherHttpHttpContent.cs.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/csc.rsp: -------------------------------------------------------------------------------- 1 | -nullable -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/csc.rsp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/csc.rsp.meta -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/package.json -------------------------------------------------------------------------------- /src/YetAnotherHttpHandler/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/src/YetAnotherHttpHandler/package.json.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Packaging.Test/LoadLibraryFromPackageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Packaging.Test/LoadLibraryFromPackageTest.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Packaging.Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Packaging.Test/README.md -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Packaging.Test/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Packaging.Test/YetAnotherHttpHandler.Packaging.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Packaging.Test/YetAnotherHttpHandler.Packaging.Test.csproj -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.StandaloneTestServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.StandaloneTestServer/Program.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.StandaloneTestServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.StandaloneTestServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.StandaloneTestServer/YetAnotherHttpHandler.StandaloneTestServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.StandaloneTestServer/YetAnotherHttpHandler.StandaloneTestServer.csproj -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.StandaloneTestServer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.StandaloneTestServer/appsettings.Development.json -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.StandaloneTestServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.StandaloneTestServer/appsettings.json -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/BackPressureTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/BackPressureTest.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/ClientCertificateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/ClientCertificateTest.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/Helpers/NativeLibraryResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/Helpers/NativeLibraryResolver.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/Helpers/OSSkipConditionAttribute2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/Helpers/OSSkipConditionAttribute2.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/Helpers/TestOutputLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/Helpers/TestOutputLoggerProvider.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/Helpers/TestServerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/Helpers/TestServerHelper.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/Helpers/TestWebAppServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/Helpers/TestWebAppServer.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/Helpers/ThreadEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/Helpers/ThreadEnumerator.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/Http1Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/Http1Test.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/Http2ClearTextTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/Http2ClearTextTest.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/Http2Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/Http2Test.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/Http2TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/Http2TestBase.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/ITestServerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/ITestServerBuilder.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/NativeMethodsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/NativeMethodsTest.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/Protos/greet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/Protos/greet.proto -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/StreamExtensions.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/StressTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/StressTest.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/TestServerForHttp1AndHttp2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/TestServerForHttp1AndHttp2.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/TimeoutTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/TimeoutTestBase.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/UdsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/UdsTest.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/UriHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/UriHelperTest.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/UseTestServerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/UseTestServerBase.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/Usings.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/VersionNegotiationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/VersionNegotiationTest.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/YahaEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/YahaEventListener.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/YetAnotherHttpHandler.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/YetAnotherHttpHandler.Test.csproj -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Test/YetAnotherHttpHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Test/YetAnotherHttpHandlerTest.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/.gitignore -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/.vsconfig -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/NuGet.config -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/NuGet.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/NuGet.config.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Packages.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Packages.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Scenes.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Compat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Compat.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Compat/Assert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Compat/Assert.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Compat/Assert.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Compat/Assert.cs.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Compat/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Compat/Extensions.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Compat/Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Compat/Extensions.cs.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Greet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Greet.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Greet.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Greet.cs.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/GreetGrpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/GreetGrpc.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/GreetGrpc.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/GreetGrpc.cs.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Http1Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Http1Test.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Http1Test.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Http1Test.cs.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Http2ClearTextTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Http2ClearTextTest.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Http2ClearTextTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/Http2ClearTextTest.cs.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/YahaUnityTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/YahaUnityTestBase.cs -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/YahaUnityTestBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/YahaUnityTestBase.cs.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/YetAnotherHttpHandler.Unity.Tests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/YetAnotherHttpHandler.Unity.Tests.asmdef -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/YetAnotherHttpHandler.Unity.Tests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/Tests/YetAnotherHttpHandler.Unity.Tests.asmdef.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/packages.config -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Assets/packages.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Assets/packages.config.meta -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Packages/manifest.json -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/Packages/packages-lock.json -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /test/YetAnotherHttpHandler.Unity.Test/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/certs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/certs/README.md -------------------------------------------------------------------------------- /test/certs/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/certs/client.conf -------------------------------------------------------------------------------- /test/certs/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/certs/client.crt -------------------------------------------------------------------------------- /test/certs/client.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/certs/client.csr -------------------------------------------------------------------------------- /test/certs/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/certs/client.key -------------------------------------------------------------------------------- /test/certs/client.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/certs/client.pfx -------------------------------------------------------------------------------- /test/certs/client_unknown.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/certs/client_unknown.conf -------------------------------------------------------------------------------- /test/certs/client_unknown.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/certs/client_unknown.crt -------------------------------------------------------------------------------- /test/certs/client_unknown.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/certs/client_unknown.csr -------------------------------------------------------------------------------- /test/certs/client_unknown.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/certs/client_unknown.key -------------------------------------------------------------------------------- /test/certs/client_unknown.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/certs/client_unknown.pfx -------------------------------------------------------------------------------- /test/certs/localhost.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/certs/localhost.crt -------------------------------------------------------------------------------- /test/certs/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/certs/localhost.key -------------------------------------------------------------------------------- /test/certs/localhost.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/YetAnotherHttpHandler/HEAD/test/certs/localhost.pfx -------------------------------------------------------------------------------- /test/certs/localhost.srl: -------------------------------------------------------------------------------- 1 | 364A4682E95D1BD4770477A5C8B7381A1D44F305 2 | --------------------------------------------------------------------------------