├── .gitattributes ├── .github ├── copilot-instructions.md └── workflows │ ├── benchmarks.yml │ ├── dev-ci.yml │ ├── prod-ci.yml │ └── validation-build.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── SpaceSolution.sln ├── docs ├── Contribution.md ├── DeveloperRecommendations.md ├── Handlers.md ├── KnownIssues.md ├── Modules.md ├── MultiProjectSetup.md ├── Notifications.md ├── Pipelines.md ├── PlannedImprovements.md ├── ProjectDoc.en.md ├── ProjectDoc.txt ├── Versioning.md └── VoidLikeHandlers.md ├── dotnet-install.sh ├── src ├── Space.Abstraction │ ├── Attributes │ │ ├── HandleAttribute.cs │ │ ├── NotificationAttribute.cs │ │ └── PipelineAttribute.cs │ ├── BaseConfig.cs │ ├── Context │ │ ├── BaseContext.cs │ │ ├── ContextExtensions.cs │ │ ├── HandlerContext.cs │ │ ├── HandlerContextPool.cs │ │ ├── LightHandlerContext.cs │ │ ├── NotificationContext.cs │ │ ├── NotificationContextPool.cs │ │ ├── PipelineContext.cs │ │ └── PipelineContextPool.cs │ ├── Contracts │ │ └── SpaceContracts.cs │ ├── Exceptions │ │ ├── ModuleProviderAlreadySetException.cs │ │ ├── ModuleProviderFactoryAlreadySetException.cs │ │ ├── ModuleProviderFactoryNullException.cs │ │ ├── ModuleProviderNullException.cs │ │ ├── NotificationHandlerNullException.cs │ │ ├── NotificationRegistryNotSealedException.cs │ │ ├── NotificationRegistrySealedException.cs │ │ ├── SpaceAssemblyLoadException.cs │ │ ├── SpaceExceptions.cs │ │ ├── SpaceGeneratedInvocationException.cs │ │ ├── SpaceGeneratedMethodNotFoundException.cs │ │ ├── SpaceModuleAttributeInvalidException.cs │ │ └── SpaceModuleRegistrationMissingException.cs │ ├── Extensions │ │ └── TaskExtensions.cs │ ├── GlobalUsings.cs │ ├── Helpers │ │ ├── LightInvokerHelper.cs │ │ └── SpaceGeneratorRuntimeHelpers.cs │ ├── ISpace.cs │ ├── Modules │ │ ├── Audit │ │ │ ├── AuditModule.cs │ │ │ ├── AuditModuleAttribute.cs │ │ │ ├── AuditModuleConfig.cs │ │ │ ├── AuditModuleConfigExtension.cs │ │ │ ├── AuditModuleOptions.cs │ │ │ ├── AuditModulePipelineWrapper.cs │ │ │ ├── AuditSettingsPropertiesMapper.cs │ │ │ ├── IAuditModuleProvider.cs │ │ │ ├── IAuditSettingsProperties.cs │ │ │ └── NullAuditModuleProvider.cs │ │ ├── BaseModuleOptions.cs │ │ ├── Contracts │ │ │ └── ISpaceModuleAttribute.cs │ │ ├── IModuleGlobalOptionsAccessor.cs │ │ ├── ModuleConfig.cs │ │ ├── ModuleConfigMerge.cs │ │ ├── ModuleConstants.cs │ │ ├── ModuleFactory.cs │ │ ├── ModulePipelineWrapper.cs │ │ ├── Retry │ │ │ ├── DefaultRetryModuleProvider.cs │ │ │ ├── IRetryModuleProvider.cs │ │ │ ├── IRetrySettingsProperties.cs │ │ │ ├── RetryModule.cs │ │ │ ├── RetryModuleAttribute.cs │ │ │ ├── RetryModuleConfig.cs │ │ │ ├── RetryModuleDependencyInjectionExtensions.cs │ │ │ ├── RetryModuleOptions.cs │ │ │ ├── RetryModulePipelineWrapper.cs │ │ │ └── RetrySettingsPropertiesMapper.cs │ │ ├── SpaceModule.cs │ │ └── SpaceModuleAttribute.cs │ ├── Nothing.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── Registry │ │ ├── Dispatchers │ │ │ ├── INotificationDispatcher.cs │ │ │ ├── ParallelNotificationDispatcher.cs │ │ │ └── SequentialNotificationDispatcher.cs │ │ ├── HandlerEntry.cs │ │ ├── HandlerRegistry.cs │ │ ├── NotificationRegistry.cs │ │ └── SpaceRegistry.cs │ ├── Space.Abstraction.csproj │ ├── SpaceOptions.cs │ └── icon.png ├── Space.DependencyInjection │ ├── Constants.cs │ ├── GlobalUsings.cs │ ├── README.md │ ├── ServiceCollectionExtensions.cs │ ├── Space.DependencyInjection.csproj │ ├── Space.cs │ ├── SpaceExtensions.cs │ └── icon.png └── Space.SourceGenerator │ ├── Compile │ ├── BaseCompileModel.cs │ ├── HandlersCompileModel.cs │ ├── HandlersCompileWrapperModel.cs │ ├── ModuleCompileModel.cs │ ├── NotificationCompileModel.cs │ └── PipelineCompileModel.cs │ ├── Constants.cs │ ├── Diagnostics │ ├── DiagnosticGenerator.cs │ └── Rules │ │ ├── HandleAttributeRule.cs │ │ ├── IDiagnosticRule.cs │ │ ├── MissingHandlerAttributeRule.cs │ │ ├── MissingNotificationAttributeRule.cs │ │ ├── MissingPipelineAttributeRule.cs │ │ ├── MultipleDefaultHandleRule.cs │ │ ├── NotificationAttributeRule.cs │ │ ├── PipelineAttributeRule.cs │ │ ├── PipelineVoidConflictRule.cs │ │ └── SendGenericResponseMismatchRule.cs │ ├── Extensions │ ├── MethodSymbolExtensions.cs │ └── StringExtensions.cs │ ├── Generators │ ├── DependencyInjectionGenerator.cs │ └── ModuleGenerator.cs │ ├── Helpers │ └── EmbeddedResource.cs │ ├── Resources │ ├── AssemblyRegistration.scr │ ├── DependencyInjectionExtensions.scr │ └── ModuleGenerationTemplate.scr │ ├── Scanning │ ├── HandlerScanner.cs │ ├── ModuleScanners.cs │ ├── NotificationScanner.cs │ └── PipelineScanner.cs │ ├── SourceGenConstants.cs │ ├── Space.SourceGenerator.csproj │ ├── SpaceSourceGenerator.cs │ └── icon.png └── tests ├── MultiProjects ├── MultiLibs │ ├── ApiProject │ │ ├── ApiProject.csproj │ │ ├── ApiProject.http │ │ ├── Controllers │ │ │ └── WeatherForecastController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── Lib1 │ │ ├── Class1.cs │ │ └── Lib1.csproj └── NuGetLoaded │ ├── ApiHost │ ├── ApiHost.csproj │ ├── ApiHost.http │ ├── Program.cs │ └── Properties │ │ └── launchSettings.json │ ├── LibAlpha │ ├── AlphaHandlers.cs │ └── LibAlpha.csproj │ ├── LibBeta │ ├── BetaHandlers.cs │ └── LibBeta.csproj │ └── README.md ├── Space.Benchmarks ├── BenchmarkResults │ ├── 2025-09-12 │ │ ├── meta.md │ │ └── results │ │ │ ├── HandlerOnlyBench-report-github.md │ │ │ ├── HandlerWithPipelineBench-report-github.md │ │ │ ├── NotificationsSequentialBench-report-github.md │ │ │ └── Space.Benchmarks.Notification.NotificationsParallelBench-report-github.md │ ├── 2025-09-13 │ │ ├── meta.md │ │ └── results │ │ │ ├── HandlerOnlyBench-report-github.md │ │ │ └── Space.Benchmarks.Space.SendBenchmarks-report-github.md │ ├── 2025-09-18 │ │ ├── meta.md │ │ └── results │ │ │ ├── HandlerOnlyBench-report-github.md │ │ │ ├── HandlerWithPipelineBench-report-github.md │ │ │ ├── NotificationsSequentialBench-report-github.md │ │ │ ├── Space.Benchmarks.Notification.NotificationsParallelBench-report-github.md │ │ │ └── Space.Benchmarks.Space.SendBenchmarks-report-github.md │ ├── 2025-09-27 │ │ ├── meta.md │ │ └── results │ │ │ └── HandlerOnlyBench-report-github.md │ └── 2025-11-07 │ │ ├── meta.md │ │ └── results │ │ ├── HandlerOnlyBench-report-github.md │ │ ├── HandlerWithPipelineBench-report-github.md │ │ ├── NotificationsSequentialBench-report-github.md │ │ ├── Space.Benchmarks.Notification.NotificationsParallelBench-report-github.md │ │ └── Space.Benchmarks.Space.SendBenchmarks-report-github.md ├── Handler │ └── HandlerOnlyBench.cs ├── Notification │ ├── NotificationsParallelBench.cs │ └── NotificationsSequentialBench.cs ├── Pipeline │ └── HandlerWithPipelineBench.cs ├── Program.cs ├── Space.Benchmarks.csproj └── Space │ └── SendBenchmarks.cs ├── Space.TestConsole ├── Program.cs ├── Services │ ├── DataService.cs │ └── IDataService.cs └── Space.TestConsole.csproj └── Space.Tests ├── Attributes ├── HandleAttributeTests.cs └── PipelineAttributeTests.cs ├── Diagnostics └── HandleVoidConflictTests.cs ├── Handle ├── HandleTests.cs ├── HandlerKeyCollisionTests.cs ├── HandlerModuleTests.cs ├── IRequestSendTests.cs ├── NothingHandlerTests.cs └── VoidLikeHandlerTests.cs ├── MSTestSettings.cs ├── Module ├── AuditModuleTests.cs └── RetryModuleTests.cs ├── Notification └── NotificationTests.cs ├── Pipeline └── PipelineTests.cs ├── Send └── StructSendTests.cs └── Space.Tests.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/benchmarks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/.github/workflows/benchmarks.yml -------------------------------------------------------------------------------- /.github/workflows/dev-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/.github/workflows/dev-ci.yml -------------------------------------------------------------------------------- /.github/workflows/prod-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/.github/workflows/prod-ci.yml -------------------------------------------------------------------------------- /.github/workflows/validation-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/.github/workflows/validation-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/README.md -------------------------------------------------------------------------------- /SpaceSolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/SpaceSolution.sln -------------------------------------------------------------------------------- /docs/Contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/docs/Contribution.md -------------------------------------------------------------------------------- /docs/DeveloperRecommendations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/docs/DeveloperRecommendations.md -------------------------------------------------------------------------------- /docs/Handlers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/docs/Handlers.md -------------------------------------------------------------------------------- /docs/KnownIssues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/docs/KnownIssues.md -------------------------------------------------------------------------------- /docs/Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/docs/Modules.md -------------------------------------------------------------------------------- /docs/MultiProjectSetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/docs/MultiProjectSetup.md -------------------------------------------------------------------------------- /docs/Notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/docs/Notifications.md -------------------------------------------------------------------------------- /docs/Pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/docs/Pipelines.md -------------------------------------------------------------------------------- /docs/PlannedImprovements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/docs/PlannedImprovements.md -------------------------------------------------------------------------------- /docs/ProjectDoc.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/docs/ProjectDoc.en.md -------------------------------------------------------------------------------- /docs/ProjectDoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/docs/ProjectDoc.txt -------------------------------------------------------------------------------- /docs/Versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/docs/Versioning.md -------------------------------------------------------------------------------- /docs/VoidLikeHandlers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/docs/VoidLikeHandlers.md -------------------------------------------------------------------------------- /dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/dotnet-install.sh -------------------------------------------------------------------------------- /src/Space.Abstraction/Attributes/HandleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Attributes/HandleAttribute.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Attributes/NotificationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Attributes/NotificationAttribute.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Attributes/PipelineAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Attributes/PipelineAttribute.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/BaseConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/BaseConfig.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Context/BaseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Context/BaseContext.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Context/ContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Context/ContextExtensions.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Context/HandlerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Context/HandlerContext.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Context/HandlerContextPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Context/HandlerContextPool.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Context/LightHandlerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Context/LightHandlerContext.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Context/NotificationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Context/NotificationContext.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Context/NotificationContextPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Context/NotificationContextPool.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Context/PipelineContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Context/PipelineContext.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Context/PipelineContextPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Context/PipelineContextPool.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Contracts/SpaceContracts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Contracts/SpaceContracts.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Exceptions/ModuleProviderAlreadySetException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Exceptions/ModuleProviderAlreadySetException.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Exceptions/ModuleProviderFactoryAlreadySetException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Exceptions/ModuleProviderFactoryAlreadySetException.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Exceptions/ModuleProviderFactoryNullException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Exceptions/ModuleProviderFactoryNullException.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Exceptions/ModuleProviderNullException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Exceptions/ModuleProviderNullException.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Exceptions/NotificationHandlerNullException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Exceptions/NotificationHandlerNullException.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Exceptions/NotificationRegistryNotSealedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Exceptions/NotificationRegistryNotSealedException.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Exceptions/NotificationRegistrySealedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Exceptions/NotificationRegistrySealedException.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Exceptions/SpaceAssemblyLoadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Exceptions/SpaceAssemblyLoadException.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Exceptions/SpaceExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Exceptions/SpaceExceptions.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Exceptions/SpaceGeneratedInvocationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Exceptions/SpaceGeneratedInvocationException.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Exceptions/SpaceGeneratedMethodNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Exceptions/SpaceGeneratedMethodNotFoundException.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Exceptions/SpaceModuleAttributeInvalidException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Exceptions/SpaceModuleAttributeInvalidException.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Exceptions/SpaceModuleRegistrationMissingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Exceptions/SpaceModuleRegistrationMissingException.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Extensions/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Extensions/TaskExtensions.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Helpers/LightInvokerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Helpers/LightInvokerHelper.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Helpers/SpaceGeneratorRuntimeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Helpers/SpaceGeneratorRuntimeHelpers.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/ISpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/ISpace.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Audit/AuditModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Audit/AuditModule.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Audit/AuditModuleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Audit/AuditModuleAttribute.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Audit/AuditModuleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Audit/AuditModuleConfig.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Audit/AuditModuleConfigExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Audit/AuditModuleConfigExtension.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Audit/AuditModuleOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Audit/AuditModuleOptions.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Audit/AuditModulePipelineWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Audit/AuditModulePipelineWrapper.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Audit/AuditSettingsPropertiesMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Audit/AuditSettingsPropertiesMapper.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Audit/IAuditModuleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Audit/IAuditModuleProvider.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Audit/IAuditSettingsProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Audit/IAuditSettingsProperties.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Audit/NullAuditModuleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Audit/NullAuditModuleProvider.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/BaseModuleOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/BaseModuleOptions.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Contracts/ISpaceModuleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Contracts/ISpaceModuleAttribute.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/IModuleGlobalOptionsAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/IModuleGlobalOptionsAccessor.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/ModuleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/ModuleConfig.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/ModuleConfigMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/ModuleConfigMerge.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/ModuleConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/ModuleConstants.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/ModuleFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/ModuleFactory.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/ModulePipelineWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/ModulePipelineWrapper.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Retry/DefaultRetryModuleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Retry/DefaultRetryModuleProvider.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Retry/IRetryModuleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Retry/IRetryModuleProvider.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Retry/IRetrySettingsProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Retry/IRetrySettingsProperties.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Retry/RetryModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Retry/RetryModule.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Retry/RetryModuleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Retry/RetryModuleAttribute.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Retry/RetryModuleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Retry/RetryModuleConfig.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Retry/RetryModuleDependencyInjectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Retry/RetryModuleDependencyInjectionExtensions.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Retry/RetryModuleOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Retry/RetryModuleOptions.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Retry/RetryModulePipelineWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Retry/RetryModulePipelineWrapper.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/Retry/RetrySettingsPropertiesMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/Retry/RetrySettingsPropertiesMapper.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/SpaceModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/SpaceModule.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Modules/SpaceModuleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Modules/SpaceModuleAttribute.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Nothing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Nothing.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/README.md -------------------------------------------------------------------------------- /src/Space.Abstraction/Registry/Dispatchers/INotificationDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Registry/Dispatchers/INotificationDispatcher.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Registry/Dispatchers/ParallelNotificationDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Registry/Dispatchers/ParallelNotificationDispatcher.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Registry/Dispatchers/SequentialNotificationDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Registry/Dispatchers/SequentialNotificationDispatcher.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Registry/HandlerEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Registry/HandlerEntry.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Registry/HandlerRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Registry/HandlerRegistry.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Registry/NotificationRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Registry/NotificationRegistry.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Registry/SpaceRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Registry/SpaceRegistry.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/Space.Abstraction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/Space.Abstraction.csproj -------------------------------------------------------------------------------- /src/Space.Abstraction/SpaceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/SpaceOptions.cs -------------------------------------------------------------------------------- /src/Space.Abstraction/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.Abstraction/icon.png -------------------------------------------------------------------------------- /src/Space.DependencyInjection/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.DependencyInjection/Constants.cs -------------------------------------------------------------------------------- /src/Space.DependencyInjection/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.DependencyInjection/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Space.DependencyInjection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.DependencyInjection/README.md -------------------------------------------------------------------------------- /src/Space.DependencyInjection/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.DependencyInjection/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Space.DependencyInjection/Space.DependencyInjection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.DependencyInjection/Space.DependencyInjection.csproj -------------------------------------------------------------------------------- /src/Space.DependencyInjection/Space.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.DependencyInjection/Space.cs -------------------------------------------------------------------------------- /src/Space.DependencyInjection/SpaceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.DependencyInjection/SpaceExtensions.cs -------------------------------------------------------------------------------- /src/Space.DependencyInjection/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.DependencyInjection/icon.png -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Compile/BaseCompileModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Compile/BaseCompileModel.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Compile/HandlersCompileModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Compile/HandlersCompileModel.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Compile/HandlersCompileWrapperModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Compile/HandlersCompileWrapperModel.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Compile/ModuleCompileModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Compile/ModuleCompileModel.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Compile/NotificationCompileModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Compile/NotificationCompileModel.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Compile/PipelineCompileModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Compile/PipelineCompileModel.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Constants.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Diagnostics/DiagnosticGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Diagnostics/DiagnosticGenerator.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Diagnostics/Rules/HandleAttributeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Diagnostics/Rules/HandleAttributeRule.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Diagnostics/Rules/IDiagnosticRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Diagnostics/Rules/IDiagnosticRule.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Diagnostics/Rules/MissingHandlerAttributeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Diagnostics/Rules/MissingHandlerAttributeRule.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Diagnostics/Rules/MissingNotificationAttributeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Diagnostics/Rules/MissingNotificationAttributeRule.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Diagnostics/Rules/MissingPipelineAttributeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Diagnostics/Rules/MissingPipelineAttributeRule.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Diagnostics/Rules/MultipleDefaultHandleRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Diagnostics/Rules/MultipleDefaultHandleRule.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Diagnostics/Rules/NotificationAttributeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Diagnostics/Rules/NotificationAttributeRule.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Diagnostics/Rules/PipelineAttributeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Diagnostics/Rules/PipelineAttributeRule.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Diagnostics/Rules/PipelineVoidConflictRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Diagnostics/Rules/PipelineVoidConflictRule.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Diagnostics/Rules/SendGenericResponseMismatchRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Diagnostics/Rules/SendGenericResponseMismatchRule.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Extensions/MethodSymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Extensions/MethodSymbolExtensions.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Generators/DependencyInjectionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Generators/DependencyInjectionGenerator.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Generators/ModuleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Generators/ModuleGenerator.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Helpers/EmbeddedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Helpers/EmbeddedResource.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Resources/AssemblyRegistration.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Resources/AssemblyRegistration.scr -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Resources/DependencyInjectionExtensions.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Resources/DependencyInjectionExtensions.scr -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Resources/ModuleGenerationTemplate.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Resources/ModuleGenerationTemplate.scr -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Scanning/HandlerScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Scanning/HandlerScanner.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Scanning/ModuleScanners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Scanning/ModuleScanners.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Scanning/NotificationScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Scanning/NotificationScanner.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Scanning/PipelineScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Scanning/PipelineScanner.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/SourceGenConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/SourceGenConstants.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/Space.SourceGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/Space.SourceGenerator.csproj -------------------------------------------------------------------------------- /src/Space.SourceGenerator/SpaceSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/SpaceSourceGenerator.cs -------------------------------------------------------------------------------- /src/Space.SourceGenerator/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/src/Space.SourceGenerator/icon.png -------------------------------------------------------------------------------- /tests/MultiProjects/MultiLibs/ApiProject/ApiProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/MultiLibs/ApiProject/ApiProject.csproj -------------------------------------------------------------------------------- /tests/MultiProjects/MultiLibs/ApiProject/ApiProject.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/MultiLibs/ApiProject/ApiProject.http -------------------------------------------------------------------------------- /tests/MultiProjects/MultiLibs/ApiProject/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/MultiLibs/ApiProject/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /tests/MultiProjects/MultiLibs/ApiProject/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/MultiLibs/ApiProject/Program.cs -------------------------------------------------------------------------------- /tests/MultiProjects/MultiLibs/ApiProject/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/MultiLibs/ApiProject/Properties/launchSettings.json -------------------------------------------------------------------------------- /tests/MultiProjects/MultiLibs/ApiProject/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/MultiLibs/ApiProject/appsettings.Development.json -------------------------------------------------------------------------------- /tests/MultiProjects/MultiLibs/ApiProject/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/MultiLibs/ApiProject/appsettings.json -------------------------------------------------------------------------------- /tests/MultiProjects/MultiLibs/Lib1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/MultiLibs/Lib1/Class1.cs -------------------------------------------------------------------------------- /tests/MultiProjects/MultiLibs/Lib1/Lib1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/MultiLibs/Lib1/Lib1.csproj -------------------------------------------------------------------------------- /tests/MultiProjects/NuGetLoaded/ApiHost/ApiHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/NuGetLoaded/ApiHost/ApiHost.csproj -------------------------------------------------------------------------------- /tests/MultiProjects/NuGetLoaded/ApiHost/ApiHost.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/NuGetLoaded/ApiHost/ApiHost.http -------------------------------------------------------------------------------- /tests/MultiProjects/NuGetLoaded/ApiHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/NuGetLoaded/ApiHost/Program.cs -------------------------------------------------------------------------------- /tests/MultiProjects/NuGetLoaded/ApiHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/NuGetLoaded/ApiHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /tests/MultiProjects/NuGetLoaded/LibAlpha/AlphaHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/NuGetLoaded/LibAlpha/AlphaHandlers.cs -------------------------------------------------------------------------------- /tests/MultiProjects/NuGetLoaded/LibAlpha/LibAlpha.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/NuGetLoaded/LibAlpha/LibAlpha.csproj -------------------------------------------------------------------------------- /tests/MultiProjects/NuGetLoaded/LibBeta/BetaHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/NuGetLoaded/LibBeta/BetaHandlers.cs -------------------------------------------------------------------------------- /tests/MultiProjects/NuGetLoaded/LibBeta/LibBeta.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/NuGetLoaded/LibBeta/LibBeta.csproj -------------------------------------------------------------------------------- /tests/MultiProjects/NuGetLoaded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/MultiProjects/NuGetLoaded/README.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-12/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-12/meta.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-12/results/HandlerOnlyBench-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-12/results/HandlerOnlyBench-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-12/results/HandlerWithPipelineBench-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-12/results/HandlerWithPipelineBench-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-12/results/NotificationsSequentialBench-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-12/results/NotificationsSequentialBench-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-12/results/Space.Benchmarks.Notification.NotificationsParallelBench-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-12/results/Space.Benchmarks.Notification.NotificationsParallelBench-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-13/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-13/meta.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-13/results/HandlerOnlyBench-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-13/results/HandlerOnlyBench-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-13/results/Space.Benchmarks.Space.SendBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-13/results/Space.Benchmarks.Space.SendBenchmarks-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-18/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-18/meta.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-18/results/HandlerOnlyBench-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-18/results/HandlerOnlyBench-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-18/results/HandlerWithPipelineBench-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-18/results/HandlerWithPipelineBench-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-18/results/NotificationsSequentialBench-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-18/results/NotificationsSequentialBench-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-18/results/Space.Benchmarks.Notification.NotificationsParallelBench-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-18/results/Space.Benchmarks.Notification.NotificationsParallelBench-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-18/results/Space.Benchmarks.Space.SendBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-18/results/Space.Benchmarks.Space.SendBenchmarks-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-27/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-27/meta.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-09-27/results/HandlerOnlyBench-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-09-27/results/HandlerOnlyBench-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-11-07/meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-11-07/meta.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-11-07/results/HandlerOnlyBench-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-11-07/results/HandlerOnlyBench-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-11-07/results/HandlerWithPipelineBench-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-11-07/results/HandlerWithPipelineBench-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-11-07/results/NotificationsSequentialBench-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-11-07/results/NotificationsSequentialBench-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-11-07/results/Space.Benchmarks.Notification.NotificationsParallelBench-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-11-07/results/Space.Benchmarks.Notification.NotificationsParallelBench-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/BenchmarkResults/2025-11-07/results/Space.Benchmarks.Space.SendBenchmarks-report-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/BenchmarkResults/2025-11-07/results/Space.Benchmarks.Space.SendBenchmarks-report-github.md -------------------------------------------------------------------------------- /tests/Space.Benchmarks/Handler/HandlerOnlyBench.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/Handler/HandlerOnlyBench.cs -------------------------------------------------------------------------------- /tests/Space.Benchmarks/Notification/NotificationsParallelBench.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/Notification/NotificationsParallelBench.cs -------------------------------------------------------------------------------- /tests/Space.Benchmarks/Notification/NotificationsSequentialBench.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/Notification/NotificationsSequentialBench.cs -------------------------------------------------------------------------------- /tests/Space.Benchmarks/Pipeline/HandlerWithPipelineBench.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/Pipeline/HandlerWithPipelineBench.cs -------------------------------------------------------------------------------- /tests/Space.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/Program.cs -------------------------------------------------------------------------------- /tests/Space.Benchmarks/Space.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/Space.Benchmarks.csproj -------------------------------------------------------------------------------- /tests/Space.Benchmarks/Space/SendBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Benchmarks/Space/SendBenchmarks.cs -------------------------------------------------------------------------------- /tests/Space.TestConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.TestConsole/Program.cs -------------------------------------------------------------------------------- /tests/Space.TestConsole/Services/DataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.TestConsole/Services/DataService.cs -------------------------------------------------------------------------------- /tests/Space.TestConsole/Services/IDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.TestConsole/Services/IDataService.cs -------------------------------------------------------------------------------- /tests/Space.TestConsole/Space.TestConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.TestConsole/Space.TestConsole.csproj -------------------------------------------------------------------------------- /tests/Space.Tests/Attributes/HandleAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/Attributes/HandleAttributeTests.cs -------------------------------------------------------------------------------- /tests/Space.Tests/Attributes/PipelineAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/Attributes/PipelineAttributeTests.cs -------------------------------------------------------------------------------- /tests/Space.Tests/Diagnostics/HandleVoidConflictTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/Diagnostics/HandleVoidConflictTests.cs -------------------------------------------------------------------------------- /tests/Space.Tests/Handle/HandleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/Handle/HandleTests.cs -------------------------------------------------------------------------------- /tests/Space.Tests/Handle/HandlerKeyCollisionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/Handle/HandlerKeyCollisionTests.cs -------------------------------------------------------------------------------- /tests/Space.Tests/Handle/HandlerModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/Handle/HandlerModuleTests.cs -------------------------------------------------------------------------------- /tests/Space.Tests/Handle/IRequestSendTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/Handle/IRequestSendTests.cs -------------------------------------------------------------------------------- /tests/Space.Tests/Handle/NothingHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/Handle/NothingHandlerTests.cs -------------------------------------------------------------------------------- /tests/Space.Tests/Handle/VoidLikeHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/Handle/VoidLikeHandlerTests.cs -------------------------------------------------------------------------------- /tests/Space.Tests/MSTestSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/MSTestSettings.cs -------------------------------------------------------------------------------- /tests/Space.Tests/Module/AuditModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/Module/AuditModuleTests.cs -------------------------------------------------------------------------------- /tests/Space.Tests/Module/RetryModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/Module/RetryModuleTests.cs -------------------------------------------------------------------------------- /tests/Space.Tests/Notification/NotificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/Notification/NotificationTests.cs -------------------------------------------------------------------------------- /tests/Space.Tests/Pipeline/PipelineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/Pipeline/PipelineTests.cs -------------------------------------------------------------------------------- /tests/Space.Tests/Send/StructSendTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/Send/StructSendTests.cs -------------------------------------------------------------------------------- /tests/Space.Tests/Space.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salihcantekin/Space/HEAD/tests/Space.Tests/Space.Tests.csproj --------------------------------------------------------------------------------