├── .config └── dotnet-tools.json ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── actions │ ├── check-metas │ │ └── action.yaml │ └── setup-dotnet │ │ └── action.yaml ├── copilot-instructions.md ├── dependabot.yaml ├── release.yml ├── scripts │ ├── benchmark-client-run.sh │ ├── benchmark-server-run.sh │ └── benchmark-server-stop.sh └── workflows │ ├── benchmark.yaml │ ├── build-canary.yaml │ ├── build-docs.yaml │ ├── build-release.yaml │ ├── build-update-sourcegenerator-for-unity.yaml │ ├── build.yaml │ ├── pr-merged.yaml │ ├── prevent-github-change.yaml │ ├── publish-docs.yaml │ ├── release.yaml │ └── stale.yaml ├── .gitignore ├── Directory.Build.props ├── Directory.Packages.props ├── Icon.png ├── LICENSE ├── MagicOnion.Packaging.slnf ├── MagicOnion.sln.startup.json ├── MagicOnion.slnx ├── NuGet.Config ├── README.md ├── docs ├── .gitignore ├── README.md ├── docs │ ├── about.md │ ├── advanced │ │ ├── customize-serialization-encryption.md │ │ ├── magiconionoptions.md │ │ ├── map-service-endpoints.md │ │ ├── memorypack.md │ │ └── raw-grpc.md │ ├── best-practices │ │ ├── hub-context-pattern.md │ │ └── load-tests.md │ ├── features.md │ ├── filter │ │ ├── client-filter.md │ │ ├── dependency-injection.md │ │ ├── extensibility.md │ │ ├── fundamentals.md │ │ └── streaminghub-filter.md │ ├── fundamentals │ │ ├── aot.md │ │ ├── authentication.md │ │ ├── exceptions-and-status-codes.md │ │ ├── https.md │ │ ├── lifecycle.md │ │ ├── metrics.md │ │ ├── project-structure.md │ │ ├── unary-or-streaminghub.md │ │ └── version-compatibility.md │ ├── index.md │ ├── installation │ │ ├── packages.md │ │ └── unity.md │ ├── integration │ │ ├── blazor.md │ │ ├── dependency-injection.md │ │ ├── json-transcoding.md │ │ ├── unity-webgl.md │ │ └── unity.md │ ├── license.md │ ├── quickstart-unity.md │ ├── quickstart.md │ ├── release-notes │ │ └── 7.0.md │ ├── resources.md │ ├── source-generator │ │ └── client.md │ ├── streaminghub │ │ ├── call-client.md │ │ ├── client-results.md │ │ ├── define-interface.md │ │ ├── disconnection.md │ │ ├── fundamentals.md │ │ ├── getting-started.md │ │ ├── group-application-managed.md │ │ ├── group-backplane.md │ │ ├── group.md │ │ ├── heartbeat.md │ │ └── server-events.md │ ├── support.md │ ├── supported-platforms.md │ └── unary │ │ ├── fundamentals.md │ │ ├── getting-started.md │ │ ├── metadata.md │ │ └── raw-bytes-response.md ├── docusaurus.config.ts ├── i18n │ ├── ja │ │ ├── code.json │ │ ├── docusaurus-plugin-content-docs │ │ │ ├── current.json │ │ │ └── current │ │ │ │ ├── advanced │ │ │ │ ├── customize-serialization-encryption.md │ │ │ │ ├── map-service-endpoints.md │ │ │ │ └── raw-grpc.md │ │ │ │ ├── best-practices │ │ │ │ ├── hub-context-pattern.md │ │ │ │ └── load-tests.md │ │ │ │ ├── features.md │ │ │ │ ├── filter │ │ │ │ ├── client-filter.md │ │ │ │ ├── extensibility.md │ │ │ │ ├── fundamentals.md │ │ │ │ └── streaminghub-filter.md │ │ │ │ ├── fundamentals │ │ │ │ ├── aot.md │ │ │ │ ├── authentication.md │ │ │ │ ├── exceptions-and-status-codes.md │ │ │ │ ├── https.md │ │ │ │ ├── lifecycle.md │ │ │ │ ├── metrics.md │ │ │ │ ├── project-structure.md │ │ │ │ ├── unary-or-streaminghub.md │ │ │ │ └── version-compatibility.md │ │ │ │ ├── index.md │ │ │ │ ├── installation │ │ │ │ ├── packages.md │ │ │ │ └── unity.md │ │ │ │ ├── integration │ │ │ │ ├── blazor.md │ │ │ │ ├── dependency-injection.md │ │ │ │ ├── json-transcoding.md │ │ │ │ ├── unity-webgl.md │ │ │ │ └── unity.md │ │ │ │ ├── license.md │ │ │ │ ├── quickstart-unity.md │ │ │ │ ├── quickstart.md │ │ │ │ ├── release-notes │ │ │ │ └── 7.0.md │ │ │ │ ├── resources.md │ │ │ │ ├── source-generator │ │ │ │ └── client.md │ │ │ │ ├── streaminghub │ │ │ │ ├── call-client.md │ │ │ │ ├── client-results.md │ │ │ │ ├── define-interface.md │ │ │ │ ├── disconnection.md │ │ │ │ ├── fundamentals.md │ │ │ │ ├── getting-started.md │ │ │ │ ├── group-application-managed.md │ │ │ │ ├── group-backplane.md │ │ │ │ ├── group.md │ │ │ │ ├── heartbeat.md │ │ │ │ └── server-events.md │ │ │ │ ├── support.md │ │ │ │ ├── supported-platforms.md │ │ │ │ └── unary │ │ │ │ ├── fundamentals.md │ │ │ │ ├── getting-started.md │ │ │ │ ├── metadata.md │ │ │ │ └── raw-bytes-response.md │ │ ├── docusaurus-plugin-content-pages │ │ │ └── .gitkeep │ │ └── docusaurus-theme-classic │ │ │ ├── footer.json │ │ │ └── navbar.json │ └── ko │ │ ├── code.json │ │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── advanced │ │ │ ├── customize-serialization-encryption.md │ │ │ ├── magiconionoptions.md │ │ │ ├── map-service-endpoints.md │ │ │ ├── memorypack.md │ │ │ └── raw-grpc.md │ │ │ ├── features.md │ │ │ ├── filter │ │ │ ├── client-filter.md │ │ │ ├── dependency-injection.md │ │ │ ├── extensibility.md │ │ │ ├── fundamentals.md │ │ │ └── streaminghub-filter.md │ │ │ ├── fundamentals │ │ │ ├── aot.md │ │ │ ├── authentication.md │ │ │ ├── exceptions-and-status-codes.md │ │ │ ├── https.md │ │ │ ├── lifecycle.md │ │ │ ├── metrics.md │ │ │ ├── project-structure.md │ │ │ ├── unary-or-streaminghub.md │ │ │ └── version-compatibility.md │ │ │ ├── index.md │ │ │ ├── installation │ │ │ ├── packages.md │ │ │ └── unity.md │ │ │ ├── integration │ │ │ ├── blazor.md │ │ │ ├── dependency-injection.md │ │ │ ├── json-transcoding.md │ │ │ ├── unity-webgl.md │ │ │ └── unity.md │ │ │ ├── license.md │ │ │ ├── quickstart-unity.md │ │ │ ├── quickstart.md │ │ │ ├── release-notes │ │ │ └── 7.0.md │ │ │ ├── source-generator │ │ │ └── client.md │ │ │ ├── streaminghub │ │ │ ├── call-client.md │ │ │ ├── client-results.md │ │ │ ├── define-interface.md │ │ │ ├── disconnection.md │ │ │ ├── fundamentals.md │ │ │ ├── getting-started.md │ │ │ ├── group-application-managed.md │ │ │ ├── group-backplane.md │ │ │ ├── group.md │ │ │ ├── heartbeat.md │ │ │ └── server-events.md │ │ │ ├── support.md │ │ │ ├── supported-platforms.md │ │ │ └── unary │ │ │ ├── fundamentals.md │ │ │ ├── getting-started.md │ │ │ ├── metadata.md │ │ │ └── raw-bytes-response.md │ │ ├── docusaurus-plugin-content-pages │ │ └── .gitkeep │ │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── package.json ├── pnpm-lock.yaml ├── sidebars.ts ├── src │ ├── components │ │ └── AdditionalHeaderMetaRow.tsx │ ├── css │ │ └── custom.css │ ├── data │ │ └── resources.tsx │ ├── pages │ │ └── .gitkeep │ ├── remark │ │ └── additionalHeaderMetaRow.js │ └── theme │ │ ├── MDXComponents.js │ │ ├── MDXContent │ │ ├── index.tsx │ │ └── styles.module.css │ │ └── NavbarItem │ │ └── index.tsx ├── static │ ├── .nojekyll │ └── img │ │ ├── OG_img_en.png │ │ ├── docs │ │ ├── fig-filter-with-middleware.png │ │ ├── fig-group-broadcast.png │ │ ├── fig-hub-context-01.png │ │ ├── fig-quickstart-unity-hub.png │ │ ├── fig-quickstart-unity-installedpackages.png │ │ ├── fig-quickstart-unity-localpackage.png │ │ ├── fig-quickstart-unity-nuget-magiconionclient.png │ │ ├── fig-quickstart-unity-nuget-systemiopipelines.png │ │ ├── fig-quickstart-unity-nugetforunity.png │ │ ├── fig-quickstart-unity-packagize.png │ │ ├── fig-quickstart-unity-server-sln.png │ │ ├── fig-quickstart-unity-slnmerge.png │ │ ├── fig-quickstart-unity-unarydebuglog.png │ │ ├── fig-quickstart-unity-upm-magiconion.png │ │ ├── fig-quickstart-unity-upm-slnmerge.png │ │ ├── fig-quickstart-unity-yaha.png │ │ ├── fig-technology-stack.png │ │ ├── fig-unary-streaminghub.png │ │ └── fig-usecase.png │ │ ├── docusaurus-social-card.jpg │ │ ├── docusaurus.png │ │ ├── favicon.ico │ │ ├── icon.png │ │ ├── logo.png │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg └── tsconfig.json ├── opensource.snk ├── perf ├── BenchmarkApp │ ├── PerformanceTest.Client │ │ ├── IScenario.cs │ │ ├── PerformanceTest.Client.csproj │ │ ├── PerformanceTestRunningContext.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── ScenarioType.cs │ │ ├── SerializationType.cs │ │ ├── ServerStreamingScenario.cs │ │ ├── StreamingHubLargePayloadScenario.cs │ │ ├── StreamingHubScenario.cs │ │ ├── UnaryLargePayloadScenario.cs │ │ └── UnaryScenario.cs │ ├── PerformanceTest.Server │ │ ├── KestrelHelperExtensions.cs │ │ ├── PerfTestControlService.cs │ │ ├── PerfTestHub.cs │ │ ├── PerfTestService.cs │ │ ├── PerformanceTest.Server.csproj │ │ ├── ProfileService.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── StartupService.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── PerformanceTest.Shared │ │ ├── ApplicationInformation.cs │ │ ├── Certs │ │ │ ├── README.md │ │ │ ├── ca.pem │ │ │ ├── client.pfx │ │ │ ├── server1.key │ │ │ ├── server1.pem │ │ │ └── server1.pfx │ │ ├── ComplexResponse.cs │ │ ├── IPerfTestControlService.cs │ │ ├── IPerfTestHub.cs │ │ ├── IPerfTestService.cs │ │ ├── MagicOnionIsLatestAttirbute.cs │ │ ├── PerformanceTest.Shared.csproj │ │ ├── Reporting │ │ │ ├── DatadogMetricsRecorder.cs │ │ │ ├── HardwarePerformanceReporter.cs │ │ │ ├── MetricsTagCache.cs │ │ │ └── OutlinerHelper.cs │ │ ├── SimpleRequest.cs │ │ └── SystemTimeProvider.cs │ ├── README.md │ └── configs │ │ ├── issue.yaml │ │ ├── schedule.yaml │ │ ├── schedule_memorypack.yaml │ │ ├── schedule_messagepack.yaml │ │ ├── schedule_serverstreaming.yaml │ │ ├── workflow_dispatch_memorypack_h2.yaml │ │ ├── workflow_dispatch_memorypack_h2c.yaml │ │ ├── workflow_dispatch_memorypack_h3.yaml │ │ ├── workflow_dispatch_messagepack_h2.yaml │ │ ├── workflow_dispatch_messagepack_h2_nugetclient.yaml │ │ ├── workflow_dispatch_messagepack_h2_nugetserver.yaml │ │ ├── workflow_dispatch_messagepack_h2c.yaml │ │ ├── workflow_dispatch_messagepack_h2c_eastus.yaml │ │ ├── workflow_dispatch_messagepack_h2c_nugetclient.yaml │ │ ├── workflow_dispatch_messagepack_h2c_nugetserver.yaml │ │ ├── workflow_dispatch_messagepack_h2c_serverstreaming.yaml │ │ ├── workflow_dispatch_messagepack_h3.yaml │ │ ├── workflow_dispatch_messagepack_h3_nugetclient.yaml │ │ └── workflow_dispatch_messagepack_h3_nugetserver.yaml ├── Microbenchmark │ └── Microbenchmark.Client │ │ ├── .gitignore │ │ ├── ChannelAsyncStreamReader.cs │ │ ├── ChannelClientStreamWriter.cs │ │ ├── HubMethodBenchmarks.cs │ │ ├── HubReceiverBroadcastBenchmarks.cs │ │ ├── Microbenchmark.Client.csproj │ │ ├── Program.cs │ │ └── StreamingHubClientTestHelper.cs └── SourceGeneratorPerf │ └── SourceGeneratorPerf │ ├── CompilationHelper.cs │ ├── Program.cs │ └── SourceGeneratorPerf.csproj ├── samples ├── ChatApp │ ├── .config │ │ └── dotnet-tools.json │ ├── .dockerignore │ ├── .gitattributes │ ├── ChatApp.Console │ │ ├── ChatApp.Console.csproj │ │ └── Program.cs │ ├── ChatApp.Server.sln │ ├── ChatApp.Server │ │ ├── ChatApp.Server.csproj │ │ ├── ChatHub.cs │ │ ├── ChatService.cs │ │ ├── Dockerfile │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── server.crt │ │ ├── server.csr │ │ └── server.key │ ├── ChatApp.Shared │ │ ├── ChatApp.Shared.Unity.asmdef │ │ ├── ChatApp.Shared.Unity.asmdef.meta │ │ ├── ChatApp.Shared.csproj │ │ ├── ChatApp.Shared.csproj.meta │ │ ├── Directory.Build.props │ │ ├── Directory.Build.props.meta │ │ ├── Directory.Build.targets │ │ ├── Directory.Build.targets.meta │ │ ├── Hubs.meta │ │ ├── Hubs │ │ │ ├── IChatHub.cs │ │ │ ├── IChatHub.cs.meta │ │ │ ├── IChatHubReceiver.cs │ │ │ └── IChatHubReceiver.cs.meta │ │ ├── MessagePackObjects.meta │ │ ├── MessagePackObjects │ │ │ ├── Requests.cs │ │ │ ├── Requests.cs.meta │ │ │ ├── Responses.cs │ │ │ └── Responses.cs.meta │ │ ├── Services.meta │ │ ├── Services │ │ │ ├── IChatService.cs │ │ │ └── IChatService.cs.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── ChatApp.Unity │ │ ├── .gitignore │ │ ├── .vsconfig │ │ ├── Assets │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── BatchBuild.cs │ │ │ │ ├── BatchBuild.cs.meta │ │ │ │ ├── BuildeIos.cs │ │ │ │ ├── BuildeIos.cs.meta │ │ │ │ ├── SlnMerge.cs │ │ │ │ └── SlnMerge.cs.meta │ │ │ ├── NuGet.config │ │ │ ├── NuGet.config.meta │ │ │ ├── Packages.meta │ │ │ ├── Packages │ │ │ │ ├── Grpc.Core.Api.2.66.0.meta │ │ │ │ ├── Grpc.Core.Api.2.66.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.66.0.meta │ │ │ │ ├── Grpc.Net.Client.2.66.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.66.0.meta │ │ │ │ ├── Grpc.Net.Common.2.66.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 │ │ │ │ ├── MagicOnion.Abstractions.7.0.0-preview.10-ci-20241223-092158.meta │ │ │ │ ├── MagicOnion.Abstractions.7.0.0-preview.10-ci-20241223-092158 │ │ │ │ │ ├── Icon.png │ │ │ │ │ ├── Icon.png.meta │ │ │ │ │ ├── MagicOnion.Abstractions.nuspec │ │ │ │ │ ├── MagicOnion.Abstractions.nuspec.meta │ │ │ │ │ ├── lib.meta │ │ │ │ │ └── lib │ │ │ │ │ │ ├── netstandard2.0.meta │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ ├── MagicOnion.Abstractions.dll │ │ │ │ │ │ ├── MagicOnion.Abstractions.dll.meta │ │ │ │ │ │ ├── MagicOnion.Abstractions.xml │ │ │ │ │ │ └── MagicOnion.Abstractions.xml.meta │ │ │ │ ├── MagicOnion.Client.7.0.0-preview.10-ci-20241223-092158.meta │ │ │ │ ├── MagicOnion.Client.7.0.0-preview.10-ci-20241223-092158 │ │ │ │ │ ├── Icon.png │ │ │ │ │ ├── Icon.png.meta │ │ │ │ │ ├── MagicOnion.Client.nuspec │ │ │ │ │ ├── MagicOnion.Client.nuspec.meta │ │ │ │ │ ├── analyzers.meta │ │ │ │ │ ├── analyzers │ │ │ │ │ │ ├── dotnet.meta │ │ │ │ │ │ └── dotnet │ │ │ │ │ │ │ ├── roslyn4.3.meta │ │ │ │ │ │ │ └── roslyn4.3 │ │ │ │ │ │ │ ├── cs.meta │ │ │ │ │ │ │ └── cs │ │ │ │ │ │ │ ├── MagicOnion.Client.SourceGenerator.dll │ │ │ │ │ │ │ └── MagicOnion.Client.SourceGenerator.dll.meta │ │ │ │ │ ├── lib.meta │ │ │ │ │ └── lib │ │ │ │ │ │ ├── netstandard2.1.meta │ │ │ │ │ │ └── netstandard2.1 │ │ │ │ │ │ ├── MagicOnion.Client.dll │ │ │ │ │ │ ├── MagicOnion.Client.dll.meta │ │ │ │ │ │ ├── MagicOnion.Client.xml │ │ │ │ │ │ └── MagicOnion.Client.xml.meta │ │ │ │ ├── MagicOnion.Serialization.MessagePack.7.0.0-preview.10-ci-20241223-092158.meta │ │ │ │ ├── MagicOnion.Serialization.MessagePack.7.0.0-preview.10-ci-20241223-092158 │ │ │ │ │ ├── Icon.png │ │ │ │ │ ├── Icon.png.meta │ │ │ │ │ ├── MagicOnion.Serialization.MessagePack.nuspec │ │ │ │ │ ├── MagicOnion.Serialization.MessagePack.nuspec.meta │ │ │ │ │ ├── lib.meta │ │ │ │ │ └── lib │ │ │ │ │ │ ├── netstandard2.1.meta │ │ │ │ │ │ └── netstandard2.1 │ │ │ │ │ │ ├── MagicOnion.Serialization.MessagePack.dll │ │ │ │ │ │ ├── MagicOnion.Serialization.MessagePack.dll.meta │ │ │ │ │ │ ├── MagicOnion.Serialization.MessagePack.xml │ │ │ │ │ │ └── MagicOnion.Serialization.MessagePack.xml.meta │ │ │ │ ├── MagicOnion.Shared.7.0.0-preview.10-ci-20241223-092158.meta │ │ │ │ ├── MagicOnion.Shared.7.0.0-preview.10-ci-20241223-092158 │ │ │ │ │ ├── Icon.png │ │ │ │ │ ├── Icon.png.meta │ │ │ │ │ ├── MagicOnion.Shared.nuspec │ │ │ │ │ ├── MagicOnion.Shared.nuspec.meta │ │ │ │ │ ├── lib.meta │ │ │ │ │ └── lib │ │ │ │ │ │ ├── netstandard2.1.meta │ │ │ │ │ │ └── netstandard2.1 │ │ │ │ │ │ ├── MagicOnion.Shared.dll │ │ │ │ │ │ ├── MagicOnion.Shared.dll.meta │ │ │ │ │ │ ├── MagicOnion.Shared.xml │ │ │ │ │ │ └── MagicOnion.Shared.xml.meta │ │ │ │ ├── MessagePack.3.1.1.meta │ │ │ │ ├── MessagePack.3.1.1 │ │ │ │ │ ├── .signature.p7s │ │ │ │ │ ├── MessagePack.nuspec │ │ │ │ │ ├── MessagePack.nuspec.meta │ │ │ │ │ ├── lib.meta │ │ │ │ │ └── lib │ │ │ │ │ │ ├── netstandard2.1.meta │ │ │ │ │ │ └── netstandard2.1 │ │ │ │ │ │ ├── MessagePack.dll │ │ │ │ │ │ ├── MessagePack.dll.meta │ │ │ │ │ │ ├── MessagePack.xml │ │ │ │ │ │ └── MessagePack.xml.meta │ │ │ │ ├── MessagePack.Annotations.3.1.1.meta │ │ │ │ ├── MessagePack.Annotations.3.1.1 │ │ │ │ │ ├── .signature.p7s │ │ │ │ │ ├── MessagePack.Annotations.nuspec │ │ │ │ │ ├── MessagePack.Annotations.nuspec.meta │ │ │ │ │ ├── lib.meta │ │ │ │ │ └── lib │ │ │ │ │ │ ├── netstandard2.0.meta │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ ├── MessagePack.Annotations.dll │ │ │ │ │ │ ├── MessagePack.Annotations.dll.meta │ │ │ │ │ │ ├── MessagePack.Annotations.xml │ │ │ │ │ │ └── MessagePack.Annotations.xml.meta │ │ │ │ ├── MessagePackAnalyzer.3.1.1.meta │ │ │ │ ├── MessagePackAnalyzer.3.1.1 │ │ │ │ │ ├── .signature.p7s │ │ │ │ │ ├── MessagePackAnalyzer.nuspec │ │ │ │ │ ├── MessagePackAnalyzer.nuspec.meta │ │ │ │ │ ├── analyzers.meta │ │ │ │ │ └── analyzers │ │ │ │ │ │ ├── roslyn4.3.meta │ │ │ │ │ │ └── roslyn4.3 │ │ │ │ │ │ ├── cs.meta │ │ │ │ │ │ └── cs │ │ │ │ │ │ ├── MessagePack.Analyzers.CodeFixes.dll │ │ │ │ │ │ ├── MessagePack.Analyzers.CodeFixes.dll.meta │ │ │ │ │ │ ├── MessagePack.SourceGenerator.dll │ │ │ │ │ │ └── MessagePack.SourceGenerator.dll.meta │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.8.0.0.meta │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.8.0.0 │ │ │ │ │ ├── .signature.p7s │ │ │ │ │ ├── Icon.png │ │ │ │ │ ├── Icon.png.meta │ │ │ │ │ ├── LICENSE.TXT │ │ │ │ │ ├── LICENSE.TXT.meta │ │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.nuspec │ │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.nuspec.meta │ │ │ │ │ ├── PACKAGE.md │ │ │ │ │ ├── PACKAGE.md.meta │ │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT.meta │ │ │ │ │ ├── buildTransitive.meta │ │ │ │ │ ├── buildTransitive │ │ │ │ │ │ ├── net461.meta │ │ │ │ │ │ ├── net461 │ │ │ │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.targets │ │ │ │ │ │ │ └── Microsoft.Bcl.AsyncInterfaces.targets.meta │ │ │ │ │ │ ├── net462.meta │ │ │ │ │ │ └── net462 │ │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ │ └── _._.meta │ │ │ │ │ ├── lib.meta │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── netstandard2.1.meta │ │ │ │ │ │ └── netstandard2.1 │ │ │ │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll.meta │ │ │ │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.xml │ │ │ │ │ │ │ └── Microsoft.Bcl.AsyncInterfaces.xml.meta │ │ │ │ │ ├── useSharedDesignerContext.txt │ │ │ │ │ └── useSharedDesignerContext.txt.meta │ │ │ │ ├── Microsoft.Bcl.TimeProvider.8.0.1.meta │ │ │ │ ├── Microsoft.Bcl.TimeProvider.8.0.1 │ │ │ │ │ ├── .signature.p7s │ │ │ │ │ ├── Icon.png │ │ │ │ │ ├── Icon.png.meta │ │ │ │ │ ├── LICENSE.TXT │ │ │ │ │ ├── LICENSE.TXT.meta │ │ │ │ │ ├── Microsoft.Bcl.TimeProvider.nuspec │ │ │ │ │ ├── Microsoft.Bcl.TimeProvider.nuspec.meta │ │ │ │ │ ├── PACKAGE.md │ │ │ │ │ ├── PACKAGE.md.meta │ │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT.meta │ │ │ │ │ ├── buildTransitive.meta │ │ │ │ │ ├── buildTransitive │ │ │ │ │ │ ├── net461.meta │ │ │ │ │ │ ├── net461 │ │ │ │ │ │ │ ├── Microsoft.Bcl.TimeProvider.targets │ │ │ │ │ │ │ └── Microsoft.Bcl.TimeProvider.targets.meta │ │ │ │ │ │ ├── net462.meta │ │ │ │ │ │ ├── net462 │ │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ │ └── _._.meta │ │ │ │ │ │ ├── net6.0.meta │ │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ │ └── _._.meta │ │ │ │ │ │ ├── netcoreapp2.0.meta │ │ │ │ │ │ └── netcoreapp2.0 │ │ │ │ │ │ │ ├── Microsoft.Bcl.TimeProvider.targets │ │ │ │ │ │ │ └── Microsoft.Bcl.TimeProvider.targets.meta │ │ │ │ │ ├── lib.meta │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── netstandard2.0.meta │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ ├── Microsoft.Bcl.TimeProvider.dll │ │ │ │ │ │ │ ├── Microsoft.Bcl.TimeProvider.dll.meta │ │ │ │ │ │ │ ├── Microsoft.Bcl.TimeProvider.xml │ │ │ │ │ │ │ └── Microsoft.Bcl.TimeProvider.xml.meta │ │ │ │ │ ├── useSharedDesignerContext.txt │ │ │ │ │ └── useSharedDesignerContext.txt.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 │ │ │ │ │ ├── buildTransitive.meta │ │ │ │ │ ├── buildTransitive │ │ │ │ │ │ ├── netcoreapp2.0.meta │ │ │ │ │ │ ├── netcoreapp2.0 │ │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.targets │ │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Abstractions.targets.meta │ │ │ │ │ │ ├── netcoreapp3.1.meta │ │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ │ └── _._.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 │ │ │ │ ├── Microsoft.NET.StringTools.17.11.4.meta │ │ │ │ ├── Microsoft.NET.StringTools.17.11.4 │ │ │ │ │ ├── .signature.p7s │ │ │ │ │ ├── MSBuild-NuGet-Icon.png │ │ │ │ │ ├── MSBuild-NuGet-Icon.png.meta │ │ │ │ │ ├── Microsoft.NET.StringTools.nuspec │ │ │ │ │ ├── Microsoft.NET.StringTools.nuspec.meta │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.meta │ │ │ │ │ ├── lib.meta │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── netstandard2.0.meta │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ ├── Microsoft.NET.StringTools.dll │ │ │ │ │ │ │ ├── Microsoft.NET.StringTools.dll.meta │ │ │ │ │ │ │ ├── Microsoft.NET.StringTools.xml │ │ │ │ │ │ │ └── Microsoft.NET.StringTools.xml.meta │ │ │ │ │ ├── notices.meta │ │ │ │ │ └── notices │ │ │ │ │ │ ├── THIRDPARTYNOTICES.txt │ │ │ │ │ │ └── THIRDPARTYNOTICES.txt.meta │ │ │ │ ├── System.Collections.Immutable.8.0.0.meta │ │ │ │ ├── System.Collections.Immutable.8.0.0 │ │ │ │ │ ├── .signature.p7s │ │ │ │ │ ├── Icon.png │ │ │ │ │ ├── Icon.png.meta │ │ │ │ │ ├── LICENSE.TXT │ │ │ │ │ ├── LICENSE.TXT.meta │ │ │ │ │ ├── PACKAGE.md │ │ │ │ │ ├── PACKAGE.md.meta │ │ │ │ │ ├── System.Collections.Immutable.nuspec │ │ │ │ │ ├── System.Collections.Immutable.nuspec.meta │ │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT.meta │ │ │ │ │ ├── buildTransitive.meta │ │ │ │ │ ├── buildTransitive │ │ │ │ │ │ ├── net461.meta │ │ │ │ │ │ ├── net461 │ │ │ │ │ │ │ ├── System.Collections.Immutable.targets │ │ │ │ │ │ │ └── System.Collections.Immutable.targets.meta │ │ │ │ │ │ ├── net462.meta │ │ │ │ │ │ ├── net462 │ │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ │ └── _._.meta │ │ │ │ │ │ ├── net6.0.meta │ │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ │ └── _._.meta │ │ │ │ │ │ ├── netcoreapp2.0.meta │ │ │ │ │ │ └── netcoreapp2.0 │ │ │ │ │ │ │ ├── System.Collections.Immutable.targets │ │ │ │ │ │ │ └── System.Collections.Immutable.targets.meta │ │ │ │ │ ├── lib.meta │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── netstandard2.0.meta │ │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ │ ├── System.Collections.Immutable.dll │ │ │ │ │ │ │ ├── System.Collections.Immutable.dll.meta │ │ │ │ │ │ │ ├── System.Collections.Immutable.xml │ │ │ │ │ │ │ └── System.Collections.Immutable.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 │ │ │ │ │ ├── buildTransitive.meta │ │ │ │ │ ├── buildTransitive │ │ │ │ │ │ ├── netcoreapp2.0.meta │ │ │ │ │ │ ├── netcoreapp2.0 │ │ │ │ │ │ │ ├── System.Diagnostics.DiagnosticSource.targets │ │ │ │ │ │ │ └── System.Diagnostics.DiagnosticSource.targets.meta │ │ │ │ │ │ ├── netcoreapp3.1.meta │ │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ │ └── _._.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 │ │ │ │ │ ├── buildTransitive.meta │ │ │ │ │ ├── buildTransitive │ │ │ │ │ │ ├── net461.meta │ │ │ │ │ │ ├── net461 │ │ │ │ │ │ │ ├── System.IO.Pipelines.targets │ │ │ │ │ │ │ └── System.IO.Pipelines.targets.meta │ │ │ │ │ │ ├── net462.meta │ │ │ │ │ │ ├── net462 │ │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ │ └── _._.meta │ │ │ │ │ │ ├── net6.0.meta │ │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ │ └── _._.meta │ │ │ │ │ │ ├── netcoreapp2.0.meta │ │ │ │ │ │ └── netcoreapp2.0 │ │ │ │ │ │ │ ├── System.IO.Pipelines.targets │ │ │ │ │ │ │ └── System.IO.Pipelines.targets.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 │ │ │ │ │ ├── buildTransitive.meta │ │ │ │ │ ├── buildTransitive │ │ │ │ │ │ ├── netcoreapp2.0.meta │ │ │ │ │ │ ├── netcoreapp2.0 │ │ │ │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.targets │ │ │ │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.targets.meta │ │ │ │ │ │ ├── netcoreapp3.1.meta │ │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ │ └── _._.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 │ │ │ │ ├── System.Threading.Channels.8.0.0.meta │ │ │ │ └── System.Threading.Channels.8.0.0 │ │ │ │ │ ├── .signature.p7s │ │ │ │ │ ├── Icon.png │ │ │ │ │ ├── Icon.png.meta │ │ │ │ │ ├── LICENSE.TXT │ │ │ │ │ ├── LICENSE.TXT.meta │ │ │ │ │ ├── PACKAGE.md │ │ │ │ │ ├── PACKAGE.md.meta │ │ │ │ │ ├── System.Threading.Channels.nuspec │ │ │ │ │ ├── System.Threading.Channels.nuspec.meta │ │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT.meta │ │ │ │ │ ├── buildTransitive.meta │ │ │ │ │ ├── buildTransitive │ │ │ │ │ ├── net461.meta │ │ │ │ │ ├── net461 │ │ │ │ │ │ ├── System.Threading.Channels.targets │ │ │ │ │ │ └── System.Threading.Channels.targets.meta │ │ │ │ │ ├── net462.meta │ │ │ │ │ ├── net462 │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ └── _._.meta │ │ │ │ │ ├── net6.0.meta │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ └── _._.meta │ │ │ │ │ ├── netcoreapp2.0.meta │ │ │ │ │ └── netcoreapp2.0 │ │ │ │ │ │ ├── System.Threading.Channels.targets │ │ │ │ │ │ └── System.Threading.Channels.targets.meta │ │ │ │ │ ├── lib.meta │ │ │ │ │ ├── lib │ │ │ │ │ ├── netstandard2.1.meta │ │ │ │ │ └── netstandard2.1 │ │ │ │ │ │ ├── System.Threading.Channels.dll │ │ │ │ │ │ ├── System.Threading.Channels.dll.meta │ │ │ │ │ │ ├── System.Threading.Channels.xml │ │ │ │ │ │ └── System.Threading.Channels.xml.meta │ │ │ │ │ ├── useSharedDesignerContext.txt │ │ │ │ │ └── useSharedDesignerContext.txt.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── BillingMode.json │ │ │ │ └── BillingMode.json.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── ChatScene.unity │ │ │ │ └── ChatScene.unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── ChatComponent.cs │ │ │ │ ├── ChatComponent.cs.meta │ │ │ │ ├── InitialSettings.cs │ │ │ │ ├── InitialSettings.cs.meta │ │ │ │ ├── SystemConstants.cs │ │ │ │ └── SystemConstants.cs.meta │ │ │ ├── StreamingAssets.meta │ │ │ ├── StreamingAssets │ │ │ │ ├── server.crt │ │ │ │ └── server.crt.meta │ │ │ ├── packages.config │ │ │ └── packages.config.meta │ │ ├── ChatApp.Unity.sln.mergesettings │ │ ├── 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 │ │ │ ├── Packages │ │ │ └── com.unity.services.core │ │ │ │ └── Settings.json │ │ │ ├── Physics2DSettings.asset │ │ │ ├── PresetManager.asset │ │ │ ├── ProjectSettings.asset │ │ │ ├── ProjectVersion.txt │ │ │ ├── QualitySettings.asset │ │ │ ├── SceneTemplateSettings.json │ │ │ ├── TagManager.asset │ │ │ ├── TimeManager.asset │ │ │ ├── UnityConnectSettings.asset │ │ │ ├── VFXManager.asset │ │ │ ├── VersionControlSettings.asset │ │ │ └── XRSettings.asset │ ├── README.md │ ├── docker_push.bat │ ├── k8s │ │ ├── nlb_acm.yaml │ │ └── nlb_tcp.yaml │ └── openssl_gen.sh ├── JsonTranscoding │ ├── JsonTranscodingSample.Server │ │ ├── JsonTranscodingSample.Server.csproj │ │ ├── MyFirstHub.cs │ │ ├── MyFirstService.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── SwaggerJwtExtention.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── JsonTranscodingSample.Shared │ │ ├── IMyFirstHub.cs │ │ ├── IMyFirstService.cs │ │ └── JsonTranscodingSample.Shared.csproj └── JwtAuthentication │ ├── JwtAuthApp.Client │ ├── JwtAuthApp.Client.csproj │ ├── Program.cs │ ├── __IAccountService_GeneratedClient__.cs │ └── __IGreeterService_GeneratedClient__.cs │ ├── JwtAuthApp.Server │ ├── Authentication │ │ └── JwtTokenService.cs │ ├── Hubs │ │ └── TimerHub.cs │ ├── JwtAuthApp.Server.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── AccountService.cs │ │ └── GreeterService.cs │ └── appsettings.json │ └── JwtAuthApp.Shared │ ├── IAccountService.cs │ ├── IGreeterService.cs │ ├── ITimerHub.cs │ └── JwtAuthApp.Shared.csproj ├── src ├── Directory.Build.props ├── MagicOnion.Abstractions │ ├── Client │ │ └── IResponseContext.cs │ ├── ClientStreamingResult.cs │ ├── CompilerServices │ │ └── AsyncUnaryResultMethodBuilder.cs │ ├── DuplexStreamingResult.cs │ ├── DynamicArgumentTuple.cs │ ├── DynamicArgumentTuple.tt │ ├── GenerateDefineDebugAttribute.cs │ ├── GenerateIfDirectiveAttribute.cs │ ├── IService.cs │ ├── IStreamingHub.cs │ ├── IgnoreAttribute.cs │ ├── Internal │ │ ├── Box.cs │ │ ├── IAsyncGrpcCallWrapper.cs │ │ └── RawBytesBox.cs │ ├── InternalsVisibleTo.cs │ ├── MagicOnion.Abstractions.csproj │ ├── PublicAPI.Shipped.txt │ ├── PublicAPI.Unshipped.txt │ ├── Serialization │ │ └── MagicOnionSerializer.cs │ ├── Server │ │ └── Hubs │ │ │ └── MethodIdAttribute.cs │ ├── ServerStreamingResult.cs │ └── UnaryResult.cs ├── MagicOnion.Client.SourceGenerator │ ├── CodeAnalysis │ │ ├── IMagicOnionServiceInfo.cs │ │ ├── MagicOnionDiagnosticDescriptors.cs │ │ ├── MagicOnionMethodParameterInfo.cs │ │ ├── MagicOnionServiceCollection.cs │ │ ├── MagicOnionServiceInfo.cs │ │ ├── MagicOnionStreamingHubInfo.cs │ │ ├── MagicOnionTypeInfo.cs │ │ ├── MethodCollector.cs │ │ ├── MethodType.cs │ │ ├── ReferenceSymbols.cs │ │ ├── SerializationFormatterNameMapper.cs │ │ ├── SerializationInfo.cs │ │ └── SerializationInfoCollector.cs │ ├── CodeGen │ │ ├── Extensions │ │ │ ├── MagicOnionMethodParameterInfoExtensions.cs │ │ │ └── MagicOnionServiceInfoExtensions.cs │ │ ├── ISerializerFormatterGenerator.cs │ │ ├── MagicOnionInitializerGenerator.cs │ │ ├── MemoryPack │ │ │ └── MemoryPackFormatterRegistrationGenerator.cs │ │ ├── MessagePack │ │ │ ├── MessagePackEnumFormatterGenerator.cs │ │ │ └── MessagePackFormatterResolverGenerator.cs │ │ ├── SerializationFormatterCodeGenContext.cs │ │ ├── StaticMagicOnionClientGenerator.cs │ │ └── StaticStreamingHubClientGenerator.cs │ ├── GenerationContext.cs │ ├── Helpers │ │ ├── RoslynExtensions.cs │ │ ├── StringBuilderExtensions.cs │ │ └── TypeExtensions.cs │ ├── Internal │ │ └── FNV1A32.cs │ ├── MagicOnion.Client.SourceGenerator.csproj │ ├── MagicOnionClientSourceGenerator.Emitter.cs │ ├── MagicOnionClientSourceGenerator.Parser.cs │ └── MagicOnionClientSourceGenerator.cs ├── MagicOnion.Client.Unity │ ├── .gitignore │ ├── .vsconfig │ ├── Assets │ │ ├── NuGet.config │ │ ├── NuGet.config.meta │ │ ├── Packages.meta │ │ ├── Packages │ │ │ ├── Grpc.Core.Api.2.66.0.meta │ │ │ ├── Grpc.Core.Api.2.66.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.66.0.meta │ │ │ ├── Grpc.Net.Client.2.66.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.66.0.meta │ │ │ ├── Grpc.Net.Common.2.66.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 │ │ │ ├── MessagePack.3.1.0.meta │ │ │ ├── MessagePack.3.1.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── MessagePack.nuspec │ │ │ │ ├── MessagePack.nuspec.meta │ │ │ │ ├── lib.meta │ │ │ │ └── lib │ │ │ │ │ ├── netstandard2.1.meta │ │ │ │ │ └── netstandard2.1 │ │ │ │ │ ├── MessagePack.dll │ │ │ │ │ ├── MessagePack.dll.meta │ │ │ │ │ ├── MessagePack.xml │ │ │ │ │ └── MessagePack.xml.meta │ │ │ ├── MessagePack.Annotations.3.1.0.meta │ │ │ ├── MessagePack.Annotations.3.1.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── MessagePack.Annotations.nuspec │ │ │ │ ├── MessagePack.Annotations.nuspec.meta │ │ │ │ ├── lib.meta │ │ │ │ └── lib │ │ │ │ │ ├── netstandard2.0.meta │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ ├── MessagePack.Annotations.dll │ │ │ │ │ ├── MessagePack.Annotations.dll.meta │ │ │ │ │ ├── MessagePack.Annotations.xml │ │ │ │ │ └── MessagePack.Annotations.xml.meta │ │ │ ├── MessagePackAnalyzer.3.1.0.meta │ │ │ ├── MessagePackAnalyzer.3.1.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── MessagePackAnalyzer.nuspec │ │ │ │ ├── MessagePackAnalyzer.nuspec.meta │ │ │ │ ├── analyzers.meta │ │ │ │ └── analyzers │ │ │ │ │ ├── roslyn4.3.meta │ │ │ │ │ └── roslyn4.3 │ │ │ │ │ ├── cs.meta │ │ │ │ │ └── cs │ │ │ │ │ ├── MessagePack.Analyzers.CodeFixes.dll │ │ │ │ │ ├── MessagePack.Analyzers.CodeFixes.dll.meta │ │ │ │ │ ├── MessagePack.SourceGenerator.dll │ │ │ │ │ └── MessagePack.SourceGenerator.dll.meta │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.8.0.0.meta │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.8.0.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon.png.meta │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── LICENSE.TXT.meta │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.nuspec │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.nuspec.meta │ │ │ │ ├── PACKAGE.md │ │ │ │ ├── PACKAGE.md.meta │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT.meta │ │ │ │ ├── buildTransitive.meta │ │ │ │ ├── buildTransitive │ │ │ │ │ ├── net461.meta │ │ │ │ │ ├── net461 │ │ │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.targets │ │ │ │ │ │ └── Microsoft.Bcl.AsyncInterfaces.targets.meta │ │ │ │ │ ├── net462.meta │ │ │ │ │ └── net462 │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ └── _._.meta │ │ │ │ ├── lib.meta │ │ │ │ ├── lib │ │ │ │ │ ├── netstandard2.1.meta │ │ │ │ │ └── netstandard2.1 │ │ │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll.meta │ │ │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.xml │ │ │ │ │ │ └── Microsoft.Bcl.AsyncInterfaces.xml.meta │ │ │ │ ├── useSharedDesignerContext.txt │ │ │ │ └── useSharedDesignerContext.txt.meta │ │ │ ├── Microsoft.Bcl.TimeProvider.8.0.1.meta │ │ │ ├── Microsoft.Bcl.TimeProvider.8.0.1 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon.png.meta │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── LICENSE.TXT.meta │ │ │ │ ├── Microsoft.Bcl.TimeProvider.nuspec │ │ │ │ ├── Microsoft.Bcl.TimeProvider.nuspec.meta │ │ │ │ ├── PACKAGE.md │ │ │ │ ├── PACKAGE.md.meta │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT.meta │ │ │ │ ├── buildTransitive.meta │ │ │ │ ├── buildTransitive │ │ │ │ │ ├── net461.meta │ │ │ │ │ ├── net461 │ │ │ │ │ │ ├── Microsoft.Bcl.TimeProvider.targets │ │ │ │ │ │ └── Microsoft.Bcl.TimeProvider.targets.meta │ │ │ │ │ ├── net462.meta │ │ │ │ │ ├── net462 │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ └── _._.meta │ │ │ │ │ ├── net6.0.meta │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ └── _._.meta │ │ │ │ │ ├── netcoreapp2.0.meta │ │ │ │ │ └── netcoreapp2.0 │ │ │ │ │ │ ├── Microsoft.Bcl.TimeProvider.targets │ │ │ │ │ │ └── Microsoft.Bcl.TimeProvider.targets.meta │ │ │ │ ├── lib.meta │ │ │ │ ├── lib │ │ │ │ │ ├── netstandard2.0.meta │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ ├── Microsoft.Bcl.TimeProvider.dll │ │ │ │ │ │ ├── Microsoft.Bcl.TimeProvider.dll.meta │ │ │ │ │ │ ├── Microsoft.Bcl.TimeProvider.xml │ │ │ │ │ │ └── Microsoft.Bcl.TimeProvider.xml.meta │ │ │ │ ├── useSharedDesignerContext.txt │ │ │ │ └── useSharedDesignerContext.txt.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 │ │ │ │ ├── buildTransitive.meta │ │ │ │ ├── buildTransitive │ │ │ │ │ ├── netcoreapp2.0.meta │ │ │ │ │ ├── netcoreapp2.0 │ │ │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.targets │ │ │ │ │ │ └── Microsoft.Extensions.Logging.Abstractions.targets.meta │ │ │ │ │ ├── netcoreapp3.1.meta │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ └── _._.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 │ │ │ ├── Microsoft.NET.StringTools.17.11.4.meta │ │ │ ├── Microsoft.NET.StringTools.17.11.4 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── MSBuild-NuGet-Icon.png │ │ │ │ ├── MSBuild-NuGet-Icon.png.meta │ │ │ │ ├── Microsoft.NET.StringTools.nuspec │ │ │ │ ├── Microsoft.NET.StringTools.nuspec.meta │ │ │ │ ├── README.md │ │ │ │ ├── README.md.meta │ │ │ │ ├── lib.meta │ │ │ │ ├── lib │ │ │ │ │ ├── netstandard2.0.meta │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ ├── Microsoft.NET.StringTools.dll │ │ │ │ │ │ ├── Microsoft.NET.StringTools.dll.meta │ │ │ │ │ │ ├── Microsoft.NET.StringTools.xml │ │ │ │ │ │ └── Microsoft.NET.StringTools.xml.meta │ │ │ │ ├── notices.meta │ │ │ │ └── notices │ │ │ │ │ ├── THIRDPARTYNOTICES.txt │ │ │ │ │ └── THIRDPARTYNOTICES.txt.meta │ │ │ ├── System.Collections.Immutable.8.0.0.meta │ │ │ ├── System.Collections.Immutable.8.0.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon.png.meta │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── LICENSE.TXT.meta │ │ │ │ ├── PACKAGE.md │ │ │ │ ├── PACKAGE.md.meta │ │ │ │ ├── System.Collections.Immutable.nuspec │ │ │ │ ├── System.Collections.Immutable.nuspec.meta │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT.meta │ │ │ │ ├── buildTransitive.meta │ │ │ │ ├── buildTransitive │ │ │ │ │ ├── net461.meta │ │ │ │ │ ├── net461 │ │ │ │ │ │ ├── System.Collections.Immutable.targets │ │ │ │ │ │ └── System.Collections.Immutable.targets.meta │ │ │ │ │ ├── net462.meta │ │ │ │ │ ├── net462 │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ └── _._.meta │ │ │ │ │ ├── net6.0.meta │ │ │ │ │ ├── net6.0 │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ └── _._.meta │ │ │ │ │ ├── netcoreapp2.0.meta │ │ │ │ │ └── netcoreapp2.0 │ │ │ │ │ │ ├── System.Collections.Immutable.targets │ │ │ │ │ │ └── System.Collections.Immutable.targets.meta │ │ │ │ ├── lib.meta │ │ │ │ ├── lib │ │ │ │ │ ├── netstandard2.0.meta │ │ │ │ │ └── netstandard2.0 │ │ │ │ │ │ ├── System.Collections.Immutable.dll │ │ │ │ │ │ ├── System.Collections.Immutable.dll.meta │ │ │ │ │ │ ├── System.Collections.Immutable.xml │ │ │ │ │ │ └── System.Collections.Immutable.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 │ │ │ │ ├── buildTransitive.meta │ │ │ │ ├── buildTransitive │ │ │ │ │ ├── netcoreapp2.0.meta │ │ │ │ │ ├── netcoreapp2.0 │ │ │ │ │ │ ├── System.Diagnostics.DiagnosticSource.targets │ │ │ │ │ │ └── System.Diagnostics.DiagnosticSource.targets.meta │ │ │ │ │ ├── netcoreapp3.1.meta │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ └── _._.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.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 │ │ │ │ ├── buildTransitive.meta │ │ │ │ ├── buildTransitive │ │ │ │ │ ├── netcoreapp2.0.meta │ │ │ │ │ ├── netcoreapp2.0 │ │ │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.targets │ │ │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.targets.meta │ │ │ │ │ ├── netcoreapp3.1.meta │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ │ ├── _._ │ │ │ │ │ │ └── _._.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 │ │ │ ├── System.Threading.Channels.8.0.0.meta │ │ │ └── System.Threading.Channels.8.0.0 │ │ │ │ ├── .signature.p7s │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon.png.meta │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── LICENSE.TXT.meta │ │ │ │ ├── PACKAGE.md │ │ │ │ ├── PACKAGE.md.meta │ │ │ │ ├── System.Threading.Channels.nuspec │ │ │ │ ├── System.Threading.Channels.nuspec.meta │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ │ │ ├── THIRD-PARTY-NOTICES.TXT.meta │ │ │ │ ├── buildTransitive.meta │ │ │ │ ├── buildTransitive │ │ │ │ ├── net461.meta │ │ │ │ ├── net461 │ │ │ │ │ ├── System.Threading.Channels.targets │ │ │ │ │ └── System.Threading.Channels.targets.meta │ │ │ │ ├── net462.meta │ │ │ │ ├── net462 │ │ │ │ │ ├── _._ │ │ │ │ │ └── _._.meta │ │ │ │ ├── net6.0.meta │ │ │ │ ├── net6.0 │ │ │ │ │ ├── _._ │ │ │ │ │ └── _._.meta │ │ │ │ ├── netcoreapp2.0.meta │ │ │ │ └── netcoreapp2.0 │ │ │ │ │ ├── System.Threading.Channels.targets │ │ │ │ │ └── System.Threading.Channels.targets.meta │ │ │ │ ├── lib.meta │ │ │ │ ├── lib │ │ │ │ ├── netstandard2.1.meta │ │ │ │ └── netstandard2.1 │ │ │ │ │ ├── System.Threading.Channels.dll │ │ │ │ │ ├── System.Threading.Channels.dll.meta │ │ │ │ │ ├── System.Threading.Channels.xml │ │ │ │ │ └── System.Threading.Channels.xml.meta │ │ │ │ ├── useSharedDesignerContext.txt │ │ │ │ └── useSharedDesignerContext.txt.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── BillingMode.json │ │ │ └── BillingMode.json.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── Sandbox.unity │ │ │ └── Sandbox.unity.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── PackageExporter.cs │ │ │ │ ├── PackageExporter.cs.meta │ │ │ │ ├── UnityCloudBuildConfiguration.cs │ │ │ │ └── UnityCloudBuildConfiguration.cs.meta │ │ │ ├── MagicOnion.Client.Unity.meta │ │ │ ├── MagicOnion.Client.Unity │ │ │ │ ├── DefaultGrpcChannelProvider.cs │ │ │ │ ├── DefaultGrpcChannelProvider.cs.meta │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ │ ├── GrpcChannelProviderInspector.cs │ │ │ │ │ ├── GrpcChannelProviderInspector.cs.meta │ │ │ │ │ ├── GrpcChannelProviderMonitor.cs │ │ │ │ │ ├── GrpcChannelProviderMonitor.cs.meta │ │ │ │ │ ├── GrpcChannelProviderWindow.cs │ │ │ │ │ ├── GrpcChannelProviderWindow.cs.meta │ │ │ │ │ ├── MagicOnion.Unity.Editor.asmdef │ │ │ │ │ └── MagicOnion.Unity.Editor.asmdef.meta │ │ │ │ ├── GrpcChannelOptionsBag.cs │ │ │ │ ├── GrpcChannelOptionsBag.cs.meta │ │ │ │ ├── GrpcChannelProvider.cs │ │ │ │ ├── GrpcChannelProvider.cs.meta │ │ │ │ ├── GrpcChannelProviderExtensions.GrpcNet.cs │ │ │ │ ├── GrpcChannelProviderExtensions.GrpcNet.cs.meta │ │ │ │ ├── GrpcChannelProviderExtensions.cs │ │ │ │ ├── GrpcChannelProviderExtensions.cs.meta │ │ │ │ ├── GrpcChannelProviderHost.cs │ │ │ │ ├── GrpcChannelProviderHost.cs.meta │ │ │ │ ├── GrpcChannelTarget.cs │ │ │ │ ├── GrpcChannelTarget.cs.meta │ │ │ │ ├── GrpcChannelx.cs │ │ │ │ ├── GrpcChannelx.cs.meta │ │ │ │ ├── GrpcNetClientGrpcChannelProvider.cs │ │ │ │ ├── GrpcNetClientGrpcChannelProvider.cs.meta │ │ │ │ ├── IGrpcChannelProvider.cs │ │ │ │ ├── IGrpcChannelProvider.cs.meta │ │ │ │ ├── MagicOnion.Client.Unity.asmdef │ │ │ │ ├── MagicOnion.Client.Unity.asmdef.meta │ │ │ │ ├── package.json │ │ │ │ └── package.json.meta │ │ │ ├── RuntimeUnitTestToolkit.meta │ │ │ └── RuntimeUnitTestToolkit │ │ │ │ ├── Assert.cs │ │ │ │ ├── Assert.cs.meta │ │ │ │ ├── ChainingAssertion.Unity.cs │ │ │ │ ├── ChainingAssertion.Unity.cs.meta │ │ │ │ ├── UnitTest.unity │ │ │ │ ├── UnitTest.unity.meta │ │ │ │ ├── UnitTestRunner.cs │ │ │ │ ├── UnitTestRunner.cs.meta │ │ │ │ ├── UnitTestSettings.lighting │ │ │ │ └── UnitTestSettings.lighting.meta │ │ ├── packages.config │ │ └── packages.config.meta │ ├── Packages │ │ └── 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 ├── MagicOnion.Client │ ├── ClientFilter.cs │ ├── ClientHeartbeatEvent.cs │ ├── DynamicClient │ │ ├── DynamicClientAssemblyHolder.cs │ │ ├── DynamicClientBuilder.cs │ │ ├── DynamicMagicOnionClientFactoryProvider.cs │ │ ├── DynamicStreamingHubClientBuilder.cs │ │ ├── DynamicStreamingHubClientFactoryProvider.cs │ │ ├── RawMethodInvokerTypes.cs │ │ └── ServiceClientDefinition.cs │ ├── IMagicOnionAwareGrpcChannel.cs │ ├── IMagicOnionClientLogger.cs │ ├── IStreamingHubClient.cs │ ├── IStreamingHubDiagnosticHandler.cs │ ├── Internal │ │ ├── DictionaryExtensions.cs │ │ ├── InterceptInvokeHelper.cs │ │ ├── MagicOnionMethodInvoker.cs │ │ ├── StreamingHubClientHeartbeatManager.cs │ │ └── StreamingHubResponseTaskSource.cs │ ├── MagicOnion.Client.csproj │ ├── MagicOnionClient.cs │ ├── MagicOnionClientBase.cs │ ├── MagicOnionClientFactoryProvider.cs │ ├── MagicOnionClientGenerationAttribute.cs │ ├── PublicAPI.Shipped.txt │ ├── PublicAPI.Unshipped.txt │ ├── RequestContext.cs │ ├── ResponseContext.cs │ ├── ServerHeartbeatEvent.cs │ ├── StreamingHubClient.cs │ ├── StreamingHubClientBase.cs │ ├── StreamingHubClientExtensions.cs │ ├── StreamingHubClientFactoryProvider.cs │ └── packages.json ├── MagicOnion.Internal │ ├── .DO_NOT_SHIP_OR_REFERENCE_THIS_PROJECT │ ├── BroadcasterHelper.cs │ ├── Buffers │ │ └── ArrayPoolBufferWriter.cs │ ├── DangerousDummyNull.cs │ ├── FNV1A32.cs │ ├── GrpcMethodHelper.cs │ ├── MagicOnion.Internal.csproj │ ├── MagicOnionAsyncStreamReader.cs │ ├── MagicOnionClientStreamWriter.cs │ ├── MagicOnionMarshallers.cs │ ├── MagicOnionServerStreamWriter.cs │ ├── Polyfil │ │ ├── RequiresUnreferencedCodeAttribute.cs │ │ └── UnconditionalSuppressMessageAttribute.cs │ ├── Reflection │ │ ├── DynamicAssembly.cs │ │ └── ILGeneratorExtensions.cs │ ├── StreamingHubClientMessageReader.cs │ ├── StreamingHubMessageWriter.cs │ ├── StreamingHubPayload.cs │ ├── StreamingHubPayloadPool.BuiltIn.cs │ ├── StreamingHubPayloadPool.ObjectPool.cs │ └── StreamingHubServerMessageReader.cs ├── MagicOnion.Serialization.MemoryPack │ ├── DynamicArgumentTupleMemoryPackFormatter.cs │ ├── DynamicArgumentTupleMemoryPackFormatter.tt │ ├── MagicOnion.Serialization.MemoryPack.csproj │ ├── MemoryPackMagicOnionSerializer.cs │ └── PreserveAttribute.cs ├── MagicOnion.Serialization.MessagePack │ ├── DynamicArgumentTupleFormatter.cs │ ├── DynamicArgumentTupleFormatter.tt │ ├── MagicOnion.Serialization.MessagePack.csproj │ ├── MessagePackMagicOnionSerializerProvider.cs │ └── UnsafeDirectBlitResolver.cs ├── MagicOnion.Server.JsonTranscoding.Swagger │ ├── DynamicArgumentTupleRequestBodyFilter.cs │ ├── MagicOnion.Server.JsonTranscoding.Swagger.csproj │ ├── MagicOnionGrpcJsonDataContractResolver.cs │ ├── MagicOnionJsonRequestResponseModelMetadata.cs │ ├── MagicOnionJsonTranscodingDescriptionProvider.cs │ ├── MagicOnionJsonTranscodingErrorResponse.cs │ ├── MagicOnionServerJsonTranscodingSwaggerBuilderExtension.cs │ ├── MagicOnionSwaggerGenOptionsExtensions.cs │ └── MagicOnionXmlCommentsOperationFilter.cs ├── MagicOnion.Server.JsonTranscoding │ ├── DynamicArgumentTupleConverterFactory.cs │ ├── MagicOnion.Server.JsonTranscoding.csproj │ ├── MagicOnionJsonTranscodingBuilderExtensions.cs │ ├── MagicOnionJsonTranscodingGrpcMethodBinder.cs │ ├── MagicOnionJsonTranscodingGrpcServiceMethodProvider.cs │ ├── MagicOnionJsonTranscodingMetadata.cs │ ├── MagicOnionJsonTranscodingOptions.cs │ ├── MagicOnionJsonTranscodingServerCallContext.cs │ ├── NonDevelopmentEnvironmentGuard.cs │ └── SystemTextJsonMessageSerializer.cs ├── MagicOnion.Server.Redis │ ├── MagicOnion.Server.Redis.csproj │ └── MagicOnionServerBuilderRedisExtensions.cs ├── MagicOnion.Server │ ├── Binder │ │ ├── IMagicOnionGrpcMethod.cs │ │ ├── IMagicOnionGrpcMethodBinder.cs │ │ ├── IMagicOnionGrpcMethodProvider.cs │ │ ├── Internal │ │ │ ├── DynamicMagicOnionMethodProvider.cs │ │ │ ├── MagicOnionGrpcMethodBinder.cs │ │ │ ├── MagicOnionGrpcMethodHandler.cs │ │ │ └── MagicOnionGrpcServiceMethodProvider.cs │ │ ├── MagicOnionClientStreamingMethod.cs │ │ ├── MagicOnionDuplexStreamingMethod.cs │ │ ├── MagicOnionServerStreamingMethod.cs │ │ ├── MagicOnionStreamingHubConnectMethod.cs │ │ ├── MagicOnionStreamingHubMethod.cs │ │ └── MagicOnionUnaryMethod.cs │ ├── Diagnostics │ │ ├── MagicOnionMetrics.cs │ │ └── MagicOnionServerLog.cs │ ├── Extensions │ │ ├── MagicOnionEndpointRouteBuilderExtensions.cs │ │ ├── MagicOnionServiceEndpointConventionBuilder.cs │ │ ├── MagicOnionServicesExtensions.cs │ │ └── TypeExtensions.cs │ ├── Features │ │ ├── IMagicOnionHeartbeatFeature.cs │ │ └── Internal │ │ │ └── IStreamingHubFeature.cs │ ├── Filters │ │ ├── IMagicOnionFilterFactory.cs │ │ ├── IMagicOnionFilterMetadata.cs │ │ ├── IMagicOnionOrderedFilter.cs │ │ ├── IMagicOnionServiceFilter.cs │ │ ├── IStreamingHubFilter.cs │ │ ├── Internal │ │ │ ├── FilterHelper.cs │ │ │ └── InvokeHelper.cs │ │ ├── MagicOnionFilterDescriptor.cs │ │ └── MagicOnionFilterDescriptorExtensions.cs │ ├── FromServiceFilterAttribute.cs │ ├── FromTypeFilterAttribute.cs │ ├── Hubs │ │ ├── Group.cs │ │ ├── GroupConfigurationAttribute.cs │ │ ├── HeartbeatAttribute.cs │ │ ├── HubGroupRepository.cs │ │ ├── IStreamingHubHeartbeatMetadataProvider.cs │ │ ├── Internal │ │ │ ├── MagicOnionManagedGroupProvider.cs │ │ │ ├── MagicOnionRemoteReceiverWriter.cs │ │ │ ├── MagicOnionRemoteSerializer.cs │ │ │ ├── StreamingHubHandler.cs │ │ │ ├── StreamingHubHeartbeatManager.cs │ │ │ ├── StreamingHubPayloadBuilder.cs │ │ │ └── StreamingHubRegistry.cs │ │ ├── StreamingHub.cs │ │ ├── StreamingHubContext.cs │ │ └── StreamingHubFilterAttribute.cs │ ├── IMagicOnionServerBuilder.cs │ ├── Internal │ │ ├── IServiceBase.cs │ │ ├── IStreamingHubBase.cs │ │ ├── MagicOnionServiceMarker.cs │ │ ├── MagicOnionServicesDiscoverer.cs │ │ ├── MethodHandlerMetadata.cs │ │ ├── QueuedResponseWriter.cs │ │ └── UniqueHashDictionary.cs │ ├── MagicOnion.Server.csproj │ ├── MagicOnionFilterAttribute.cs │ ├── MagicOnionOptions.cs │ ├── MagicOnionServerInternalLogger.cs │ ├── ReturnStatusException.cs │ ├── Service.cs │ ├── ServiceContext.Streaming.cs │ ├── ServiceContext.cs │ ├── StreamingContext.Client.cs │ ├── StreamingContext.Duplex.cs │ └── StreamingContext.Server.cs ├── MagicOnion.Shared │ ├── MagicOnion.Shared.csproj │ ├── MetadataExtensions.cs │ ├── PublicAPI.Shipped.txt │ ├── PublicAPI.Unshipped.txt │ ├── Serialization │ │ └── MagicOnionSerializer.cs │ └── opensource.snk └── MagicOnion │ ├── MagicOnion.csproj │ └── lib │ ├── net6.0 │ └── _._ │ └── net8.0 │ └── _._ └── tests ├── MagicOnion.Abstractions.Tests ├── BoxTest.cs ├── MagicOnion.Abstractions.Tests.csproj ├── UnaryResultNonGenericTest.cs ├── UnaryResultTest.cs └── Usings.cs ├── MagicOnion.Client.NativeAot.Tests ├── IUnaryTestService.cs ├── MSTestSettings.cs ├── MagicOnion.Client.NativeAot.Tests.csproj ├── MockCallInvoker.cs ├── ResolverTest.cs ├── UnaryTest.cs └── Usings.cs ├── MagicOnion.Client.SourceGenerator.Tests ├── Collector │ ├── MagicOnionTypeInfoTest.cs │ ├── MethodCollectorHelper.cs │ ├── MethodCollectorServicesTest.cs │ ├── MethodCollectorStreamingHubsTest.cs │ └── SerializationInfoCollectorTest.cs ├── CompilationHelper.cs ├── GenerateEnumFormatterTest.cs ├── GenerateGenericsStreamingHubTest.cs ├── GenerateGenericsTest.cs ├── GenerateMemoryPackTest.cs ├── GenerateNullableTest.cs ├── GenerateRawStreamingTest.cs ├── GenerateServiceTest.cs ├── GenerateStreamingHubDiagnosticHandlerTest.cs ├── GenerateStreamingHubTest.cs ├── GenerateTest.cs ├── GenerateWithIfDirectiveTest.cs ├── GeneratorOptionsTest.cs ├── MagicOnion.Client.SourceGenerator.Tests.csproj ├── Resources │ ├── GenerateEnumFormatterTest │ │ ├── GenerateEnumFormatter_Nested │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyServiceClient.g.cs │ │ ├── GenerateEnumFormatter_Parameter │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyServiceClient.g.cs │ │ ├── GenerateEnumFormatter_Parameter_Nullable │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyServiceClient.g.cs │ │ ├── GenerateEnumFormatter_Return │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyServiceClient.g.cs │ │ └── GenerateEnumFormatter_Return_Nullable │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyServiceClient.g.cs │ ├── GenerateGenericsStreamingHubTest │ │ ├── HubReceiver │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── HubReceiver_ArrayFormatter_KnownType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── HubReceiver_ArrayFormatter_UserType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── HubReceiver_Enum │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyHubClient.g.cs │ │ ├── HubReceiver_ListFormatter_KnownType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── HubReceiver_ListFormatter_UserType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── HubReceiver_MultipleTypeArgs │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── HubReceiver_Nested │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── HubReceiver_Nested_Array │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── HubReceiver_Nested_Enum │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyHubClient.g.cs │ │ ├── Parameters │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Parameters_ArrayFormatter_KnownType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Parameters_ArrayFormatter_UserType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Parameters_ListFormatter_KnownType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Parameters_ListFormatter_UserType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Parameters_MultipleTypeArgs │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Parameters_Nested │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Parameters_Nested_Array │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Parameters_Nested_Enum │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyHubClient.g.cs │ │ ├── Return │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Return_ArrayFormatter_KnownType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Return_ArrayFormatter_UserType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Return_Enum │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyHubClient.g.cs │ │ ├── Return_ListFormatter_KnownType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Return_ListFormatter_UserType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Return_MultipleTypeArgs │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Return_Nested │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Return_Nested_Array │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ └── Return_Nested_Enum │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyHubClient.g.cs │ ├── GenerateGenericsTest │ │ ├── KnownFormatters │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Parameters │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Parameters_ArrayFormatter_KnownType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Parameters_ArrayFormatter_UserType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Parameters_ListFormatter_KnownType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Parameters_ListFormatter_UserType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Parameters_Nested │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Parameters_Nested_Array │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Parameters_Nested_DoNotGenerateResolver │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Parameters_Nested_DoNotGenerateResolver_Array │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Parameters_Nested_DoNotGenerateResolver_Enum │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyServiceClient.g.cs │ │ ├── Parameters_Nested_Enum │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyServiceClient.g.cs │ │ ├── Return │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Return_ArrayFormatter_KnownType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Return_ArrayFormatter_UserType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Return_Enum │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyServiceClient.g.cs │ │ ├── Return_Enum_DoNotGenerateResolver │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyServiceClient.g.cs │ │ ├── Return_ListFormatter_KnownType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Return_ListFormatter_UserType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Return_MultipleTypeArgs │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Return_MultipleTypeArgs_DoNotGenerateResolver │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Return_Nested │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Return_Nested_Array │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Return_Nested_Array_DoNotGenerateResolver │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Return_Nested_DoNotGenerateResolver │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Return_Nested_Enum │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyServiceClient.g.cs │ │ └── Return_Nested_Enum_DoNotGenerateResolver │ │ │ ├── 0000_TempProject_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0003_TempProject_MyServiceClient.g.cs │ ├── GenerateMemoryPackTest │ │ └── Generic │ │ │ ├── 0000_MyApplication1_GreeterServiceClient.g.cs │ │ │ ├── 0001_MyApplication1_MagicOnionInitializer_MemoryPack.g.cs │ │ │ └── 0002_MyApplication1_MagicOnionInitializer.g.cs │ ├── GenerateNullableTest │ │ ├── NullableReferenceType │ │ │ ├── 0000_MyApplication1_GreeterServiceClient.g.cs │ │ │ ├── 0001_MyApplication1_MagicOnionInitializer_MessagePack.g.cs │ │ │ └── 0002_MyApplication1_MagicOnionInitializer.g.cs │ │ └── NullableValueType │ │ │ ├── 0000_MyApplication1_GreeterServiceClient.g.cs │ │ │ ├── 0001_MyApplication1_MagicOnionInitializer_MessagePack.g.cs │ │ │ └── 0002_MyApplication1_MagicOnionInitializer.g.cs │ ├── GenerateRawStreamingTest │ │ └── StreamingResult │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ ├── GenerateServiceTest │ │ ├── Invalid_Return_NonGenerics │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ └── 0001_TempProject_MagicOnionInitializer.g.cs │ │ ├── Invalid_Return_NonSupportedUnaryResultOfT │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ └── 0001_TempProject_MagicOnionInitializer.g.cs │ │ ├── Invalid_Return_RawStreaming_NonTask │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ └── 0001_TempProject_MagicOnionInitializer.g.cs │ │ ├── Invalid_Return_TaskOfUnaryResultOfT │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ └── 0001_TempProject_MagicOnionInitializer.g.cs │ │ ├── Return_StreamingResult │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Return_UnaryResultNonGeneric │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Return_UnaryResultOfRefType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ ├── Return_UnaryResultOfT │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ └── Return_UnaryResultOfValueType │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ ├── GenerateStreamingHubDiagnosticHandlerTest │ │ └── Generate │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ ├── GenerateStreamingHubTest │ │ ├── ClientResult_Parameter_Many │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── ClientResult_Parameter_Many_NoReturnValue │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── ClientResult_Parameter_Many_With_Cancellation │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── ClientResult_Parameter_One │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── ClientResult_Parameter_One_NoReturnValue │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── ClientResult_Parameter_One_With_Cancellation │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── ClientResult_Parameter_Zero │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── ClientResult_Parameter_Zero_NoReturnValue │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── ClientResult_Parameter_Zero_With_Cancellation │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Complex │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── HubReceiver_Parameter_Many │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── HubReceiver_Parameter_One │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── HubReceiver_Parameter_Zero │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── InterfaceInheritance │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── InterfaceInheritance_Receiver │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Invalid_HubReceiver_ReturnsNotVoid │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ └── 0001_TempProject_MagicOnionInitializer.g.cs │ │ ├── Parameter_Many │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Parameter_One │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Parameter_Zero │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Return_Task │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Return_TaskOfT │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Return_ValueTask │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ ├── Return_ValueTaskOfT │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ │ └── Return_Void │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ ├── GenerateTest │ │ ├── Generate │ │ │ ├── 0000_MyApplication1_GreeterServiceClient.g.cs │ │ │ ├── 0001_MyApplication1_MagicOnionInitializer_MessagePack.g.cs │ │ │ └── 0002_MyApplication1_MagicOnionInitializer.g.cs │ │ ├── Generate_Namespace │ │ │ ├── 0000_MyApplication1_Net_Remoting_GreeterServiceClient.g.cs │ │ │ ├── 0001_MyApplication1_Net_Remoting_MagicOnionInitializer_MessagePack.g.cs │ │ │ └── 0002_MyApplication1_Net_Remoting_MagicOnionInitializer.g.cs │ │ └── ImplicitUsings_PropertyGroup_Enable │ │ │ ├── 0000_MyNamespace_MagicOnionInitializer_EnumFormatters.g.cs │ │ │ ├── 0001_MyNamespace_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0002_MyNamespace_MagicOnionInitializer.g.cs │ │ │ └── 0003_MyNamespace_MyServiceClient.g.cs │ ├── GenerateWithIfDirectiveTest │ │ ├── Skip_Generation_Service_Interface │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyServiceClient.g.cs │ │ └── Skip_Generation_StreamingHub_Interface │ │ │ ├── 0000_TempProject_MagicOnionInitializer_MessagePack.g.cs │ │ │ ├── 0001_TempProject_MagicOnionInitializer.g.cs │ │ │ └── 0002_TempProject_MyHubClient.g.cs │ └── GeneratorOptionsTest │ │ ├── Default │ │ ├── 0000_MyApplication1_GreeterServiceClient.g.cs │ │ ├── 0001_MyApplication1_MagicOnionInitializer_MessagePack.g.cs │ │ └── 0002_MyApplication1_MagicOnionInitializer.g.cs │ │ ├── DisableAutoRegistration │ │ ├── 0000_MyApplication1_GreeterServiceClient.g.cs │ │ ├── 0001_MyApplication1_MagicOnionInitializer_MessagePack.g.cs │ │ └── 0002_MyApplication1_MagicOnionInitializer.g.cs │ │ ├── MessagePackFormatterNamespace │ │ ├── 0000__MagicOnionInitializer_MessagePack.g.cs │ │ ├── 0001__MagicOnionInitializer.g.cs │ │ └── 0002_MyApplication1_GreeterServiceClient.g.cs │ │ ├── MessagePackFormatterNamespace_By_LegacyOption │ │ ├── 0000__MagicOnionInitializer_MessagePack.g.cs │ │ ├── 0001__MagicOnionInitializer.g.cs │ │ └── 0002_MyApplication1_GreeterServiceClient.g.cs │ │ └── Serializer_MemoryPack │ │ ├── 0000_MyApplication1_GreeterServiceClient.g.cs │ │ ├── 0001_MyApplication1_MagicOnionInitializer_MemoryPack.g.cs │ │ └── 0002_MyApplication1_MagicOnionInitializer.g.cs ├── RunTest.cs ├── Usings.cs └── Verifiers │ └── MagicOnionSourceGeneratorVerifier.cs ├── MagicOnion.Client.Tests ├── ChannelAsyncStreamReader.cs ├── ChannelClientStreamWriter.cs ├── ClientFilterTest.cs ├── ClientStreamingTest.cs ├── DuplexStreamingTest.cs ├── DynamicClient │ ├── SameInterfaceNameTest.cs │ └── ServiceClientDefinitionTest.cs ├── MagicOnion.Client.Tests.csproj ├── MockAsyncStreamReader.cs ├── MockClientStreamWriter.cs ├── MockSerializationContext.cs ├── ServerStreamingTest.cs ├── StreamingHubClientHeartbeatManagerTest.cs ├── StreamingHubClientTestHelper.cs ├── StreamingHubTest.cs ├── UnaryTest.cs └── Usings.cs ├── MagicOnion.Integration.Tests ├── ClientFilterTest.cs ├── DynamicArgumentTupleTest.cs ├── HandCraftedStreamingHubClientTest.cs ├── MagicOnion.Integration.Tests.csproj ├── MagicOnionGeneratedClientInitializer.cs ├── SerializerStreamingHubTest.cs ├── SerializerUnaryTest.cs ├── StreamingHubClientDiagnosticHandlerTest.cs ├── StreamingHubClientResultTest.cs ├── StreamingHubInterfaceInheritanceTest.cs ├── StreamingHubStressTest.cs ├── StreamingHubTest.UnknownMethodId.cs ├── StreamingHubTest.cs ├── StreamingServiceTest.cs ├── TestMagicOnionClientFactory.cs ├── TestStreamingHubClientFactory.cs ├── UnaryServiceTest.cs ├── Usings.cs └── XorMessagePackMagicOnionSerializer.cs ├── MagicOnion.Serialization.MemoryPack.Tests ├── MagicOnion.Serialization.MemoryPack.Tests.csproj ├── MagicOnionGeneratedClientInitializer.cs ├── MemoryPackSerializerStreamingHubTest.cs ├── MemoryPackSerializerUnaryTest.cs └── Usings.cs ├── MagicOnion.Serialization.MessagePack.Tests ├── GlobalUsings.cs ├── MagicOnion.Serialization.MessagePack.Tests.csproj └── UnsafeDirectBlitResolverTest.cs ├── MagicOnion.Server.InternalTesting ├── MagicOnion.Server.InternalTesting.csproj └── MagicOnionApplicationFactory.cs ├── MagicOnion.Server.JsonTranscoding.Tests ├── JsonTranscodingEnabledMagicOnionApplicationFactory.cs ├── MagicOnion.Server.JsonTranscoding.Tests.csproj ├── NonUnaryMethodsTest.cs ├── SystemTextJsonMessageSerializerTest.cs ├── UnaryFunctionalTests.cs └── Usings.cs ├── MagicOnion.Server.Redis.Tests ├── MagicOnion.Server.Redis.Tests.csproj ├── RedisGroupFunctionalTest.cs ├── TemporaryRedisServerFixture.cs └── Usings.cs ├── MagicOnion.Server.Tests ├── ArgumentPatternTest.cs ├── AssemblyAttributes.cs ├── AuthorizeServiceTest.cs ├── AuthorizeStreamingHubTest.cs ├── DynamicMagicOnionMethodProviderTest.cs ├── FakeStreamingServiceContext.cs ├── Filter │ ├── FilterHelperTest.cs │ ├── MagicOnionFilterDescriptorExtensionsTest.cs │ └── MagicOnionFilterDescriptorTest.cs ├── FilterConstructorInjectionTest.cs ├── FilterTest.cs ├── HandCraftedMagicOnionMethodProviderTest.cs ├── InterfaceInheritanceTest.cs ├── MagicOnion.Server.Tests.csproj ├── MagicOnionEngineTest.cs ├── MagicOnionGrpcMethodTest.cs ├── MagicOnionGrpcServiceMappingContextTest.cs ├── MagicOnionMetricsTest.cs ├── MethodHandlerMetadataFactoryTest.cs ├── PartialDefinitionTest.cs ├── RawBytesResponseTest.cs ├── ReturnStatusTest.cs ├── ServerErrorTest.cs ├── StreamingHubBroadcastTest │ ├── BroadcastGroupTestHub.cs │ └── GroupTest.cs ├── StreamingHubDisconnectionTest.cs ├── StreamingHubHandlerTest.cs ├── StreamingHubHeartbeat │ ├── StreamingHubClientHeartbeatResponseTest.cs │ ├── StreamingHubHeartbeatManagerTest.cs │ └── StreamingHubServerHeartbeatTest.cs ├── StreamingHubMethodHandlerMetadataFactoryTest.cs ├── StreamingHubTest.cs ├── StreamingHubThrowOnDisconnectTest.cs ├── UnaryServiceTest.cs ├── UnaryTestService.cs ├── XorMessagePackMagicOnionSerializer.cs ├── _GlobalUsings.cs ├── _ServerFixture.cs └── xunit.runner.json └── samples ├── AuthSample ├── AuthSample.csproj ├── FakeAuthenticationHandler.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── ServicesAndHubs.cs ├── appsettings.Development.json └── appsettings.json ├── MagicOnionEngineTest ├── Abstract.cs ├── Generics.cs ├── Ignored.cs ├── MagicOnionEngineTest.csproj ├── Non-Public.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Public.cs ├── README.md ├── appsettings.Development.json └── appsettings.json ├── MagicOnionTestServer ├── MagicOnionTestServer.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json └── SampleServiceDefinitions ├── SampleServiceDefinitions.csproj └── Services └── IGreeterService.cs /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @mayuki 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [mayuki] 2 | -------------------------------------------------------------------------------- /.github/actions/check-metas/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/actions/check-metas/action.yaml -------------------------------------------------------------------------------- /.github/actions/setup-dotnet/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/actions/setup-dotnet/action.yaml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/scripts/benchmark-client-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/scripts/benchmark-client-run.sh -------------------------------------------------------------------------------- /.github/scripts/benchmark-server-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/scripts/benchmark-server-run.sh -------------------------------------------------------------------------------- /.github/scripts/benchmark-server-stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/scripts/benchmark-server-stop.sh -------------------------------------------------------------------------------- /.github/workflows/benchmark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/workflows/benchmark.yaml -------------------------------------------------------------------------------- /.github/workflows/build-canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/workflows/build-canary.yaml -------------------------------------------------------------------------------- /.github/workflows/build-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/workflows/build-docs.yaml -------------------------------------------------------------------------------- /.github/workflows/build-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/workflows/build-release.yaml -------------------------------------------------------------------------------- /.github/workflows/build-update-sourcegenerator-for-unity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/workflows/build-update-sourcegenerator-for-unity.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-merged.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/workflows/pr-merged.yaml -------------------------------------------------------------------------------- /.github/workflows/prevent-github-change.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/workflows/prevent-github-change.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/workflows/publish-docs.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/Icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/LICENSE -------------------------------------------------------------------------------- /MagicOnion.Packaging.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/MagicOnion.Packaging.slnf -------------------------------------------------------------------------------- /MagicOnion.sln.startup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/MagicOnion.sln.startup.json -------------------------------------------------------------------------------- /MagicOnion.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/MagicOnion.slnx -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/about.md -------------------------------------------------------------------------------- /docs/docs/advanced/customize-serialization-encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/advanced/customize-serialization-encryption.md -------------------------------------------------------------------------------- /docs/docs/advanced/magiconionoptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/advanced/magiconionoptions.md -------------------------------------------------------------------------------- /docs/docs/advanced/map-service-endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/advanced/map-service-endpoints.md -------------------------------------------------------------------------------- /docs/docs/advanced/memorypack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/advanced/memorypack.md -------------------------------------------------------------------------------- /docs/docs/advanced/raw-grpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/advanced/raw-grpc.md -------------------------------------------------------------------------------- /docs/docs/best-practices/hub-context-pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/best-practices/hub-context-pattern.md -------------------------------------------------------------------------------- /docs/docs/best-practices/load-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/best-practices/load-tests.md -------------------------------------------------------------------------------- /docs/docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/features.md -------------------------------------------------------------------------------- /docs/docs/filter/client-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/filter/client-filter.md -------------------------------------------------------------------------------- /docs/docs/filter/dependency-injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/filter/dependency-injection.md -------------------------------------------------------------------------------- /docs/docs/filter/extensibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/filter/extensibility.md -------------------------------------------------------------------------------- /docs/docs/filter/fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/filter/fundamentals.md -------------------------------------------------------------------------------- /docs/docs/filter/streaminghub-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/filter/streaminghub-filter.md -------------------------------------------------------------------------------- /docs/docs/fundamentals/aot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/fundamentals/aot.md -------------------------------------------------------------------------------- /docs/docs/fundamentals/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/fundamentals/authentication.md -------------------------------------------------------------------------------- /docs/docs/fundamentals/exceptions-and-status-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/fundamentals/exceptions-and-status-codes.md -------------------------------------------------------------------------------- /docs/docs/fundamentals/https.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/fundamentals/https.md -------------------------------------------------------------------------------- /docs/docs/fundamentals/lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/fundamentals/lifecycle.md -------------------------------------------------------------------------------- /docs/docs/fundamentals/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/fundamentals/metrics.md -------------------------------------------------------------------------------- /docs/docs/fundamentals/project-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/fundamentals/project-structure.md -------------------------------------------------------------------------------- /docs/docs/fundamentals/unary-or-streaminghub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/fundamentals/unary-or-streaminghub.md -------------------------------------------------------------------------------- /docs/docs/fundamentals/version-compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/fundamentals/version-compatibility.md -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/installation/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/installation/packages.md -------------------------------------------------------------------------------- /docs/docs/installation/unity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/installation/unity.md -------------------------------------------------------------------------------- /docs/docs/integration/blazor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/integration/blazor.md -------------------------------------------------------------------------------- /docs/docs/integration/dependency-injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/integration/dependency-injection.md -------------------------------------------------------------------------------- /docs/docs/integration/json-transcoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/integration/json-transcoding.md -------------------------------------------------------------------------------- /docs/docs/integration/unity-webgl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/integration/unity-webgl.md -------------------------------------------------------------------------------- /docs/docs/integration/unity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/integration/unity.md -------------------------------------------------------------------------------- /docs/docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/license.md -------------------------------------------------------------------------------- /docs/docs/quickstart-unity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/quickstart-unity.md -------------------------------------------------------------------------------- /docs/docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/quickstart.md -------------------------------------------------------------------------------- /docs/docs/release-notes/7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/release-notes/7.0.md -------------------------------------------------------------------------------- /docs/docs/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/resources.md -------------------------------------------------------------------------------- /docs/docs/source-generator/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/source-generator/client.md -------------------------------------------------------------------------------- /docs/docs/streaminghub/call-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/streaminghub/call-client.md -------------------------------------------------------------------------------- /docs/docs/streaminghub/client-results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/streaminghub/client-results.md -------------------------------------------------------------------------------- /docs/docs/streaminghub/define-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/streaminghub/define-interface.md -------------------------------------------------------------------------------- /docs/docs/streaminghub/disconnection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/streaminghub/disconnection.md -------------------------------------------------------------------------------- /docs/docs/streaminghub/fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/streaminghub/fundamentals.md -------------------------------------------------------------------------------- /docs/docs/streaminghub/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/streaminghub/getting-started.md -------------------------------------------------------------------------------- /docs/docs/streaminghub/group-application-managed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/streaminghub/group-application-managed.md -------------------------------------------------------------------------------- /docs/docs/streaminghub/group-backplane.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/streaminghub/group-backplane.md -------------------------------------------------------------------------------- /docs/docs/streaminghub/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/streaminghub/group.md -------------------------------------------------------------------------------- /docs/docs/streaminghub/heartbeat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/streaminghub/heartbeat.md -------------------------------------------------------------------------------- /docs/docs/streaminghub/server-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/streaminghub/server-events.md -------------------------------------------------------------------------------- /docs/docs/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/support.md -------------------------------------------------------------------------------- /docs/docs/supported-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/supported-platforms.md -------------------------------------------------------------------------------- /docs/docs/unary/fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/unary/fundamentals.md -------------------------------------------------------------------------------- /docs/docs/unary/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/unary/getting-started.md -------------------------------------------------------------------------------- /docs/docs/unary/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/unary/metadata.md -------------------------------------------------------------------------------- /docs/docs/unary/raw-bytes-response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docs/unary/raw-bytes-response.md -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/i18n/ja/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/code.json -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current.json -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/advanced/raw-grpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/advanced/raw-grpc.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/features.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/filter/client-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/filter/client-filter.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/filter/fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/filter/fundamentals.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/fundamentals/aot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/fundamentals/aot.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/fundamentals/https.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/fundamentals/https.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/index.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/installation/unity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/installation/unity.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/integration/blazor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/integration/blazor.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/integration/unity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/integration/unity.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/license.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/quickstart-unity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/quickstart-unity.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/quickstart.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/release-notes/7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/release-notes/7.0.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/resources.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/streaminghub/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/streaminghub/group.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/support.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/supported-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/supported-platforms.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/unary/fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/unary/fundamentals.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-docs/current/unary/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-plugin-content-docs/current/unary/metadata.md -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-plugin-content-pages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-theme-classic/footer.json -------------------------------------------------------------------------------- /docs/i18n/ja/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ja/docusaurus-theme-classic/navbar.json -------------------------------------------------------------------------------- /docs/i18n/ko/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/code.json -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current.json -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/advanced/memorypack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/advanced/memorypack.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/advanced/raw-grpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/advanced/raw-grpc.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/features.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/filter/fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/filter/fundamentals.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/fundamentals/aot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/fundamentals/aot.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/fundamentals/https.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/fundamentals/https.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/index.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/installation/unity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/installation/unity.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/integration/blazor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/integration/blazor.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/integration/unity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/integration/unity.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/license.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/quickstart-unity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/quickstart-unity.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/quickstart.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/release-notes/7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/release-notes/7.0.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/streaminghub/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/streaminghub/group.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/support.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/supported-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/supported-platforms.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/unary/fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/unary/fundamentals.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-docs/current/unary/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-plugin-content-docs/current/unary/metadata.md -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-plugin-content-pages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-theme-classic/footer.json -------------------------------------------------------------------------------- /docs/i18n/ko/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/i18n/ko/docusaurus-theme-classic/navbar.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/pnpm-lock.yaml -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/components/AdditionalHeaderMetaRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/src/components/AdditionalHeaderMetaRow.tsx -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/data/resources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/src/data/resources.tsx -------------------------------------------------------------------------------- /docs/src/pages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/src/remark/additionalHeaderMetaRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/src/remark/additionalHeaderMetaRow.js -------------------------------------------------------------------------------- /docs/src/theme/MDXComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/src/theme/MDXComponents.js -------------------------------------------------------------------------------- /docs/src/theme/MDXContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/src/theme/MDXContent/index.tsx -------------------------------------------------------------------------------- /docs/src/theme/MDXContent/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/src/theme/MDXContent/styles.module.css -------------------------------------------------------------------------------- /docs/src/theme/NavbarItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/src/theme/NavbarItem/index.tsx -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/OG_img_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/OG_img_en.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-filter-with-middleware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-filter-with-middleware.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-group-broadcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-group-broadcast.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-hub-context-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-hub-context-01.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-quickstart-unity-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-quickstart-unity-hub.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-quickstart-unity-installedpackages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-quickstart-unity-installedpackages.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-quickstart-unity-localpackage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-quickstart-unity-localpackage.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-quickstart-unity-nuget-magiconionclient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-quickstart-unity-nuget-magiconionclient.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-quickstart-unity-nuget-systemiopipelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-quickstart-unity-nuget-systemiopipelines.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-quickstart-unity-nugetforunity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-quickstart-unity-nugetforunity.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-quickstart-unity-packagize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-quickstart-unity-packagize.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-quickstart-unity-server-sln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-quickstart-unity-server-sln.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-quickstart-unity-slnmerge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-quickstart-unity-slnmerge.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-quickstart-unity-unarydebuglog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-quickstart-unity-unarydebuglog.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-quickstart-unity-upm-magiconion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-quickstart-unity-upm-magiconion.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-quickstart-unity-upm-slnmerge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-quickstart-unity-upm-slnmerge.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-quickstart-unity-yaha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-quickstart-unity-yaha.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-technology-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-technology-stack.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-unary-streaminghub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-unary-streaminghub.png -------------------------------------------------------------------------------- /docs/static/img/docs/fig-usecase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docs/fig-usecase.png -------------------------------------------------------------------------------- /docs/static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/icon.png -------------------------------------------------------------------------------- /docs/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/logo.png -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /opensource.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/opensource.snk -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Client/IScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Client/IScenario.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Client/PerformanceTest.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Client/PerformanceTest.Client.csproj -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Client/PerformanceTestRunningContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Client/PerformanceTestRunningContext.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Client/Program.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Client/ScenarioType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Client/ScenarioType.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Client/SerializationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Client/SerializationType.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Client/ServerStreamingScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Client/ServerStreamingScenario.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Client/StreamingHubScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Client/StreamingHubScenario.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Client/UnaryLargePayloadScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Client/UnaryLargePayloadScenario.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Client/UnaryScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Client/UnaryScenario.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Server/KestrelHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Server/KestrelHelperExtensions.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Server/PerfTestControlService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Server/PerfTestControlService.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Server/PerfTestHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Server/PerfTestHub.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Server/PerfTestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Server/PerfTestService.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Server/PerformanceTest.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Server/PerformanceTest.Server.csproj -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Server/ProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Server/ProfileService.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Server/Program.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Server/StartupService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Server/StartupService.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Server/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Server/appsettings.Development.json -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Server/appsettings.json -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/ApplicationInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/ApplicationInformation.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/Certs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/Certs/README.md -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/Certs/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/Certs/ca.pem -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/Certs/client.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/Certs/client.pfx -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/Certs/server1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/Certs/server1.key -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/Certs/server1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/Certs/server1.pem -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/Certs/server1.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/Certs/server1.pfx -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/ComplexResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/ComplexResponse.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/IPerfTestControlService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/IPerfTestControlService.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/IPerfTestHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/IPerfTestHub.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/IPerfTestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/IPerfTestService.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/MagicOnionIsLatestAttirbute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/MagicOnionIsLatestAttirbute.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/PerformanceTest.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/PerformanceTest.Shared.csproj -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/Reporting/MetricsTagCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/Reporting/MetricsTagCache.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/Reporting/OutlinerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/Reporting/OutlinerHelper.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/SimpleRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/SimpleRequest.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/PerformanceTest.Shared/SystemTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/PerformanceTest.Shared/SystemTimeProvider.cs -------------------------------------------------------------------------------- /perf/BenchmarkApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/README.md -------------------------------------------------------------------------------- /perf/BenchmarkApp/configs/issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/configs/issue.yaml -------------------------------------------------------------------------------- /perf/BenchmarkApp/configs/schedule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/configs/schedule.yaml -------------------------------------------------------------------------------- /perf/BenchmarkApp/configs/schedule_memorypack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/configs/schedule_memorypack.yaml -------------------------------------------------------------------------------- /perf/BenchmarkApp/configs/schedule_messagepack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/configs/schedule_messagepack.yaml -------------------------------------------------------------------------------- /perf/BenchmarkApp/configs/schedule_serverstreaming.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/configs/schedule_serverstreaming.yaml -------------------------------------------------------------------------------- /perf/BenchmarkApp/configs/workflow_dispatch_memorypack_h2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/configs/workflow_dispatch_memorypack_h2.yaml -------------------------------------------------------------------------------- /perf/BenchmarkApp/configs/workflow_dispatch_memorypack_h2c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/configs/workflow_dispatch_memorypack_h2c.yaml -------------------------------------------------------------------------------- /perf/BenchmarkApp/configs/workflow_dispatch_memorypack_h3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/configs/workflow_dispatch_memorypack_h3.yaml -------------------------------------------------------------------------------- /perf/BenchmarkApp/configs/workflow_dispatch_messagepack_h2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/configs/workflow_dispatch_messagepack_h2.yaml -------------------------------------------------------------------------------- /perf/BenchmarkApp/configs/workflow_dispatch_messagepack_h2c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/configs/workflow_dispatch_messagepack_h2c.yaml -------------------------------------------------------------------------------- /perf/BenchmarkApp/configs/workflow_dispatch_messagepack_h2c_eastus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/configs/workflow_dispatch_messagepack_h2c_eastus.yaml -------------------------------------------------------------------------------- /perf/BenchmarkApp/configs/workflow_dispatch_messagepack_h3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/BenchmarkApp/configs/workflow_dispatch_messagepack_h3.yaml -------------------------------------------------------------------------------- /perf/Microbenchmark/Microbenchmark.Client/.gitignore: -------------------------------------------------------------------------------- 1 | BenchmarkDotNet.Artifacts -------------------------------------------------------------------------------- /perf/Microbenchmark/Microbenchmark.Client/ChannelAsyncStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/Microbenchmark/Microbenchmark.Client/ChannelAsyncStreamReader.cs -------------------------------------------------------------------------------- /perf/Microbenchmark/Microbenchmark.Client/ChannelClientStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/Microbenchmark/Microbenchmark.Client/ChannelClientStreamWriter.cs -------------------------------------------------------------------------------- /perf/Microbenchmark/Microbenchmark.Client/HubMethodBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/Microbenchmark/Microbenchmark.Client/HubMethodBenchmarks.cs -------------------------------------------------------------------------------- /perf/Microbenchmark/Microbenchmark.Client/Microbenchmark.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/Microbenchmark/Microbenchmark.Client/Microbenchmark.Client.csproj -------------------------------------------------------------------------------- /perf/Microbenchmark/Microbenchmark.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/Microbenchmark/Microbenchmark.Client/Program.cs -------------------------------------------------------------------------------- /perf/Microbenchmark/Microbenchmark.Client/StreamingHubClientTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/Microbenchmark/Microbenchmark.Client/StreamingHubClientTestHelper.cs -------------------------------------------------------------------------------- /perf/SourceGeneratorPerf/SourceGeneratorPerf/CompilationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/SourceGeneratorPerf/SourceGeneratorPerf/CompilationHelper.cs -------------------------------------------------------------------------------- /perf/SourceGeneratorPerf/SourceGeneratorPerf/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/SourceGeneratorPerf/SourceGeneratorPerf/Program.cs -------------------------------------------------------------------------------- /perf/SourceGeneratorPerf/SourceGeneratorPerf/SourceGeneratorPerf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/perf/SourceGeneratorPerf/SourceGeneratorPerf/SourceGeneratorPerf.csproj -------------------------------------------------------------------------------- /samples/ChatApp/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/.config/dotnet-tools.json -------------------------------------------------------------------------------- /samples/ChatApp/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/.dockerignore -------------------------------------------------------------------------------- /samples/ChatApp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/.gitattributes -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Console/ChatApp.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Console/ChatApp.Console.csproj -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Console/Program.cs -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Server.sln -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Server/ChatApp.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Server/ChatApp.Server.csproj -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Server/ChatHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Server/ChatHub.cs -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Server/ChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Server/ChatService.cs -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Server/Dockerfile -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Server/Program.cs -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Server/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Server/appsettings.Development.json -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Server/appsettings.json -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Server/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Server/server.crt -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Server/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Server/server.csr -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Server/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Server/server.key -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/ChatApp.Shared.Unity.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/ChatApp.Shared.Unity.asmdef -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/ChatApp.Shared.Unity.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/ChatApp.Shared.Unity.asmdef.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/ChatApp.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/ChatApp.Shared.csproj -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/ChatApp.Shared.csproj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/ChatApp.Shared.csproj.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/Directory.Build.props -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/Directory.Build.props.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/Directory.Build.props.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/Directory.Build.targets -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/Directory.Build.targets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/Directory.Build.targets.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/Hubs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/Hubs.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/Hubs/IChatHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/Hubs/IChatHub.cs -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/Hubs/IChatHub.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/Hubs/IChatHub.cs.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/Hubs/IChatHubReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/Hubs/IChatHubReceiver.cs -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/Hubs/IChatHubReceiver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/Hubs/IChatHubReceiver.cs.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/MessagePackObjects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/MessagePackObjects.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/MessagePackObjects/Requests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/MessagePackObjects/Requests.cs -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/MessagePackObjects/Requests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/MessagePackObjects/Requests.cs.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/MessagePackObjects/Responses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/MessagePackObjects/Responses.cs -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/MessagePackObjects/Responses.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/MessagePackObjects/Responses.cs.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/Services.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/Services.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/Services/IChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/Services/IChatService.cs -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/Services/IChatService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/Services/IChatService.cs.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/package.json -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Shared/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Shared/package.json.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/.gitignore -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/.vsconfig -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Editor.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Editor/BatchBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Editor/BatchBuild.cs -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Editor/BatchBuild.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Editor/BatchBuild.cs.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Editor/BuildeIos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Editor/BuildeIos.cs -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Editor/BuildeIos.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Editor/BuildeIos.cs.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Editor/SlnMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Editor/SlnMerge.cs -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Editor/SlnMerge.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Editor/SlnMerge.cs.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/NuGet.config -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/NuGet.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/NuGet.config.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Packages.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/Grpc.Core.Api.2.66.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Packages/Grpc.Core.Api.2.66.0.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/Grpc.Net.Client.2.66.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Packages/Grpc.Net.Client.2.66.0.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/Grpc.Net.Common.2.66.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Packages/Grpc.Net.Common.2.66.0.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/MessagePack.3.1.1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Packages/MessagePack.3.1.1.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/MessagePack.3.1.1/lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Packages/MessagePack.3.1.1/lib.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/Microsoft.Bcl.AsyncInterfaces.8.0.0/buildTransitive/net462/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/Microsoft.Bcl.AsyncInterfaces.8.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/Microsoft.Bcl.TimeProvider.8.0.1/buildTransitive/net462/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/Microsoft.Bcl.TimeProvider.8.0.1/buildTransitive/net6.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/Microsoft.Bcl.TimeProvider.8.0.1/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/Microsoft.Extensions.Logging.Abstractions.6.0.0/buildTransitive/netcoreapp3.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/Microsoft.Extensions.Logging.Abstractions.6.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/System.Collections.Immutable.8.0.0/buildTransitive/net462/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/System.Collections.Immutable.8.0.0/buildTransitive/net6.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/System.Collections.Immutable.8.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/System.Diagnostics.DiagnosticSource.6.0.1/buildTransitive/netcoreapp3.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/System.Diagnostics.DiagnosticSource.6.0.1/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/System.IO.Pipelines.8.0.0/buildTransitive/net462/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/System.IO.Pipelines.8.0.0/buildTransitive/net6.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/System.IO.Pipelines.8.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/System.Threading.Channels.8.0.0/buildTransitive/net462/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/System.Threading.Channels.8.0.0/buildTransitive/net6.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Packages/System.Threading.Channels.8.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Resources.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Resources/BillingMode.json: -------------------------------------------------------------------------------- 1 | {"androidStore":"GooglePlay"} -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Resources/BillingMode.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Resources/BillingMode.json.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Scenes.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Scenes/ChatScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Scenes/ChatScene.unity -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Scenes/ChatScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Scenes/ChatScene.unity.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Scripts.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Scripts/ChatComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Scripts/ChatComponent.cs -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Scripts/ChatComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Scripts/ChatComponent.cs.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Scripts/InitialSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Scripts/InitialSettings.cs -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Scripts/InitialSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Scripts/InitialSettings.cs.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Scripts/SystemConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Scripts/SystemConstants.cs -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/Scripts/SystemConstants.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/Scripts/SystemConstants.cs.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/StreamingAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/StreamingAssets.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/StreamingAssets/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/StreamingAssets/server.crt -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/StreamingAssets/server.crt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/StreamingAssets/server.crt.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/packages.config -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Assets/packages.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Assets/packages.config.meta -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ChatApp.Unity.sln.mergesettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ChatApp.Unity.sln.mergesettings -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Packages/manifest.json -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/Packages/packages-lock.json -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/Packages/com.unity.services.core/Settings.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /samples/ChatApp/ChatApp.Unity/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/ChatApp.Unity/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /samples/ChatApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/README.md -------------------------------------------------------------------------------- /samples/ChatApp/docker_push.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/docker_push.bat -------------------------------------------------------------------------------- /samples/ChatApp/k8s/nlb_acm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/k8s/nlb_acm.yaml -------------------------------------------------------------------------------- /samples/ChatApp/k8s/nlb_tcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/k8s/nlb_tcp.yaml -------------------------------------------------------------------------------- /samples/ChatApp/openssl_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/ChatApp/openssl_gen.sh -------------------------------------------------------------------------------- /samples/JsonTranscoding/JsonTranscodingSample.Server/MyFirstHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JsonTranscoding/JsonTranscodingSample.Server/MyFirstHub.cs -------------------------------------------------------------------------------- /samples/JsonTranscoding/JsonTranscodingSample.Server/MyFirstService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JsonTranscoding/JsonTranscodingSample.Server/MyFirstService.cs -------------------------------------------------------------------------------- /samples/JsonTranscoding/JsonTranscodingSample.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JsonTranscoding/JsonTranscodingSample.Server/Program.cs -------------------------------------------------------------------------------- /samples/JsonTranscoding/JsonTranscodingSample.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JsonTranscoding/JsonTranscodingSample.Server/appsettings.json -------------------------------------------------------------------------------- /samples/JsonTranscoding/JsonTranscodingSample.Shared/IMyFirstHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JsonTranscoding/JsonTranscodingSample.Shared/IMyFirstHub.cs -------------------------------------------------------------------------------- /samples/JsonTranscoding/JsonTranscodingSample.Shared/IMyFirstService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JsonTranscoding/JsonTranscodingSample.Shared/IMyFirstService.cs -------------------------------------------------------------------------------- /samples/JwtAuthentication/JwtAuthApp.Client/JwtAuthApp.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JwtAuthentication/JwtAuthApp.Client/JwtAuthApp.Client.csproj -------------------------------------------------------------------------------- /samples/JwtAuthentication/JwtAuthApp.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JwtAuthentication/JwtAuthApp.Client/Program.cs -------------------------------------------------------------------------------- /samples/JwtAuthentication/JwtAuthApp.Server/Hubs/TimerHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JwtAuthentication/JwtAuthApp.Server/Hubs/TimerHub.cs -------------------------------------------------------------------------------- /samples/JwtAuthentication/JwtAuthApp.Server/JwtAuthApp.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JwtAuthentication/JwtAuthApp.Server/JwtAuthApp.Server.csproj -------------------------------------------------------------------------------- /samples/JwtAuthentication/JwtAuthApp.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JwtAuthentication/JwtAuthApp.Server/Program.cs -------------------------------------------------------------------------------- /samples/JwtAuthentication/JwtAuthApp.Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JwtAuthentication/JwtAuthApp.Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/JwtAuthentication/JwtAuthApp.Server/Services/AccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JwtAuthentication/JwtAuthApp.Server/Services/AccountService.cs -------------------------------------------------------------------------------- /samples/JwtAuthentication/JwtAuthApp.Server/Services/GreeterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JwtAuthentication/JwtAuthApp.Server/Services/GreeterService.cs -------------------------------------------------------------------------------- /samples/JwtAuthentication/JwtAuthApp.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JwtAuthentication/JwtAuthApp.Server/appsettings.json -------------------------------------------------------------------------------- /samples/JwtAuthentication/JwtAuthApp.Shared/IAccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JwtAuthentication/JwtAuthApp.Shared/IAccountService.cs -------------------------------------------------------------------------------- /samples/JwtAuthentication/JwtAuthApp.Shared/IGreeterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JwtAuthentication/JwtAuthApp.Shared/IGreeterService.cs -------------------------------------------------------------------------------- /samples/JwtAuthentication/JwtAuthApp.Shared/ITimerHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JwtAuthentication/JwtAuthApp.Shared/ITimerHub.cs -------------------------------------------------------------------------------- /samples/JwtAuthentication/JwtAuthApp.Shared/JwtAuthApp.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/samples/JwtAuthentication/JwtAuthApp.Shared/JwtAuthApp.Shared.csproj -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/Client/IResponseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/Client/IResponseContext.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/ClientStreamingResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/ClientStreamingResult.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/DuplexStreamingResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/DuplexStreamingResult.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/DynamicArgumentTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/DynamicArgumentTuple.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/DynamicArgumentTuple.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/DynamicArgumentTuple.tt -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/GenerateDefineDebugAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/GenerateDefineDebugAttribute.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/GenerateIfDirectiveAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/GenerateIfDirectiveAttribute.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/IService.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/IStreamingHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/IStreamingHub.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/IgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/IgnoreAttribute.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/Internal/Box.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/Internal/Box.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/Internal/IAsyncGrpcCallWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/Internal/IAsyncGrpcCallWrapper.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/Internal/RawBytesBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/Internal/RawBytesBox.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/MagicOnion.Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/MagicOnion.Abstractions.csproj -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/Serialization/MagicOnionSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/Serialization/MagicOnionSerializer.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/Server/Hubs/MethodIdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/Server/Hubs/MethodIdAttribute.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/ServerStreamingResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/ServerStreamingResult.cs -------------------------------------------------------------------------------- /src/MagicOnion.Abstractions/UnaryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Abstractions/UnaryResult.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client.SourceGenerator/CodeAnalysis/MagicOnionTypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.SourceGenerator/CodeAnalysis/MagicOnionTypeInfo.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client.SourceGenerator/CodeAnalysis/MethodCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.SourceGenerator/CodeAnalysis/MethodCollector.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client.SourceGenerator/CodeAnalysis/MethodType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.SourceGenerator/CodeAnalysis/MethodType.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client.SourceGenerator/CodeAnalysis/ReferenceSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.SourceGenerator/CodeAnalysis/ReferenceSymbols.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client.SourceGenerator/CodeAnalysis/SerializationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.SourceGenerator/CodeAnalysis/SerializationInfo.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client.SourceGenerator/GenerationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.SourceGenerator/GenerationContext.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client.SourceGenerator/Helpers/RoslynExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.SourceGenerator/Helpers/RoslynExtensions.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client.SourceGenerator/Helpers/StringBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.SourceGenerator/Helpers/StringBuilderExtensions.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client.SourceGenerator/Helpers/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.SourceGenerator/Helpers/TypeExtensions.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client.SourceGenerator/Internal/FNV1A32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.SourceGenerator/Internal/FNV1A32.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client.SourceGenerator/MagicOnionClientSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.SourceGenerator/MagicOnionClientSourceGenerator.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/.gitignore -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/.vsconfig -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/NuGet.config -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/NuGet.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/NuGet.config.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Packages.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/Grpc.Core.Api.2.66.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Packages/Grpc.Core.Api.2.66.0.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/Grpc.Core.Api.2.66.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Packages/Grpc.Core.Api.2.66.0/README.md -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/Grpc.Core.Api.2.66.0/lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Packages/Grpc.Core.Api.2.66.0/lib.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/Grpc.Net.Client.2.66.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Packages/Grpc.Net.Client.2.66.0.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/Grpc.Net.Common.2.66.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Packages/Grpc.Net.Common.2.66.0.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/MessagePack.3.1.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Packages/MessagePack.3.1.0.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/MessagePack.3.1.0/lib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Packages/MessagePack.3.1.0/lib.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/MessagePackAnalyzer.3.1.0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Packages/MessagePackAnalyzer.3.1.0.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/Microsoft.Bcl.AsyncInterfaces.8.0.0/buildTransitive/net462/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/Microsoft.Bcl.AsyncInterfaces.8.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/Microsoft.Bcl.TimeProvider.8.0.1/buildTransitive/net462/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/Microsoft.Bcl.TimeProvider.8.0.1/buildTransitive/net6.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/Microsoft.Bcl.TimeProvider.8.0.1/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/Microsoft.Extensions.Logging.Abstractions.6.0.0/buildTransitive/netcoreapp3.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/Microsoft.Extensions.Logging.Abstractions.6.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/System.Collections.Immutable.8.0.0/buildTransitive/net462/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/System.Collections.Immutable.8.0.0/buildTransitive/net6.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/System.Collections.Immutable.8.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/System.Diagnostics.DiagnosticSource.6.0.1/buildTransitive/netcoreapp3.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/System.Diagnostics.DiagnosticSource.6.0.1/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/System.Runtime.CompilerServices.Unsafe.6.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/System.Threading.Channels.8.0.0/buildTransitive/net462/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/System.Threading.Channels.8.0.0/buildTransitive/net6.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Packages/System.Threading.Channels.8.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Resources.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Resources/BillingMode.json: -------------------------------------------------------------------------------- 1 | {"androidStore":"GooglePlay"} -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Resources/BillingMode.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Resources/BillingMode.json.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Scenes.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Scenes/Sandbox.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Scenes/Sandbox.unity -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Scenes/Sandbox.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Scenes/Sandbox.unity.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Scripts.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Scripts/Editor.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Scripts/Editor/PackageExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Scripts/Editor/PackageExporter.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Scripts/Editor/PackageExporter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Scripts/Editor/PackageExporter.cs.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Scripts/MagicOnion.Client.Unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Scripts/MagicOnion.Client.Unity.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/Scripts/RuntimeUnitTestToolkit.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/Scripts/RuntimeUnitTestToolkit.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/packages.config -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Assets/packages.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Assets/packages.config.meta -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/Packages/packages-lock.json -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client.Unity/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /src/MagicOnion.Client.Unity/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion.Client/ClientFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/ClientFilter.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/ClientHeartbeatEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/ClientHeartbeatEvent.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/DynamicClient/DynamicClientAssemblyHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/DynamicClient/DynamicClientAssemblyHolder.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/DynamicClient/DynamicClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/DynamicClient/DynamicClientBuilder.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/DynamicClient/DynamicStreamingHubClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/DynamicClient/DynamicStreamingHubClientBuilder.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/DynamicClient/RawMethodInvokerTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/DynamicClient/RawMethodInvokerTypes.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/DynamicClient/ServiceClientDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/DynamicClient/ServiceClientDefinition.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/IMagicOnionAwareGrpcChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/IMagicOnionAwareGrpcChannel.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/IMagicOnionClientLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/IMagicOnionClientLogger.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/IStreamingHubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/IStreamingHubClient.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/IStreamingHubDiagnosticHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/IStreamingHubDiagnosticHandler.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/Internal/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/Internal/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/Internal/InterceptInvokeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/Internal/InterceptInvokeHelper.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/Internal/MagicOnionMethodInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/Internal/MagicOnionMethodInvoker.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/Internal/StreamingHubClientHeartbeatManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/Internal/StreamingHubClientHeartbeatManager.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/Internal/StreamingHubResponseTaskSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/Internal/StreamingHubResponseTaskSource.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/MagicOnion.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/MagicOnion.Client.csproj -------------------------------------------------------------------------------- /src/MagicOnion.Client/MagicOnionClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/MagicOnionClient.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/MagicOnionClientBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/MagicOnionClientBase.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/MagicOnionClientFactoryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/MagicOnionClientFactoryProvider.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/MagicOnionClientGenerationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/MagicOnionClientGenerationAttribute.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /src/MagicOnion.Client/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/MagicOnion.Client/RequestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/RequestContext.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/ResponseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/ResponseContext.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/ServerHeartbeatEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/ServerHeartbeatEvent.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/StreamingHubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/StreamingHubClient.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/StreamingHubClientBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/StreamingHubClientBase.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/StreamingHubClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/StreamingHubClientExtensions.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/StreamingHubClientFactoryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/StreamingHubClientFactoryProvider.cs -------------------------------------------------------------------------------- /src/MagicOnion.Client/packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Client/packages.json -------------------------------------------------------------------------------- /src/MagicOnion.Internal/.DO_NOT_SHIP_OR_REFERENCE_THIS_PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/.DO_NOT_SHIP_OR_REFERENCE_THIS_PROJECT -------------------------------------------------------------------------------- /src/MagicOnion.Internal/BroadcasterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/BroadcasterHelper.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/Buffers/ArrayPoolBufferWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/Buffers/ArrayPoolBufferWriter.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/DangerousDummyNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/DangerousDummyNull.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/FNV1A32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/FNV1A32.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/GrpcMethodHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/GrpcMethodHelper.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/MagicOnion.Internal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/MagicOnion.Internal.csproj -------------------------------------------------------------------------------- /src/MagicOnion.Internal/MagicOnionAsyncStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/MagicOnionAsyncStreamReader.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/MagicOnionClientStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/MagicOnionClientStreamWriter.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/MagicOnionMarshallers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/MagicOnionMarshallers.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/MagicOnionServerStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/MagicOnionServerStreamWriter.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/Polyfil/RequiresUnreferencedCodeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/Polyfil/RequiresUnreferencedCodeAttribute.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/Polyfil/UnconditionalSuppressMessageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/Polyfil/UnconditionalSuppressMessageAttribute.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/Reflection/DynamicAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/Reflection/DynamicAssembly.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/Reflection/ILGeneratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/Reflection/ILGeneratorExtensions.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/StreamingHubClientMessageReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/StreamingHubClientMessageReader.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/StreamingHubMessageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/StreamingHubMessageWriter.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/StreamingHubPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/StreamingHubPayload.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/StreamingHubPayloadPool.BuiltIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/StreamingHubPayloadPool.BuiltIn.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/StreamingHubPayloadPool.ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/StreamingHubPayloadPool.ObjectPool.cs -------------------------------------------------------------------------------- /src/MagicOnion.Internal/StreamingHubServerMessageReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Internal/StreamingHubServerMessageReader.cs -------------------------------------------------------------------------------- /src/MagicOnion.Serialization.MemoryPack/MemoryPackMagicOnionSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Serialization.MemoryPack/MemoryPackMagicOnionSerializer.cs -------------------------------------------------------------------------------- /src/MagicOnion.Serialization.MemoryPack/PreserveAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Serialization.MemoryPack/PreserveAttribute.cs -------------------------------------------------------------------------------- /src/MagicOnion.Serialization.MessagePack/DynamicArgumentTupleFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Serialization.MessagePack/DynamicArgumentTupleFormatter.cs -------------------------------------------------------------------------------- /src/MagicOnion.Serialization.MessagePack/DynamicArgumentTupleFormatter.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Serialization.MessagePack/DynamicArgumentTupleFormatter.tt -------------------------------------------------------------------------------- /src/MagicOnion.Serialization.MessagePack/UnsafeDirectBlitResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Serialization.MessagePack/UnsafeDirectBlitResolver.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server.JsonTranscoding/MagicOnionJsonTranscodingMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server.JsonTranscoding/MagicOnionJsonTranscodingMetadata.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server.JsonTranscoding/MagicOnionJsonTranscodingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server.JsonTranscoding/MagicOnionJsonTranscodingOptions.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server.JsonTranscoding/NonDevelopmentEnvironmentGuard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server.JsonTranscoding/NonDevelopmentEnvironmentGuard.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server.JsonTranscoding/SystemTextJsonMessageSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server.JsonTranscoding/SystemTextJsonMessageSerializer.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server.Redis/MagicOnion.Server.Redis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server.Redis/MagicOnion.Server.Redis.csproj -------------------------------------------------------------------------------- /src/MagicOnion.Server.Redis/MagicOnionServerBuilderRedisExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server.Redis/MagicOnionServerBuilderRedisExtensions.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Binder/IMagicOnionGrpcMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Binder/IMagicOnionGrpcMethod.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Binder/IMagicOnionGrpcMethodBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Binder/IMagicOnionGrpcMethodBinder.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Binder/IMagicOnionGrpcMethodProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Binder/IMagicOnionGrpcMethodProvider.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Binder/Internal/DynamicMagicOnionMethodProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Binder/Internal/DynamicMagicOnionMethodProvider.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Binder/Internal/MagicOnionGrpcMethodBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Binder/Internal/MagicOnionGrpcMethodBinder.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Binder/Internal/MagicOnionGrpcMethodHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Binder/Internal/MagicOnionGrpcMethodHandler.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Binder/MagicOnionClientStreamingMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Binder/MagicOnionClientStreamingMethod.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Binder/MagicOnionDuplexStreamingMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Binder/MagicOnionDuplexStreamingMethod.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Binder/MagicOnionServerStreamingMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Binder/MagicOnionServerStreamingMethod.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Binder/MagicOnionStreamingHubConnectMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Binder/MagicOnionStreamingHubConnectMethod.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Binder/MagicOnionStreamingHubMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Binder/MagicOnionStreamingHubMethod.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Binder/MagicOnionUnaryMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Binder/MagicOnionUnaryMethod.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Diagnostics/MagicOnionMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Diagnostics/MagicOnionMetrics.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Diagnostics/MagicOnionServerLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Diagnostics/MagicOnionServerLog.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Extensions/MagicOnionServicesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Extensions/MagicOnionServicesExtensions.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Features/IMagicOnionHeartbeatFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Features/IMagicOnionHeartbeatFeature.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Features/Internal/IStreamingHubFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Features/Internal/IStreamingHubFeature.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Filters/IMagicOnionFilterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Filters/IMagicOnionFilterFactory.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Filters/IMagicOnionFilterMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Filters/IMagicOnionFilterMetadata.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Filters/IMagicOnionOrderedFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Filters/IMagicOnionOrderedFilter.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Filters/IMagicOnionServiceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Filters/IMagicOnionServiceFilter.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Filters/IStreamingHubFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Filters/IStreamingHubFilter.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Filters/Internal/FilterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Filters/Internal/FilterHelper.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Filters/Internal/InvokeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Filters/Internal/InvokeHelper.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Filters/MagicOnionFilterDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Filters/MagicOnionFilterDescriptor.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Filters/MagicOnionFilterDescriptorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Filters/MagicOnionFilterDescriptorExtensions.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/FromServiceFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/FromServiceFilterAttribute.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/FromTypeFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/FromTypeFilterAttribute.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Hubs/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Hubs/Group.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Hubs/GroupConfigurationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Hubs/GroupConfigurationAttribute.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Hubs/HeartbeatAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Hubs/HeartbeatAttribute.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Hubs/HubGroupRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Hubs/HubGroupRepository.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Hubs/IStreamingHubHeartbeatMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Hubs/IStreamingHubHeartbeatMetadataProvider.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Hubs/Internal/MagicOnionManagedGroupProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Hubs/Internal/MagicOnionManagedGroupProvider.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Hubs/Internal/MagicOnionRemoteReceiverWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Hubs/Internal/MagicOnionRemoteReceiverWriter.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Hubs/Internal/MagicOnionRemoteSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Hubs/Internal/MagicOnionRemoteSerializer.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Hubs/Internal/StreamingHubHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Hubs/Internal/StreamingHubHandler.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Hubs/Internal/StreamingHubHeartbeatManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Hubs/Internal/StreamingHubHeartbeatManager.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Hubs/Internal/StreamingHubPayloadBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Hubs/Internal/StreamingHubPayloadBuilder.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Hubs/Internal/StreamingHubRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Hubs/Internal/StreamingHubRegistry.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Hubs/StreamingHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Hubs/StreamingHub.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Hubs/StreamingHubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Hubs/StreamingHubContext.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Hubs/StreamingHubFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Hubs/StreamingHubFilterAttribute.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/IMagicOnionServerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/IMagicOnionServerBuilder.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Internal/IServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Internal/IServiceBase.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Internal/IStreamingHubBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Internal/IStreamingHubBase.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Internal/MagicOnionServiceMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Internal/MagicOnionServiceMarker.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Internal/MagicOnionServicesDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Internal/MagicOnionServicesDiscoverer.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Internal/MethodHandlerMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Internal/MethodHandlerMetadata.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Internal/QueuedResponseWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Internal/QueuedResponseWriter.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Internal/UniqueHashDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Internal/UniqueHashDictionary.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/MagicOnion.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/MagicOnion.Server.csproj -------------------------------------------------------------------------------- /src/MagicOnion.Server/MagicOnionFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/MagicOnionFilterAttribute.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/MagicOnionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/MagicOnionOptions.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/MagicOnionServerInternalLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/MagicOnionServerInternalLogger.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/ReturnStatusException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/ReturnStatusException.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/Service.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/ServiceContext.Streaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/ServiceContext.Streaming.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/ServiceContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/ServiceContext.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/StreamingContext.Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/StreamingContext.Client.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/StreamingContext.Duplex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/StreamingContext.Duplex.cs -------------------------------------------------------------------------------- /src/MagicOnion.Server/StreamingContext.Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Server/StreamingContext.Server.cs -------------------------------------------------------------------------------- /src/MagicOnion.Shared/MagicOnion.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Shared/MagicOnion.Shared.csproj -------------------------------------------------------------------------------- /src/MagicOnion.Shared/MetadataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Shared/MetadataExtensions.cs -------------------------------------------------------------------------------- /src/MagicOnion.Shared/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Shared/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /src/MagicOnion.Shared/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- 1 | #nullable enable 2 | -------------------------------------------------------------------------------- /src/MagicOnion.Shared/Serialization/MagicOnionSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Shared/Serialization/MagicOnionSerializer.cs -------------------------------------------------------------------------------- /src/MagicOnion.Shared/opensource.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion.Shared/opensource.snk -------------------------------------------------------------------------------- /src/MagicOnion/MagicOnion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/src/MagicOnion/MagicOnion.csproj -------------------------------------------------------------------------------- /src/MagicOnion/lib/net6.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/MagicOnion/lib/net8.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/MagicOnion.Abstractions.Tests/BoxTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Abstractions.Tests/BoxTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Abstractions.Tests/MagicOnion.Abstractions.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Abstractions.Tests/MagicOnion.Abstractions.Tests.csproj -------------------------------------------------------------------------------- /tests/MagicOnion.Abstractions.Tests/UnaryResultNonGenericTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Abstractions.Tests/UnaryResultNonGenericTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Abstractions.Tests/UnaryResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Abstractions.Tests/UnaryResultTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Abstractions.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Abstractions.Tests/Usings.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.NativeAot.Tests/IUnaryTestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.NativeAot.Tests/IUnaryTestService.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.NativeAot.Tests/MSTestSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.NativeAot.Tests/MSTestSettings.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.NativeAot.Tests/MockCallInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.NativeAot.Tests/MockCallInvoker.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.NativeAot.Tests/ResolverTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.NativeAot.Tests/ResolverTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.NativeAot.Tests/UnaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.NativeAot.Tests/UnaryTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.NativeAot.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.NativeAot.Tests/Usings.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.SourceGenerator.Tests/CompilationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.SourceGenerator.Tests/CompilationHelper.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.SourceGenerator.Tests/GenerateEnumFormatterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.SourceGenerator.Tests/GenerateEnumFormatterTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.SourceGenerator.Tests/GenerateGenericsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.SourceGenerator.Tests/GenerateGenericsTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.SourceGenerator.Tests/GenerateMemoryPackTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.SourceGenerator.Tests/GenerateMemoryPackTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.SourceGenerator.Tests/GenerateNullableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.SourceGenerator.Tests/GenerateNullableTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.SourceGenerator.Tests/GenerateRawStreamingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.SourceGenerator.Tests/GenerateRawStreamingTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.SourceGenerator.Tests/GenerateServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.SourceGenerator.Tests/GenerateServiceTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.SourceGenerator.Tests/GenerateStreamingHubTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.SourceGenerator.Tests/GenerateStreamingHubTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.SourceGenerator.Tests/GenerateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.SourceGenerator.Tests/GenerateTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.SourceGenerator.Tests/GeneratorOptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.SourceGenerator.Tests/GeneratorOptionsTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.SourceGenerator.Tests/RunTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.SourceGenerator.Tests/RunTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.SourceGenerator.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; 2 | -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/ChannelAsyncStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/ChannelAsyncStreamReader.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/ChannelClientStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/ChannelClientStreamWriter.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/ClientFilterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/ClientFilterTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/ClientStreamingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/ClientStreamingTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/DuplexStreamingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/DuplexStreamingTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/DynamicClient/SameInterfaceNameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/DynamicClient/SameInterfaceNameTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/DynamicClient/ServiceClientDefinitionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/DynamicClient/ServiceClientDefinitionTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/MagicOnion.Client.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/MagicOnion.Client.Tests.csproj -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/MockAsyncStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/MockAsyncStreamReader.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/MockClientStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/MockClientStreamWriter.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/MockSerializationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/MockSerializationContext.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/ServerStreamingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/ServerStreamingTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/StreamingHubClientHeartbeatManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/StreamingHubClientHeartbeatManagerTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/StreamingHubClientTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/StreamingHubClientTestHelper.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/StreamingHubTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/StreamingHubTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/UnaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/UnaryTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Client.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Client.Tests/Usings.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/ClientFilterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/ClientFilterTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/DynamicArgumentTupleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/DynamicArgumentTupleTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/HandCraftedStreamingHubClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/HandCraftedStreamingHubClientTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/MagicOnion.Integration.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/MagicOnion.Integration.Tests.csproj -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/MagicOnionGeneratedClientInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/MagicOnionGeneratedClientInitializer.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/SerializerStreamingHubTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/SerializerStreamingHubTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/SerializerUnaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/SerializerUnaryTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/StreamingHubClientResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/StreamingHubClientResultTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/StreamingHubInterfaceInheritanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/StreamingHubInterfaceInheritanceTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/StreamingHubStressTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/StreamingHubStressTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/StreamingHubTest.UnknownMethodId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/StreamingHubTest.UnknownMethodId.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/StreamingHubTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/StreamingHubTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/StreamingServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/StreamingServiceTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/TestMagicOnionClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/TestMagicOnionClientFactory.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/TestStreamingHubClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/TestStreamingHubClientFactory.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/UnaryServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/UnaryServiceTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/Usings.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Integration.Tests/XorMessagePackMagicOnionSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Integration.Tests/XorMessagePackMagicOnionSerializer.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Serialization.MemoryPack.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Serialization.MemoryPack.Tests/Usings.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Serialization.MessagePack.Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /tests/MagicOnion.Server.InternalTesting/MagicOnionApplicationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.InternalTesting/MagicOnionApplicationFactory.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.JsonTranscoding.Tests/NonUnaryMethodsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.JsonTranscoding.Tests/NonUnaryMethodsTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.JsonTranscoding.Tests/UnaryFunctionalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.JsonTranscoding.Tests/UnaryFunctionalTests.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.JsonTranscoding.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.JsonTranscoding.Tests/Usings.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Redis.Tests/MagicOnion.Server.Redis.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Redis.Tests/MagicOnion.Server.Redis.Tests.csproj -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Redis.Tests/RedisGroupFunctionalTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Redis.Tests/RedisGroupFunctionalTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Redis.Tests/TemporaryRedisServerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Redis.Tests/TemporaryRedisServerFixture.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Redis.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Redis.Tests/Usings.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/ArgumentPatternTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/ArgumentPatternTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/AssemblyAttributes.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/AuthorizeServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/AuthorizeServiceTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/AuthorizeStreamingHubTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/AuthorizeStreamingHubTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/DynamicMagicOnionMethodProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/DynamicMagicOnionMethodProviderTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/FakeStreamingServiceContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/FakeStreamingServiceContext.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/Filter/FilterHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/Filter/FilterHelperTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/Filter/MagicOnionFilterDescriptorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/Filter/MagicOnionFilterDescriptorTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/FilterConstructorInjectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/FilterConstructorInjectionTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/FilterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/FilterTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/HandCraftedMagicOnionMethodProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/HandCraftedMagicOnionMethodProviderTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/InterfaceInheritanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/InterfaceInheritanceTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/MagicOnion.Server.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/MagicOnion.Server.Tests.csproj -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/MagicOnionEngineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/MagicOnionEngineTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/MagicOnionGrpcMethodTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/MagicOnionGrpcMethodTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/MagicOnionGrpcServiceMappingContextTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/MagicOnionGrpcServiceMappingContextTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/MagicOnionMetricsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/MagicOnionMetricsTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/MethodHandlerMetadataFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/MethodHandlerMetadataFactoryTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/PartialDefinitionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/PartialDefinitionTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/RawBytesResponseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/RawBytesResponseTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/ReturnStatusTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/ReturnStatusTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/ServerErrorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/ServerErrorTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/StreamingHubBroadcastTest/GroupTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/StreamingHubBroadcastTest/GroupTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/StreamingHubDisconnectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/StreamingHubDisconnectionTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/StreamingHubHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/StreamingHubHandlerTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/StreamingHubTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/StreamingHubTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/StreamingHubThrowOnDisconnectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/StreamingHubThrowOnDisconnectTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/UnaryServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/UnaryServiceTest.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/UnaryTestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/UnaryTestService.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/XorMessagePackMagicOnionSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/XorMessagePackMagicOnionSerializer.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/_GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/_GlobalUsings.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/_ServerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/_ServerFixture.cs -------------------------------------------------------------------------------- /tests/MagicOnion.Server.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/MagicOnion.Server.Tests/xunit.runner.json -------------------------------------------------------------------------------- /tests/samples/AuthSample/AuthSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/AuthSample/AuthSample.csproj -------------------------------------------------------------------------------- /tests/samples/AuthSample/FakeAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/AuthSample/FakeAuthenticationHandler.cs -------------------------------------------------------------------------------- /tests/samples/AuthSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/AuthSample/Program.cs -------------------------------------------------------------------------------- /tests/samples/AuthSample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/AuthSample/Properties/launchSettings.json -------------------------------------------------------------------------------- /tests/samples/AuthSample/ServicesAndHubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/AuthSample/ServicesAndHubs.cs -------------------------------------------------------------------------------- /tests/samples/AuthSample/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/AuthSample/appsettings.Development.json -------------------------------------------------------------------------------- /tests/samples/AuthSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/AuthSample/appsettings.json -------------------------------------------------------------------------------- /tests/samples/MagicOnionEngineTest/Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionEngineTest/Abstract.cs -------------------------------------------------------------------------------- /tests/samples/MagicOnionEngineTest/Generics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionEngineTest/Generics.cs -------------------------------------------------------------------------------- /tests/samples/MagicOnionEngineTest/Ignored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionEngineTest/Ignored.cs -------------------------------------------------------------------------------- /tests/samples/MagicOnionEngineTest/MagicOnionEngineTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionEngineTest/MagicOnionEngineTest.csproj -------------------------------------------------------------------------------- /tests/samples/MagicOnionEngineTest/Non-Public.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionEngineTest/Non-Public.cs -------------------------------------------------------------------------------- /tests/samples/MagicOnionEngineTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionEngineTest/Program.cs -------------------------------------------------------------------------------- /tests/samples/MagicOnionEngineTest/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionEngineTest/Properties/launchSettings.json -------------------------------------------------------------------------------- /tests/samples/MagicOnionEngineTest/Public.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionEngineTest/Public.cs -------------------------------------------------------------------------------- /tests/samples/MagicOnionEngineTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionEngineTest/README.md -------------------------------------------------------------------------------- /tests/samples/MagicOnionEngineTest/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionEngineTest/appsettings.Development.json -------------------------------------------------------------------------------- /tests/samples/MagicOnionEngineTest/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionEngineTest/appsettings.json -------------------------------------------------------------------------------- /tests/samples/MagicOnionTestServer/MagicOnionTestServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionTestServer/MagicOnionTestServer.csproj -------------------------------------------------------------------------------- /tests/samples/MagicOnionTestServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionTestServer/Program.cs -------------------------------------------------------------------------------- /tests/samples/MagicOnionTestServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionTestServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /tests/samples/MagicOnionTestServer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionTestServer/appsettings.Development.json -------------------------------------------------------------------------------- /tests/samples/MagicOnionTestServer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/MagicOnionTestServer/appsettings.json -------------------------------------------------------------------------------- /tests/samples/SampleServiceDefinitions/SampleServiceDefinitions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/SampleServiceDefinitions/SampleServiceDefinitions.csproj -------------------------------------------------------------------------------- /tests/samples/SampleServiceDefinitions/Services/IGreeterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cysharp/MagicOnion/HEAD/tests/samples/SampleServiceDefinitions/Services/IGreeterService.cs --------------------------------------------------------------------------------