├── .config └── dotnet-tools.json ├── .csharpierignore ├── .csharpierrc.json ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── _build-and-test.yml │ ├── _sample-aot.yml │ ├── _sample-netfx.yml │ ├── _sample-showcase.yml │ ├── _test-memory.yml │ ├── _test-source-generator.yml │ ├── pr-test-full.yml │ ├── pr-test-quick.yml │ ├── publish.yml │ └── test-suite.yml ├── .gitignore ├── .husky ├── pre-commit └── task-runner.json ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Packages.props ├── Justfile ├── LICENSE ├── Mediator.slnx ├── NuGet.config ├── README.md ├── benchmarks ├── Directory.Build.props ├── Justfile ├── Mediator.Benchmarks.ColdStart │ ├── Mediator.Benchmarks.ColdStart.csproj │ └── Program.cs ├── Mediator.Benchmarks │ ├── CustomColumn.cs │ ├── Internal │ │ ├── Lookups.cs │ │ ├── ScopedLargeCachingModeBenchmark.cs │ │ ├── SwitchesAndJumpTables.cs │ │ └── Unboxing.cs │ ├── Mediator.Benchmarks.csproj │ ├── Messaging │ │ ├── Comparison │ │ │ ├── ComparisonBenchmarks.cs │ │ │ └── HeadlineBenchmarks.cs │ │ ├── Fixture.cs │ │ ├── NotificationBenchmarks.cs │ │ ├── RequestBenchmarks.cs │ │ └── StreamingBenchmarks.cs │ ├── Program.cs │ └── SourceGenerator │ │ └── SourceGeneratorBenchmark.cs ├── README.md ├── cmp.py └── coldstart_baseline.c ├── common ├── Messages.cs ├── Options.cs └── README.md ├── global.json ├── img ├── benchmarks.png ├── missing_request_handler.png └── multiple_request_handlers.png ├── samples ├── Directory.Build.props ├── Directory.Packages.props ├── README.md ├── Showcase │ ├── Program.cs │ ├── README.md │ └── Showcase.csproj ├── apps │ ├── ASPNET_CORE_Blazor │ │ ├── AspNetCoreBlazor.Client │ │ │ ├── AspNetCoreBlazor.Client.csproj │ │ │ ├── Pages │ │ │ │ ├── Counter.cs │ │ │ │ └── Counter.razor │ │ │ ├── Program.cs │ │ │ ├── _Imports.razor │ │ │ └── wwwroot │ │ │ │ ├── appsettings.Development.json │ │ │ │ └── appsettings.json │ │ ├── AspNetCoreBlazor.slnx │ │ ├── AspNetCoreBlazor │ │ │ ├── AspNetCoreBlazor.csproj │ │ │ ├── Components │ │ │ │ ├── App.razor │ │ │ │ ├── Layout │ │ │ │ │ ├── MainLayout.razor │ │ │ │ │ ├── MainLayout.razor.css │ │ │ │ │ ├── NavMenu.razor │ │ │ │ │ ├── NavMenu.razor.css │ │ │ │ │ ├── ReconnectModal.razor │ │ │ │ │ ├── ReconnectModal.razor.css │ │ │ │ │ └── ReconnectModal.razor.js │ │ │ │ ├── Pages │ │ │ │ │ ├── Error.razor │ │ │ │ │ ├── Home.razor │ │ │ │ │ ├── NotFound.razor │ │ │ │ │ ├── Weather.cs │ │ │ │ │ └── Weather.razor │ │ │ │ ├── Routes.razor │ │ │ │ └── _Imports.razor │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ │ ├── app.css │ │ │ │ └── favicon.png │ │ └── README.md │ ├── ASPNET_Core │ │ ├── ASPNET_Core.csproj │ │ ├── Controllers │ │ │ └── WeatherForecastController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── WeatherForecasts │ │ │ ├── GetWeatherForecasts.cs │ │ │ └── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── ASPNET_Core_CleanArchitecture │ │ ├── AspNetCoreSample.Api │ │ │ ├── AspNetCoreSample.Api.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── TodoApi.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── AspNetCoreSample.Application │ │ │ ├── AspNetCoreSample.Application.csproj │ │ │ ├── IValidate.cs │ │ │ ├── Pipeline │ │ │ │ ├── ErrorLoggingBehaviour.cs │ │ │ │ └── MessageValidatorBehaviour.cs │ │ │ ├── ServiceCollectionExtensions.cs │ │ │ ├── Todos │ │ │ │ ├── AddTodoItem.cs │ │ │ │ ├── GetTodoItems.cs │ │ │ │ └── ITodoItemRepository.cs │ │ │ ├── ValidationError.cs │ │ │ └── ValidationException.cs │ │ ├── AspNetCoreSample.Domain │ │ │ ├── AspNetCoreSample.Domain.csproj │ │ │ └── TodoItem.cs │ │ ├── AspNetCoreSample.Infrastructure │ │ │ ├── AspNetCoreSample.Infrastructure.csproj │ │ │ ├── InMemoryTodoItemRepository.cs │ │ │ └── ServiceCollectionExtensions.cs │ │ ├── README.md │ │ └── post-todo.http │ ├── ASPNET_Core_Indirect │ │ ├── AspNetCoreIndirect.Application │ │ │ ├── AspNetCoreIndirect.Application.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── AspNetCoreIndirect.BaseClasses │ │ │ ├── ApplicationController.cs │ │ │ ├── ApplicationHandler.cs │ │ │ ├── ApplicationRequest.cs │ │ │ └── AspNetCoreIndirect.BaseClasses.csproj │ │ ├── AspNetCoreIndirect.Implementations │ │ │ ├── AspNetCoreIndirect.Implementations.csproj │ │ │ ├── GetWeatherForecast.cs │ │ │ ├── GetWeatherForecastHandler.cs │ │ │ ├── WeatherForecast.cs │ │ │ └── WeatherForecastController.cs │ │ ├── README.md │ │ └── get-weather-forecast.http │ └── InternalMessages │ │ ├── InternalMessages.Api │ │ ├── InternalMessages.Api.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── InternalMessages.Application │ │ ├── InternalMessages.Application.csproj │ │ └── PingHandler.cs │ │ └── InternalMessages.Domain │ │ ├── InternalMessages.Domain.csproj │ │ └── Ping.cs ├── basic │ ├── Console │ │ ├── Console.csproj │ │ ├── Program.cs │ │ └── README.md │ ├── ConsoleAOT │ │ ├── ConsoleAOT.csproj │ │ ├── Program.cs │ │ └── README.md │ ├── NetFramework │ │ ├── Console.sln │ │ ├── Console │ │ │ ├── App.config │ │ │ ├── Console.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── Directory.Build.props │ ├── NotificationPublisher │ │ ├── NotificationPublisher.csproj │ │ ├── Program.cs │ │ └── README.md │ ├── Notifications │ │ ├── Notifications.csproj │ │ ├── Program.cs │ │ └── README.md │ ├── StreamProcessing │ │ ├── Program.cs │ │ └── StreamProcessing.csproj │ └── Streaming │ │ ├── Program.cs │ │ ├── README.md │ │ └── Streaming.csproj └── use-cases │ ├── Autofac_DI │ ├── Autofac_DI.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── README.md │ ├── appsettings.Development.json │ └── appsettings.json │ ├── MassTransitIntegration │ ├── MassTransitIntegration.csproj │ ├── Program.cs │ ├── appsettings.Development.json │ └── appsettings.json │ └── RequestScopedState │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── README.md │ ├── RequestScopedState.csproj │ ├── RequestScopedState.http │ ├── appsettings.Development.json │ └── appsettings.json ├── src ├── Directory.Build.props ├── Mediator.SourceGenerator │ ├── Implementation │ │ ├── Analysis │ │ │ ├── CompilationAnalyzer.cs │ │ │ ├── InvocationSyntaxReceiver.cs │ │ │ ├── MessageHandler.cs │ │ │ ├── NotificationMessage.cs │ │ │ ├── NotificationMessageHandler.cs │ │ │ ├── PipelineBehaviorType.cs │ │ │ ├── RequestMessage.cs │ │ │ ├── RequestMessageHandler.cs │ │ │ └── SymbolMetadata.cs │ │ ├── Constants.cs │ │ ├── Diagnostics.cs │ │ ├── EmbeddedResource.cs │ │ ├── Extensions │ │ │ └── RoslynExtensions.cs │ │ ├── ImmutableEquatableArray.cs │ │ ├── MediatorGenerationContext.cs │ │ ├── MediatorImplementationGenerator.cs │ │ ├── MediatorOptionsGenerator.cs │ │ ├── Models │ │ │ ├── CompilationModel.cs │ │ │ ├── NotificationMessageHandlerModel.cs │ │ │ ├── NotificationMessageModel.cs │ │ │ ├── NotificationPublisherTypeModel.cs │ │ │ ├── PipelineBehaviorModel.cs │ │ │ ├── RequestMessageHandlerModel.cs │ │ │ ├── RequestMessageHandlerWrapperModel.cs │ │ │ ├── RequestMessageModel.cs │ │ │ └── SymbolMetadataModel.cs │ │ ├── Versioning.cs │ │ └── resources │ │ │ ├── AssemblyReference.sbn-cs │ │ │ ├── Mediator.sbn-cs │ │ │ ├── MediatorFallback.sbn-cs │ │ │ ├── MediatorOptions.sbn-cs │ │ │ └── MediatorOptionsAttribute.sbn-cs │ ├── IncrementalMediatorGenerator.cs │ ├── Mediator.SourceGenerator.csproj │ ├── MediatorGeneratorStepName.cs │ └── Properties │ │ └── launchSettings.json └── Mediator │ ├── Handlers │ ├── ICommandHandler.cs │ ├── INotificationHandler.cs │ ├── IQueryHandler.cs │ ├── IRequestHandler.cs │ ├── IStreamCommandHandler.cs │ ├── IStreamQueryHandler.cs │ └── IStreamRequestHandler.cs │ ├── IMediator.cs │ ├── INotificationPublisher.cs │ ├── IPublisher.cs │ ├── ISender.cs │ ├── InvalidMessageException.cs │ ├── Mediator.csproj │ ├── Messages │ ├── IBaseCommand.cs │ ├── IBaseQuery.cs │ ├── IBaseRequest.cs │ ├── ICommand.cs │ ├── IMessage.cs │ ├── INotification.cs │ ├── IQuery.cs │ ├── IRequest.cs │ ├── IStreamCommand.cs │ ├── IStreamMessage.cs │ ├── IStreamQuery.cs │ ├── IStreamRequest.cs │ └── Unit.cs │ ├── MissingMessageHandlerException.cs │ ├── Module.cs │ ├── Pipeline │ ├── IPipelineBehavior.cs │ ├── IStreamPipelineBehavior.cs │ ├── MessageExceptionHandler.cs │ ├── MessageHandlerDelegate.cs │ ├── MessagePostProcessor.cs │ ├── MessagePreProcessor.cs │ ├── StreamHandlerDelegate.cs │ ├── StreamMessagePostProcessor.cs │ └── StreamMessagePreProcessor.cs │ ├── Publishers │ ├── ForeachAwaitPublisher.cs │ └── TaskWhenAllPublisher.cs │ └── ThrowHelper.cs ├── stage-version-changes.sh ├── test ├── Directory.Build.props ├── Mediator.MemAllocationTests │ ├── Allocations.cs │ ├── Mediator.MemAllocationTests.csproj │ ├── NonParallelCollectionDefinitionClass.cs │ ├── NotificationTests.cs │ ├── RequestTests.cs │ ├── SomeNotificationMemAllocTracking.cs │ └── SomeRequestMemAllocTracking.cs ├── Mediator.SmokeTestConsole │ ├── Mediator.SmokeTestConsole.csproj │ └── Program.cs ├── Mediator.SourceGenerator.Tests │ ├── AssertExtensions.cs │ ├── Assertions.cs │ ├── BasicTests.cs │ ├── ConfigurationTests.cs │ ├── Fixture.cs │ ├── GeneratorResult.cs │ ├── Incremental │ │ ├── IncrementalGeneratorRunReason.cs │ │ ├── IncrementalGeneratorTest.cs │ │ └── TestHelper.cs │ ├── LifetimeOptionTests.cs │ ├── Mediator.SourceGenerator.Tests.csproj │ ├── MessageOrderingTests.cs │ ├── ModuleInitializer.cs │ ├── NotificationsTests.cs │ ├── ProjectTypeTests.cs │ ├── ReportingTests.cs │ ├── SampleTests.cs │ ├── _snapshots │ │ ├── BasicTests.Multiple_Notification_Handlers_One_Class#Mediator.g.verified.cs │ │ ├── BasicTests.Multiple_Request_Handlers_One_Class#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_Assemblies_Duplicate_Configuration#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_Assemblies_Duplicate_Configuration.verified.txt │ │ ├── ConfigurationTests.Test_Assemblies_Duplicate_Reference#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_Assemblies_Duplicate_Reference.verified.txt │ │ ├── ConfigurationTests.Test_Assemblies_Invalid_Reference#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_Assemblies_Invalid_Reference.verified.txt │ │ ├── ConfigurationTests.Test_Assemblies_Mediator_Abstractions_Reference#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_Assemblies_Mediator_Abstractions_Reference.verified.txt │ │ ├── ConfigurationTests.Test_Assemblies_TypeOf#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_Assemblies_TypeOf_Assembly#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_Assemblies_Valid_Reference#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_ForEachAwaitPublisher_Default#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_GenerateTypesAsInternal_Non_Literal#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_GenerateTypesAsInternal_Non_Literal.verified.txt │ │ ├── ConfigurationTests.Test_GenerateTypesAsInternal_value=False#AssemblyReference.g.verified.cs │ │ ├── ConfigurationTests.Test_GenerateTypesAsInternal_value=False#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_GenerateTypesAsInternal_value=False#MediatorOptions.g.verified.cs │ │ ├── ConfigurationTests.Test_GenerateTypesAsInternal_value=False#MediatorOptionsAttribute.g.verified.cs │ │ ├── ConfigurationTests.Test_GenerateTypesAsInternal_value=True#AssemblyReference.g.verified.cs │ │ ├── ConfigurationTests.Test_GenerateTypesAsInternal_value=True#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_GenerateTypesAsInternal_value=True#MediatorOptions.g.verified.cs │ │ ├── ConfigurationTests.Test_GenerateTypesAsInternal_value=True#MediatorOptionsAttribute.g.verified.cs │ │ ├── ConfigurationTests.Test_PipelineBehaviors#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_PipelineBehaviors_Invalid_Types#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_PipelineBehaviors_Invalid_Types.verified.txt │ │ ├── ConfigurationTests.Test_TaskWhenAllPublisher_For_Notifications_AddMediator#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_TaskWhenAllPublisher_For_Notifications_Attribute#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_TaskWhenAllPublisher_For_Notifications_Program#Mediator.g.verified.cs │ │ ├── ConfigurationTests.Test_TaskWhenAllPublisher_For_Notifications_Program#MediatorOptions.g.verified.cs │ │ ├── ConfigurationTests.Test_TaskWhenAllPublisher_For_Notifications_Program#MediatorOptionsAttribute.g.verified.cs │ │ ├── LifetimeOptionTests.Test_No_Args#Mediator.g.verified.cs │ │ ├── LifetimeOptionTests.Test_Transient_Lifetime_With_Named_Namespace_Arg#Mediator.g.verified.cs │ │ ├── MessageOrderingTests.Test_Notifications_Ordering#Mediator.g.verified.cs │ │ ├── MessageOrderingTests.Test_Notifications_Ordering_Bigger#Mediator.g.verified.cs │ │ ├── NotificationsTests.Test_Notifications_DI#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs │ │ ├── ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Abstract_Handler_Program#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Abstract_Handler_Program.verified.txt │ │ ├── ReportingTests.Test_Byte_Array_Response_Program#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Cast_Lifetime_Config#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Cast_Lifetime_Config.verified.txt │ │ ├── ReportingTests.Test_Configuratoin_Conflict#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Configuratoin_Conflict.verified.txt │ │ ├── ReportingTests.Test_Const_Variable_In_Config#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Deep_Namespace_Program#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Duplicate_Handlers#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Duplicate_Handlers.verified.txt │ │ ├── ReportingTests.Test_Empty_Program#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Invalid_Handler_Type#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Invalid_Handler_Type.verified.txt │ │ ├── ReportingTests.Test_Invalid_Variable_In_Config#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Invalid_Variable_In_Config.verified.txt │ │ ├── ReportingTests.Test_Local_Literal_Variable_In_Config#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Local_Variables_Referencing_Consts_Config#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Multiple_AddMediator_Calls#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Multiple_Errors#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Multiple_Errors.verified.txt │ │ ├── ReportingTests.Test_No_Messages_Program#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Notification_Without_Any_Handlers#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Notification_Without_Any_Handlers.verified.txt │ │ ├── ReportingTests.Test_Null_Namespace_Variable#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Request_Without_Handler_In_Referenced_Library#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Request_Without_Handler_In_Referenced_Library.verified.txt │ │ ├── ReportingTests.Test_Request_Without_Handler_Warning#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Request_Without_Handler_Warning.verified.txt │ │ ├── ReportingTests.Test_Static_Nested_Handler_Program#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Unassigned_Lifetime_Variable_In_Config#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Unassigned_Lifetime_Variable_In_Config.verified.txt │ │ ├── ReportingTests.Test_Unassigned_Namespace_Variable_In_Config#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Unassigned_Namespace_Variable_In_Config.verified.txt │ │ ├── ReportingTests.Test_Unassigned_Variables_In_Config#Mediator.g.verified.cs │ │ ├── ReportingTests.Test_Unassigned_Variables_In_Config.verified.txt │ │ ├── SampleTests.Test_ASPNET_Core_CleanArchitecture_Sample#Mediator.g.verified.cs │ │ ├── SampleTests.Test_ASPNET_Core_Indirect_Sample#Mediator.g.verified.cs │ │ ├── SampleTests.Test_Console#Mediator.g.verified.cs │ │ ├── SampleTests.Test_ConsoleAOT#Mediator.g.verified.cs │ │ ├── SampleTests.Test_InternalMessages_Sample#Mediator.g.verified.cs │ │ ├── SampleTests.Test_Notifications#Mediator.g.verified.cs │ │ ├── SampleTests.Test_Showcase#Mediator.g.verified.cs │ │ └── SampleTests.Test_Streaming#Mediator.g.verified.cs │ └── resources │ │ ├── AbstractHandlerProgram.cs │ │ ├── ByteArrayResponseProgram.cs │ │ ├── ConfigurationConflictProgram.cs │ │ ├── ConsoleProgram.cs │ │ ├── ConstVariablesConfig.cs │ │ ├── DeepNamespaceProgram.cs │ │ ├── DuplicateHandlersProgram.cs │ │ ├── IntCastLifetime.cs │ │ ├── InvalidVariablesConfig.cs │ │ ├── LocalLiteralVariableConfig.cs │ │ ├── LocalVariablesReferencingConstsConfig.cs │ │ ├── MultipleAddMediatorCalls.cs │ │ ├── MultipleErrorsProgram.cs │ │ ├── NoMessagesProgram.cs │ │ ├── NotificationWithoutHandlerProgram.cs │ │ ├── NullNamespaceVariable.cs │ │ ├── RequestWithoutHandlerProgram.cs │ │ ├── StaticNestedHandlerProgram.cs │ │ ├── StreamingProgram.cs │ │ ├── StructHandlerProgram.cs │ │ ├── UnassignedLifetimeVariableConfig.cs │ │ ├── UnassignedNamespaceVariableConfig.cs │ │ └── UnassignedVariablesConfig.cs └── Mediator.Tests │ ├── AbstractRequestHandlerTests.cs │ ├── Assertions.cs │ ├── BasicHandlerTests.cs │ ├── ConfigurationOutput.cs │ ├── CustomContainerTests.cs │ ├── Fixture.cs │ ├── HandlerInjectsMediatorTests.cs │ ├── Mediator.Tests.csproj │ ├── MultipleHandlersTests.cs │ ├── NonParallelCollectionDefinitionClass.cs │ ├── NonSyncNotificationHandlerTests.cs │ ├── NonSyncNotificationHandlerWithExceptionTests.cs │ ├── NotificationHandlersCollectionTests.cs │ ├── NullableResponseTests.cs │ ├── OpenConstrainedGenericsTests.cs │ ├── Pipeline │ ├── CommandSpecificPipeline.cs │ ├── ExceptionHandling │ │ ├── ConcreteExceptionHandlerTests.cs │ │ ├── GeneralHandlerTests.cs │ │ ├── MultipleHandlerTests.cs │ │ └── OnlyLoggingHandlerTests.cs │ ├── GenericPipeline.cs │ ├── IPipelineTestData.cs │ ├── PipelineTests.cs │ ├── PostProcessing │ │ ├── BasicTests.cs │ │ ├── ConcreteTests.cs │ │ └── GenericConstrainedTests.cs │ ├── PreProcessing │ │ ├── BasicTests.cs │ │ ├── ConcreteTests.cs │ │ └── GenericConstrainedTests.cs │ ├── SomePipeline.cs │ ├── SomeStreamingPipeline.cs │ ├── StreamPostProcessing │ │ ├── BasicTests.cs │ │ ├── ConcreteTests.cs │ │ └── GenericConstrainedTests.cs │ ├── StreamPreProcessing │ │ ├── BasicTests.cs │ │ ├── ConcreteTests.cs │ │ └── GenericConstrainedTests.cs │ └── StreamingPipelineTests.cs │ ├── PolymorphicDispatchTests.cs │ ├── RequestInheritanceTests.cs │ ├── ResponseInheritanceTests.cs │ ├── Scoped │ ├── Init.cs │ └── ScopedLifetimeTests.cs │ ├── SenderTests.cs │ ├── SingletonLifetimeTests.cs │ ├── SmokeTests.FastLazy.cs │ ├── SmokeTests.cs │ ├── StreamingTests.cs │ ├── StructResponseTests.cs │ ├── TestTypes │ ├── SomeCommand.cs │ ├── SomeCommandHandler.cs │ ├── SomeNotification.cs │ ├── SomeNotificationHandler.cs │ ├── SomeOtherNotificationHandler.cs │ ├── SomeQuery.cs │ ├── SomeQueryHandler.cs │ ├── SomeRequest.cs │ ├── SomeRequestHandler.cs │ ├── SomeResponse.cs │ ├── SomeStreamingCommand.cs │ ├── SomeStreamingCommandStruct.cs │ ├── SomeStreamingQuery.cs │ └── SomeStreamingRequest.cs │ └── Transient │ └── TransientLifetimeTests.cs └── version.json /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.csharpierignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | .git/ 4 | -------------------------------------------------------------------------------- /.csharpierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 120 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/_build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.github/workflows/_build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/_sample-aot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.github/workflows/_sample-aot.yml -------------------------------------------------------------------------------- /.github/workflows/_sample-netfx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.github/workflows/_sample-netfx.yml -------------------------------------------------------------------------------- /.github/workflows/_sample-showcase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.github/workflows/_sample-showcase.yml -------------------------------------------------------------------------------- /.github/workflows/_test-memory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.github/workflows/_test-memory.yml -------------------------------------------------------------------------------- /.github/workflows/_test-source-generator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.github/workflows/_test-source-generator.yml -------------------------------------------------------------------------------- /.github/workflows/pr-test-full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.github/workflows/pr-test-full.yml -------------------------------------------------------------------------------- /.github/workflows/pr-test-quick.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.github/workflows/pr-test-quick.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test-suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.github/workflows/test-suite.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/task-runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.husky/task-runner.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "dotnet.defaultSolution": "Mediator.slnx" 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/LICENSE -------------------------------------------------------------------------------- /Mediator.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/Mediator.slnx -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Directory.Build.props -------------------------------------------------------------------------------- /benchmarks/Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Justfile -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks.ColdStart/Mediator.Benchmarks.ColdStart.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks.ColdStart/Mediator.Benchmarks.ColdStart.csproj -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks.ColdStart/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks.ColdStart/Program.cs -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks/CustomColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks/CustomColumn.cs -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks/Internal/Lookups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks/Internal/Lookups.cs -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks/Internal/ScopedLargeCachingModeBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks/Internal/ScopedLargeCachingModeBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks/Internal/SwitchesAndJumpTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks/Internal/SwitchesAndJumpTables.cs -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks/Internal/Unboxing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks/Internal/Unboxing.cs -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks/Mediator.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks/Mediator.Benchmarks.csproj -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks/Messaging/Comparison/ComparisonBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks/Messaging/Comparison/ComparisonBenchmarks.cs -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks/Messaging/Comparison/HeadlineBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks/Messaging/Comparison/HeadlineBenchmarks.cs -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks/Messaging/Fixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks/Messaging/Fixture.cs -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks/Messaging/NotificationBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks/Messaging/NotificationBenchmarks.cs -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks/Messaging/RequestBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks/Messaging/RequestBenchmarks.cs -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks/Messaging/StreamingBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks/Messaging/StreamingBenchmarks.cs -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks/Program.cs -------------------------------------------------------------------------------- /benchmarks/Mediator.Benchmarks/SourceGenerator/SourceGeneratorBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/Mediator.Benchmarks/SourceGenerator/SourceGeneratorBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/README.md -------------------------------------------------------------------------------- /benchmarks/cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/cmp.py -------------------------------------------------------------------------------- /benchmarks/coldstart_baseline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/benchmarks/coldstart_baseline.c -------------------------------------------------------------------------------- /common/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/common/Messages.cs -------------------------------------------------------------------------------- /common/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/common/Options.cs -------------------------------------------------------------------------------- /common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/common/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/global.json -------------------------------------------------------------------------------- /img/benchmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/img/benchmarks.png -------------------------------------------------------------------------------- /img/missing_request_handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/img/missing_request_handler.png -------------------------------------------------------------------------------- /img/multiple_request_handlers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/img/multiple_request_handlers.png -------------------------------------------------------------------------------- /samples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/Directory.Build.props -------------------------------------------------------------------------------- /samples/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/Directory.Packages.props -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/Showcase/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/Showcase/Program.cs -------------------------------------------------------------------------------- /samples/Showcase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/Showcase/README.md -------------------------------------------------------------------------------- /samples/Showcase/Showcase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/Showcase/Showcase.csproj -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.Client/AspNetCoreBlazor.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.Client/AspNetCoreBlazor.Client.csproj -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.Client/Pages/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.Client/Pages/Counter.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.Client/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.Client/Pages/Counter.razor -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.Client/Program.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.Client/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.Client/_Imports.razor -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.Client/wwwroot/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.Client/wwwroot/appsettings.Development.json -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.Client/wwwroot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.Client/wwwroot/appsettings.json -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor.slnx -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/AspNetCoreBlazor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/AspNetCoreBlazor.csproj -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/App.razor -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Layout/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Layout/MainLayout.razor -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Layout/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Layout/MainLayout.razor.css -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Layout/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Layout/NavMenu.razor -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Layout/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Layout/NavMenu.razor.css -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Layout/ReconnectModal.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Layout/ReconnectModal.razor -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Layout/ReconnectModal.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Layout/ReconnectModal.razor.css -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Layout/ReconnectModal.razor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Layout/ReconnectModal.razor.js -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Pages/Error.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Pages/Error.razor -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Pages/Home.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Pages/Home.razor -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Pages/NotFound.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Pages/NotFound.razor -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Pages/Weather.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Pages/Weather.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Pages/Weather.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Pages/Weather.razor -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Routes.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/Routes.razor -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Components/_Imports.razor -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Program.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/appsettings.Development.json -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/appsettings.json -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/wwwroot/app.css -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/wwwroot/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/AspNetCoreBlazor/wwwroot/favicon.png -------------------------------------------------------------------------------- /samples/apps/ASPNET_CORE_Blazor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_CORE_Blazor/README.md -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core/ASPNET_Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core/ASPNET_Core.csproj -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core/Program.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core/WeatherForecasts/GetWeatherForecasts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core/WeatherForecasts/GetWeatherForecasts.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core/WeatherForecasts/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core/WeatherForecasts/WeatherForecast.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core/appsettings.Development.json -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core/appsettings.json -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Api/AspNetCoreSample.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Api/AspNetCoreSample.Api.csproj -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Api/Program.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Api/TodoApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Api/TodoApi.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Api/appsettings.Development.json -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Api/appsettings.json -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/AspNetCoreSample.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/AspNetCoreSample.Application.csproj -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/IValidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/IValidate.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/Pipeline/ErrorLoggingBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/Pipeline/ErrorLoggingBehaviour.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/Pipeline/MessageValidatorBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/Pipeline/MessageValidatorBehaviour.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/Todos/AddTodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/Todos/AddTodoItem.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/Todos/GetTodoItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/Todos/GetTodoItems.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/Todos/ITodoItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/Todos/ITodoItemRepository.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/ValidationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/ValidationError.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/ValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Application/ValidationException.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Domain/AspNetCoreSample.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Domain/AspNetCoreSample.Domain.csproj -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Domain/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Domain/TodoItem.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Infrastructure/AspNetCoreSample.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Infrastructure/AspNetCoreSample.Infrastructure.csproj -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Infrastructure/InMemoryTodoItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Infrastructure/InMemoryTodoItemRepository.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Infrastructure/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/AspNetCoreSample.Infrastructure/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/README.md -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_CleanArchitecture/post-todo.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_CleanArchitecture/post-todo.http -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Application/AspNetCoreIndirect.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Application/AspNetCoreIndirect.Application.csproj -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Application/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Application/Program.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Application/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Application/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Application/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Application/appsettings.Development.json -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Application/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Application/appsettings.json -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.BaseClasses/ApplicationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.BaseClasses/ApplicationController.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.BaseClasses/ApplicationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.BaseClasses/ApplicationHandler.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.BaseClasses/ApplicationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.BaseClasses/ApplicationRequest.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.BaseClasses/AspNetCoreIndirect.BaseClasses.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.BaseClasses/AspNetCoreIndirect.BaseClasses.csproj -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Implementations/AspNetCoreIndirect.Implementations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Implementations/AspNetCoreIndirect.Implementations.csproj -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Implementations/GetWeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Implementations/GetWeatherForecast.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Implementations/GetWeatherForecastHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Implementations/GetWeatherForecastHandler.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Implementations/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Implementations/WeatherForecast.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Implementations/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_Indirect/AspNetCoreIndirect.Implementations/WeatherForecastController.cs -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/ASPNET_Core_Indirect/README.md -------------------------------------------------------------------------------- /samples/apps/ASPNET_Core_Indirect/get-weather-forecast.http: -------------------------------------------------------------------------------- 1 | GET http://localhost:5000/WeatherForecast 2 | -------------------------------------------------------------------------------- /samples/apps/InternalMessages/InternalMessages.Api/InternalMessages.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/InternalMessages/InternalMessages.Api/InternalMessages.Api.csproj -------------------------------------------------------------------------------- /samples/apps/InternalMessages/InternalMessages.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/InternalMessages/InternalMessages.Api/Program.cs -------------------------------------------------------------------------------- /samples/apps/InternalMessages/InternalMessages.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/InternalMessages/InternalMessages.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/apps/InternalMessages/InternalMessages.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/InternalMessages/InternalMessages.Api/appsettings.Development.json -------------------------------------------------------------------------------- /samples/apps/InternalMessages/InternalMessages.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/InternalMessages/InternalMessages.Api/appsettings.json -------------------------------------------------------------------------------- /samples/apps/InternalMessages/InternalMessages.Application/InternalMessages.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/InternalMessages/InternalMessages.Application/InternalMessages.Application.csproj -------------------------------------------------------------------------------- /samples/apps/InternalMessages/InternalMessages.Application/PingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/InternalMessages/InternalMessages.Application/PingHandler.cs -------------------------------------------------------------------------------- /samples/apps/InternalMessages/InternalMessages.Domain/InternalMessages.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/InternalMessages/InternalMessages.Domain/InternalMessages.Domain.csproj -------------------------------------------------------------------------------- /samples/apps/InternalMessages/InternalMessages.Domain/Ping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/apps/InternalMessages/InternalMessages.Domain/Ping.cs -------------------------------------------------------------------------------- /samples/basic/Console/Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/Console/Console.csproj -------------------------------------------------------------------------------- /samples/basic/Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/Console/Program.cs -------------------------------------------------------------------------------- /samples/basic/Console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/Console/README.md -------------------------------------------------------------------------------- /samples/basic/ConsoleAOT/ConsoleAOT.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/ConsoleAOT/ConsoleAOT.csproj -------------------------------------------------------------------------------- /samples/basic/ConsoleAOT/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/ConsoleAOT/Program.cs -------------------------------------------------------------------------------- /samples/basic/ConsoleAOT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/ConsoleAOT/README.md -------------------------------------------------------------------------------- /samples/basic/NetFramework/Console.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/NetFramework/Console.sln -------------------------------------------------------------------------------- /samples/basic/NetFramework/Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/NetFramework/Console/App.config -------------------------------------------------------------------------------- /samples/basic/NetFramework/Console/Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/NetFramework/Console/Console.csproj -------------------------------------------------------------------------------- /samples/basic/NetFramework/Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/NetFramework/Console/Program.cs -------------------------------------------------------------------------------- /samples/basic/NetFramework/Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/NetFramework/Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/basic/NetFramework/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/NetFramework/Directory.Build.props -------------------------------------------------------------------------------- /samples/basic/NotificationPublisher/NotificationPublisher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/NotificationPublisher/NotificationPublisher.csproj -------------------------------------------------------------------------------- /samples/basic/NotificationPublisher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/NotificationPublisher/Program.cs -------------------------------------------------------------------------------- /samples/basic/NotificationPublisher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/NotificationPublisher/README.md -------------------------------------------------------------------------------- /samples/basic/Notifications/Notifications.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/Notifications/Notifications.csproj -------------------------------------------------------------------------------- /samples/basic/Notifications/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/Notifications/Program.cs -------------------------------------------------------------------------------- /samples/basic/Notifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/Notifications/README.md -------------------------------------------------------------------------------- /samples/basic/StreamProcessing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/StreamProcessing/Program.cs -------------------------------------------------------------------------------- /samples/basic/StreamProcessing/StreamProcessing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/StreamProcessing/StreamProcessing.csproj -------------------------------------------------------------------------------- /samples/basic/Streaming/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/Streaming/Program.cs -------------------------------------------------------------------------------- /samples/basic/Streaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/Streaming/README.md -------------------------------------------------------------------------------- /samples/basic/Streaming/Streaming.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/basic/Streaming/Streaming.csproj -------------------------------------------------------------------------------- /samples/use-cases/Autofac_DI/Autofac_DI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/Autofac_DI/Autofac_DI.csproj -------------------------------------------------------------------------------- /samples/use-cases/Autofac_DI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/Autofac_DI/Program.cs -------------------------------------------------------------------------------- /samples/use-cases/Autofac_DI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/Autofac_DI/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/use-cases/Autofac_DI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/Autofac_DI/README.md -------------------------------------------------------------------------------- /samples/use-cases/Autofac_DI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/Autofac_DI/appsettings.Development.json -------------------------------------------------------------------------------- /samples/use-cases/Autofac_DI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/Autofac_DI/appsettings.json -------------------------------------------------------------------------------- /samples/use-cases/MassTransitIntegration/MassTransitIntegration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/MassTransitIntegration/MassTransitIntegration.csproj -------------------------------------------------------------------------------- /samples/use-cases/MassTransitIntegration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/MassTransitIntegration/Program.cs -------------------------------------------------------------------------------- /samples/use-cases/MassTransitIntegration/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/MassTransitIntegration/appsettings.Development.json -------------------------------------------------------------------------------- /samples/use-cases/MassTransitIntegration/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/MassTransitIntegration/appsettings.json -------------------------------------------------------------------------------- /samples/use-cases/RequestScopedState/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/RequestScopedState/Program.cs -------------------------------------------------------------------------------- /samples/use-cases/RequestScopedState/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/RequestScopedState/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/use-cases/RequestScopedState/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/RequestScopedState/README.md -------------------------------------------------------------------------------- /samples/use-cases/RequestScopedState/RequestScopedState.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/RequestScopedState/RequestScopedState.csproj -------------------------------------------------------------------------------- /samples/use-cases/RequestScopedState/RequestScopedState.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/RequestScopedState/RequestScopedState.http -------------------------------------------------------------------------------- /samples/use-cases/RequestScopedState/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/RequestScopedState/appsettings.Development.json -------------------------------------------------------------------------------- /samples/use-cases/RequestScopedState/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/samples/use-cases/RequestScopedState/appsettings.json -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Analysis/CompilationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Analysis/CompilationAnalyzer.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Analysis/InvocationSyntaxReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Analysis/InvocationSyntaxReceiver.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Analysis/MessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Analysis/MessageHandler.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Analysis/NotificationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Analysis/NotificationMessage.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Analysis/NotificationMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Analysis/NotificationMessageHandler.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Analysis/PipelineBehaviorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Analysis/PipelineBehaviorType.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Analysis/RequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Analysis/RequestMessage.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Analysis/RequestMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Analysis/RequestMessageHandler.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Analysis/SymbolMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Analysis/SymbolMetadata.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Constants.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Diagnostics.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/EmbeddedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/EmbeddedResource.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Extensions/RoslynExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Extensions/RoslynExtensions.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/ImmutableEquatableArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/ImmutableEquatableArray.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/MediatorGenerationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/MediatorGenerationContext.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/MediatorImplementationGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/MediatorImplementationGenerator.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/MediatorOptionsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/MediatorOptionsGenerator.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Models/CompilationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Models/CompilationModel.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Models/NotificationMessageHandlerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Models/NotificationMessageHandlerModel.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Models/NotificationMessageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Models/NotificationMessageModel.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Models/NotificationPublisherTypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Models/NotificationPublisherTypeModel.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Models/PipelineBehaviorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Models/PipelineBehaviorModel.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Models/RequestMessageHandlerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Models/RequestMessageHandlerModel.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Models/RequestMessageHandlerWrapperModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Models/RequestMessageHandlerWrapperModel.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Models/RequestMessageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Models/RequestMessageModel.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Models/SymbolMetadataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Models/SymbolMetadataModel.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/Versioning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/Versioning.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/resources/AssemblyReference.sbn-cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/resources/AssemblyReference.sbn-cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/resources/Mediator.sbn-cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/resources/Mediator.sbn-cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/resources/MediatorFallback.sbn-cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/resources/MediatorFallback.sbn-cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/resources/MediatorOptions.sbn-cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/resources/MediatorOptions.sbn-cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Implementation/resources/MediatorOptionsAttribute.sbn-cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Implementation/resources/MediatorOptionsAttribute.sbn-cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/IncrementalMediatorGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/IncrementalMediatorGenerator.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Mediator.SourceGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Mediator.SourceGenerator.csproj -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/MediatorGeneratorStepName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/MediatorGeneratorStepName.cs -------------------------------------------------------------------------------- /src/Mediator.SourceGenerator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator.SourceGenerator/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Mediator/Handlers/ICommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Handlers/ICommandHandler.cs -------------------------------------------------------------------------------- /src/Mediator/Handlers/INotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Handlers/INotificationHandler.cs -------------------------------------------------------------------------------- /src/Mediator/Handlers/IQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Handlers/IQueryHandler.cs -------------------------------------------------------------------------------- /src/Mediator/Handlers/IRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Handlers/IRequestHandler.cs -------------------------------------------------------------------------------- /src/Mediator/Handlers/IStreamCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Handlers/IStreamCommandHandler.cs -------------------------------------------------------------------------------- /src/Mediator/Handlers/IStreamQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Handlers/IStreamQueryHandler.cs -------------------------------------------------------------------------------- /src/Mediator/Handlers/IStreamRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Handlers/IStreamRequestHandler.cs -------------------------------------------------------------------------------- /src/Mediator/IMediator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/IMediator.cs -------------------------------------------------------------------------------- /src/Mediator/INotificationPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/INotificationPublisher.cs -------------------------------------------------------------------------------- /src/Mediator/IPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/IPublisher.cs -------------------------------------------------------------------------------- /src/Mediator/ISender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/ISender.cs -------------------------------------------------------------------------------- /src/Mediator/InvalidMessageException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/InvalidMessageException.cs -------------------------------------------------------------------------------- /src/Mediator/Mediator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Mediator.csproj -------------------------------------------------------------------------------- /src/Mediator/Messages/IBaseCommand.cs: -------------------------------------------------------------------------------- 1 | namespace Mediator; 2 | 3 | public interface IBaseCommand : IMessage { } 4 | -------------------------------------------------------------------------------- /src/Mediator/Messages/IBaseQuery.cs: -------------------------------------------------------------------------------- 1 | namespace Mediator; 2 | 3 | public interface IBaseQuery : IMessage { } 4 | -------------------------------------------------------------------------------- /src/Mediator/Messages/IBaseRequest.cs: -------------------------------------------------------------------------------- 1 | namespace Mediator; 2 | 3 | public interface IBaseRequest : IMessage { } 4 | -------------------------------------------------------------------------------- /src/Mediator/Messages/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Messages/ICommand.cs -------------------------------------------------------------------------------- /src/Mediator/Messages/IMessage.cs: -------------------------------------------------------------------------------- 1 | namespace Mediator; 2 | 3 | public interface IMessage { } 4 | -------------------------------------------------------------------------------- /src/Mediator/Messages/INotification.cs: -------------------------------------------------------------------------------- 1 | namespace Mediator; 2 | 3 | public interface INotification : IMessage { } 4 | -------------------------------------------------------------------------------- /src/Mediator/Messages/IQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Messages/IQuery.cs -------------------------------------------------------------------------------- /src/Mediator/Messages/IRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Messages/IRequest.cs -------------------------------------------------------------------------------- /src/Mediator/Messages/IStreamCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Messages/IStreamCommand.cs -------------------------------------------------------------------------------- /src/Mediator/Messages/IStreamMessage.cs: -------------------------------------------------------------------------------- 1 | namespace Mediator; 2 | 3 | public interface IStreamMessage { } 4 | -------------------------------------------------------------------------------- /src/Mediator/Messages/IStreamQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Messages/IStreamQuery.cs -------------------------------------------------------------------------------- /src/Mediator/Messages/IStreamRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Messages/IStreamRequest.cs -------------------------------------------------------------------------------- /src/Mediator/Messages/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Messages/Unit.cs -------------------------------------------------------------------------------- /src/Mediator/MissingMessageHandlerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/MissingMessageHandlerException.cs -------------------------------------------------------------------------------- /src/Mediator/Module.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [module: SkipLocalsInit] 4 | -------------------------------------------------------------------------------- /src/Mediator/Pipeline/IPipelineBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Pipeline/IPipelineBehavior.cs -------------------------------------------------------------------------------- /src/Mediator/Pipeline/IStreamPipelineBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Pipeline/IStreamPipelineBehavior.cs -------------------------------------------------------------------------------- /src/Mediator/Pipeline/MessageExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Pipeline/MessageExceptionHandler.cs -------------------------------------------------------------------------------- /src/Mediator/Pipeline/MessageHandlerDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Pipeline/MessageHandlerDelegate.cs -------------------------------------------------------------------------------- /src/Mediator/Pipeline/MessagePostProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Pipeline/MessagePostProcessor.cs -------------------------------------------------------------------------------- /src/Mediator/Pipeline/MessagePreProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Pipeline/MessagePreProcessor.cs -------------------------------------------------------------------------------- /src/Mediator/Pipeline/StreamHandlerDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Pipeline/StreamHandlerDelegate.cs -------------------------------------------------------------------------------- /src/Mediator/Pipeline/StreamMessagePostProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Pipeline/StreamMessagePostProcessor.cs -------------------------------------------------------------------------------- /src/Mediator/Pipeline/StreamMessagePreProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Pipeline/StreamMessagePreProcessor.cs -------------------------------------------------------------------------------- /src/Mediator/Publishers/ForeachAwaitPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Publishers/ForeachAwaitPublisher.cs -------------------------------------------------------------------------------- /src/Mediator/Publishers/TaskWhenAllPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/Publishers/TaskWhenAllPublisher.cs -------------------------------------------------------------------------------- /src/Mediator/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/src/Mediator/ThrowHelper.cs -------------------------------------------------------------------------------- /stage-version-changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/stage-version-changes.sh -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Mediator.MemAllocationTests/Allocations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.MemAllocationTests/Allocations.cs -------------------------------------------------------------------------------- /test/Mediator.MemAllocationTests/Mediator.MemAllocationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.MemAllocationTests/Mediator.MemAllocationTests.csproj -------------------------------------------------------------------------------- /test/Mediator.MemAllocationTests/NonParallelCollectionDefinitionClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.MemAllocationTests/NonParallelCollectionDefinitionClass.cs -------------------------------------------------------------------------------- /test/Mediator.MemAllocationTests/NotificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.MemAllocationTests/NotificationTests.cs -------------------------------------------------------------------------------- /test/Mediator.MemAllocationTests/RequestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.MemAllocationTests/RequestTests.cs -------------------------------------------------------------------------------- /test/Mediator.MemAllocationTests/SomeNotificationMemAllocTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.MemAllocationTests/SomeNotificationMemAllocTracking.cs -------------------------------------------------------------------------------- /test/Mediator.MemAllocationTests/SomeRequestMemAllocTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.MemAllocationTests/SomeRequestMemAllocTracking.cs -------------------------------------------------------------------------------- /test/Mediator.SmokeTestConsole/Mediator.SmokeTestConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SmokeTestConsole/Mediator.SmokeTestConsole.csproj -------------------------------------------------------------------------------- /test/Mediator.SmokeTestConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SmokeTestConsole/Program.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/AssertExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/AssertExtensions.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/Assertions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/Assertions.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/BasicTests.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/ConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/ConfigurationTests.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/Fixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/Fixture.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/GeneratorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/GeneratorResult.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/Incremental/IncrementalGeneratorRunReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/Incremental/IncrementalGeneratorRunReason.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/Incremental/IncrementalGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/Incremental/IncrementalGeneratorTest.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/Incremental/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/Incremental/TestHelper.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/LifetimeOptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/LifetimeOptionTests.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/Mediator.SourceGenerator.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/Mediator.SourceGenerator.Tests.csproj -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/MessageOrderingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/MessageOrderingTests.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/ModuleInitializer.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/NotificationsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/NotificationsTests.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/ProjectTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/ProjectTypeTests.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/ReportingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/ReportingTests.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/SampleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/SampleTests.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/BasicTests.Multiple_Notification_Handlers_One_Class#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/BasicTests.Multiple_Notification_Handlers_One_Class#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/BasicTests.Multiple_Request_Handlers_One_Class#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/BasicTests.Multiple_Request_Handlers_One_Class#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Duplicate_Configuration#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Duplicate_Configuration#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Duplicate_Configuration.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Duplicate_Configuration.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Duplicate_Reference#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Duplicate_Reference#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Duplicate_Reference.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Duplicate_Reference.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Invalid_Reference#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Invalid_Reference#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Invalid_Reference.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Invalid_Reference.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Mediator_Abstractions_Reference#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Mediator_Abstractions_Reference#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Mediator_Abstractions_Reference.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Mediator_Abstractions_Reference.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_TypeOf#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_TypeOf#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_TypeOf_Assembly#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_TypeOf_Assembly#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Valid_Reference#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_Assemblies_Valid_Reference#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_ForEachAwaitPublisher_Default#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_ForEachAwaitPublisher_Default#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_Non_Literal#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_Non_Literal#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_Non_Literal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_Non_Literal.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=False#AssemblyReference.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=False#AssemblyReference.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=False#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=False#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=False#MediatorOptions.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=False#MediatorOptions.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=False#MediatorOptionsAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=False#MediatorOptionsAttribute.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=True#AssemblyReference.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=True#AssemblyReference.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=True#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=True#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=True#MediatorOptions.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=True#MediatorOptions.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=True#MediatorOptionsAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_GenerateTypesAsInternal_value=True#MediatorOptionsAttribute.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_PipelineBehaviors#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_PipelineBehaviors#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_PipelineBehaviors_Invalid_Types#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_PipelineBehaviors_Invalid_Types#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_PipelineBehaviors_Invalid_Types.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_PipelineBehaviors_Invalid_Types.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_TaskWhenAllPublisher_For_Notifications_AddMediator#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_TaskWhenAllPublisher_For_Notifications_AddMediator#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_TaskWhenAllPublisher_For_Notifications_Attribute#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_TaskWhenAllPublisher_For_Notifications_Attribute#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_TaskWhenAllPublisher_For_Notifications_Program#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_TaskWhenAllPublisher_For_Notifications_Program#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_TaskWhenAllPublisher_For_Notifications_Program#MediatorOptions.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_TaskWhenAllPublisher_For_Notifications_Program#MediatorOptions.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_TaskWhenAllPublisher_For_Notifications_Program#MediatorOptionsAttribute.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ConfigurationTests.Test_TaskWhenAllPublisher_For_Notifications_Program#MediatorOptionsAttribute.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/LifetimeOptionTests.Test_No_Args#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/LifetimeOptionTests.Test_No_Args#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/LifetimeOptionTests.Test_Transient_Lifetime_With_Named_Namespace_Arg#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/LifetimeOptionTests.Test_Transient_Lifetime_With_Named_Namespace_Arg#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/MessageOrderingTests.Test_Notifications_Ordering#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/MessageOrderingTests.Test_Notifications_Ordering#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/MessageOrderingTests.Test_Notifications_Ordering_Bigger#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/MessageOrderingTests.Test_Notifications_Ordering_Bigger#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/NotificationsTests.Test_Notifications_DI#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/NotificationsTests.Test_Notifications_DI#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Command_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Notification_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Query_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=Request_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamCommand_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamQuery_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Size_Uneven_manyOfMessageType=StreamRequest_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=16_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Scoped_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Scoped_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Singleton_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Singleton_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Transient_cachingMode=Eager#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ProjectTypeTests.Test_Project_Sizes_n=17_serviceLifetime=Transient_cachingMode=Lazy#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Abstract_Handler_Program#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Abstract_Handler_Program#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Abstract_Handler_Program.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Abstract_Handler_Program.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Byte_Array_Response_Program#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Byte_Array_Response_Program#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Cast_Lifetime_Config#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Cast_Lifetime_Config#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Cast_Lifetime_Config.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Cast_Lifetime_Config.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Configuratoin_Conflict#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Configuratoin_Conflict#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Configuratoin_Conflict.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Configuratoin_Conflict.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Const_Variable_In_Config#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Const_Variable_In_Config#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Deep_Namespace_Program#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Deep_Namespace_Program#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Duplicate_Handlers#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Duplicate_Handlers#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Duplicate_Handlers.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Duplicate_Handlers.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Empty_Program#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Empty_Program#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Invalid_Handler_Type#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Invalid_Handler_Type#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Invalid_Handler_Type.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Invalid_Handler_Type.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Invalid_Variable_In_Config#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Invalid_Variable_In_Config#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Invalid_Variable_In_Config.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Invalid_Variable_In_Config.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Local_Literal_Variable_In_Config#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Local_Literal_Variable_In_Config#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Local_Variables_Referencing_Consts_Config#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Local_Variables_Referencing_Consts_Config#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Multiple_AddMediator_Calls#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Multiple_AddMediator_Calls#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Multiple_Errors#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Multiple_Errors#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Multiple_Errors.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Multiple_Errors.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_No_Messages_Program#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_No_Messages_Program#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Notification_Without_Any_Handlers#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Notification_Without_Any_Handlers#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Notification_Without_Any_Handlers.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Notification_Without_Any_Handlers.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Null_Namespace_Variable#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Null_Namespace_Variable#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Request_Without_Handler_In_Referenced_Library#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Request_Without_Handler_In_Referenced_Library#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Request_Without_Handler_In_Referenced_Library.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Request_Without_Handler_In_Referenced_Library.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Request_Without_Handler_Warning#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Request_Without_Handler_Warning#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Request_Without_Handler_Warning.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Request_Without_Handler_Warning.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Static_Nested_Handler_Program#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Static_Nested_Handler_Program#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Unassigned_Lifetime_Variable_In_Config#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Unassigned_Lifetime_Variable_In_Config#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Unassigned_Lifetime_Variable_In_Config.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Unassigned_Lifetime_Variable_In_Config.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Unassigned_Namespace_Variable_In_Config#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Unassigned_Namespace_Variable_In_Config#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Unassigned_Namespace_Variable_In_Config.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Unassigned_Namespace_Variable_In_Config.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Unassigned_Variables_In_Config#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Unassigned_Variables_In_Config#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Unassigned_Variables_In_Config.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/ReportingTests.Test_Unassigned_Variables_In_Config.verified.txt -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_ASPNET_Core_CleanArchitecture_Sample#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_ASPNET_Core_CleanArchitecture_Sample#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_ASPNET_Core_Indirect_Sample#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_ASPNET_Core_Indirect_Sample#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_Console#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_Console#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_ConsoleAOT#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_ConsoleAOT#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_InternalMessages_Sample#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_InternalMessages_Sample#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_Notifications#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_Notifications#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_Showcase#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_Showcase#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_Streaming#Mediator.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/_snapshots/SampleTests.Test_Streaming#Mediator.g.verified.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/AbstractHandlerProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/AbstractHandlerProgram.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/ByteArrayResponseProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/ByteArrayResponseProgram.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/ConfigurationConflictProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/ConfigurationConflictProgram.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/ConsoleProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/ConsoleProgram.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/ConstVariablesConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/ConstVariablesConfig.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/DeepNamespaceProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/DeepNamespaceProgram.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/DuplicateHandlersProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/DuplicateHandlersProgram.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/IntCastLifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/IntCastLifetime.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/InvalidVariablesConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/InvalidVariablesConfig.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/LocalLiteralVariableConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/LocalLiteralVariableConfig.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/LocalVariablesReferencingConstsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/LocalVariablesReferencingConstsConfig.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/MultipleAddMediatorCalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/MultipleAddMediatorCalls.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/MultipleErrorsProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/MultipleErrorsProgram.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/NoMessagesProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/NoMessagesProgram.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/NotificationWithoutHandlerProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/NotificationWithoutHandlerProgram.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/NullNamespaceVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/NullNamespaceVariable.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/RequestWithoutHandlerProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/RequestWithoutHandlerProgram.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/StaticNestedHandlerProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/StaticNestedHandlerProgram.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/StreamingProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/StreamingProgram.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/StructHandlerProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/StructHandlerProgram.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/UnassignedLifetimeVariableConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/UnassignedLifetimeVariableConfig.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/UnassignedNamespaceVariableConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/UnassignedNamespaceVariableConfig.cs -------------------------------------------------------------------------------- /test/Mediator.SourceGenerator.Tests/resources/UnassignedVariablesConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.SourceGenerator.Tests/resources/UnassignedVariablesConfig.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/AbstractRequestHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/AbstractRequestHandlerTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Assertions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Assertions.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/BasicHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/BasicHandlerTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/ConfigurationOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/ConfigurationOutput.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/CustomContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/CustomContainerTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Fixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Fixture.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/HandlerInjectsMediatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/HandlerInjectsMediatorTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Mediator.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Mediator.Tests.csproj -------------------------------------------------------------------------------- /test/Mediator.Tests/MultipleHandlersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/MultipleHandlersTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/NonParallelCollectionDefinitionClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/NonParallelCollectionDefinitionClass.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/NonSyncNotificationHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/NonSyncNotificationHandlerTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/NonSyncNotificationHandlerWithExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/NonSyncNotificationHandlerWithExceptionTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/NotificationHandlersCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/NotificationHandlersCollectionTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/NullableResponseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/NullableResponseTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/OpenConstrainedGenericsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/OpenConstrainedGenericsTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/CommandSpecificPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/CommandSpecificPipeline.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/ExceptionHandling/ConcreteExceptionHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/ExceptionHandling/ConcreteExceptionHandlerTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/ExceptionHandling/GeneralHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/ExceptionHandling/GeneralHandlerTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/ExceptionHandling/MultipleHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/ExceptionHandling/MultipleHandlerTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/ExceptionHandling/OnlyLoggingHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/ExceptionHandling/OnlyLoggingHandlerTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/GenericPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/GenericPipeline.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/IPipelineTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/IPipelineTestData.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/PipelineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/PipelineTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/PostProcessing/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/PostProcessing/BasicTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/PostProcessing/ConcreteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/PostProcessing/ConcreteTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/PostProcessing/GenericConstrainedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/PostProcessing/GenericConstrainedTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/PreProcessing/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/PreProcessing/BasicTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/PreProcessing/ConcreteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/PreProcessing/ConcreteTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/PreProcessing/GenericConstrainedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/PreProcessing/GenericConstrainedTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/SomePipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/SomePipeline.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/SomeStreamingPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/SomeStreamingPipeline.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/StreamPostProcessing/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/StreamPostProcessing/BasicTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/StreamPostProcessing/ConcreteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/StreamPostProcessing/ConcreteTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/StreamPostProcessing/GenericConstrainedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/StreamPostProcessing/GenericConstrainedTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/StreamPreProcessing/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/StreamPreProcessing/BasicTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/StreamPreProcessing/ConcreteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/StreamPreProcessing/ConcreteTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/StreamPreProcessing/GenericConstrainedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/StreamPreProcessing/GenericConstrainedTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Pipeline/StreamingPipelineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Pipeline/StreamingPipelineTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/PolymorphicDispatchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/PolymorphicDispatchTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/RequestInheritanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/RequestInheritanceTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/ResponseInheritanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/ResponseInheritanceTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Scoped/Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Scoped/Init.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Scoped/ScopedLifetimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Scoped/ScopedLifetimeTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/SenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/SenderTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/SingletonLifetimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/SingletonLifetimeTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/SmokeTests.FastLazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/SmokeTests.FastLazy.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/SmokeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/SmokeTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/StreamingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/StreamingTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/StructResponseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/StructResponseTests.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/TestTypes/SomeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/TestTypes/SomeCommand.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/TestTypes/SomeCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/TestTypes/SomeCommandHandler.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/TestTypes/SomeNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/TestTypes/SomeNotification.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/TestTypes/SomeNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/TestTypes/SomeNotificationHandler.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/TestTypes/SomeOtherNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/TestTypes/SomeOtherNotificationHandler.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/TestTypes/SomeQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/TestTypes/SomeQuery.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/TestTypes/SomeQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/TestTypes/SomeQueryHandler.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/TestTypes/SomeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/TestTypes/SomeRequest.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/TestTypes/SomeRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/TestTypes/SomeRequestHandler.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/TestTypes/SomeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/TestTypes/SomeResponse.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/TestTypes/SomeStreamingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/TestTypes/SomeStreamingCommand.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/TestTypes/SomeStreamingCommandStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/TestTypes/SomeStreamingCommandStruct.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/TestTypes/SomeStreamingQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/TestTypes/SomeStreamingQuery.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/TestTypes/SomeStreamingRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/TestTypes/SomeStreamingRequest.cs -------------------------------------------------------------------------------- /test/Mediator.Tests/Transient/TransientLifetimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/test/Mediator.Tests/Transient/TransientLifetimeTests.cs -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinothamar/Mediator/HEAD/version.json --------------------------------------------------------------------------------