├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── Directory.Build.props ├── Directory.Packages.props ├── Immediate.Handlers.sln.DotSettings ├── Immediate.Handlers.slnx ├── benchmarks ├── Benchmark.Behaviors │ ├── Benchmark.Behaviors.csproj │ ├── Benchmark.cs │ └── Program.cs ├── Benchmark.Large │ ├── Benchmark.Large.csproj │ ├── Benchmark.cs │ ├── Program.cs │ └── Types.cs └── Benchmark.Simple │ ├── Benchmark.Simple.csproj │ ├── Benchmark.cs │ └── Program.cs ├── license.txt ├── readme.md ├── samples └── Normal │ ├── Behaviors.cs │ ├── GetWeatherForecast.cs │ ├── Normal.csproj │ ├── Program.cs │ └── Properties │ └── launchSettings.json ├── src ├── Common │ ├── ITypeSymbolExtensions.cs │ └── SyntaxExtensions.cs ├── Immediate.Handlers.Analyzers │ ├── AnalyzerReleases.Shipped.md │ ├── AnalyzerReleases.Unshipped.md │ ├── BehaviorsAnalyzer.cs │ ├── DiagnosticIds.cs │ ├── HandlerClassAnalyzer.cs │ ├── Immediate.Handlers.Analyzers.csproj │ ├── Immediate.Handlers.Analyzers.md │ ├── InvalidIHandlerAnalyzer.cs │ └── Properties │ │ └── launchSettings.json ├── Immediate.Handlers.CodeFixes │ ├── AnalyzerReleases.Shipped.md │ ├── AnalyzerReleases.Unshipped.md │ ├── HandlerMethodMustExistCodeFixProvider.cs │ ├── Immediate.Handlers.CodeFixes.csproj │ ├── Properties │ │ └── launchSettings.json │ ├── RefactoringExtensions.cs │ └── StaticToSealedHandlerCodeFixProvider.cs ├── Immediate.Handlers.Generators │ ├── DisplayNameFormatters.cs │ ├── EquatableReadOnlyList.cs │ ├── Immediate.Handlers.Generators.csproj │ ├── ImmediateHandlersGenerator.cs │ ├── Models.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Templates │ │ ├── Handler.sbntxt │ │ └── ServiceCollectionExtensions.sbntxt │ ├── TransformBehaviors.cs │ ├── TransformHandler.cs │ └── Utility.cs ├── Immediate.Handlers.Shared │ ├── .editorconfig │ ├── Behavior.cs │ ├── BehaviorsAttribute.cs │ ├── HandlerAttribute.cs │ ├── IHandler.cs │ └── Immediate.Handlers.Shared.csproj └── Immediate.Handlers │ └── Immediate.Handlers.csproj └── tests ├── Immediate.Handlers.FunctionalTests ├── .editorconfig ├── Behavior │ ├── BehaviorTests.cs │ └── Constraints │ │ ├── Tests.Base.cs │ │ ├── Tests.BehaviorShouldConstrain_A.cs │ │ ├── Tests.BehaviorShouldConstrain_B.cs │ │ ├── Tests.BehaviorShouldConstrain_C.cs │ │ └── Tests.BehaviorShouldConstrain_D.cs ├── HandlerAbstraction │ └── HandlerAbstractionTests.cs ├── HandlerResolver.cs ├── Immediate.Handlers.FunctionalTests.csproj ├── MultipleBehaviors │ └── MultipleBehaviorsTests.cs └── NoBehaviors │ ├── ParameterizedTests.cs │ └── ParameterlessTests.cs └── Immediate.Handlers.Tests ├── .editorconfig ├── AnalyzerTests ├── AnalyzerTestHelpers.cs ├── BehaviorAnalyzerTests │ ├── Tests.BehaviorTypeDoesNotHaveTwoGenericParameters.cs │ ├── Tests.BehaviorTypeDoesNotInheritFromGenericBehavior.cs │ ├── Tests.BehaviorTypeDoesNotUseUnboundedReference.cs │ ├── Tests.BehaviorTypeIsUsedMoreThanOnce.cs │ └── Tests.BehaviorTypeIsValid.cs ├── HandlerClassAnalyzerTests │ ├── Tests.HandleMethodDoesNotExist.cs │ ├── Tests.HandleMethodDoesNotReturnTask.cs │ ├── Tests.HandleMethodIsCorrectWithIntReturn.cs │ ├── Tests.HandleMethodIsCorrectWithVoidReturn.cs │ ├── Tests.HandleMethodIsNotPrivate.cs │ ├── Tests.HandleMethodIsNotUnique.cs │ ├── Tests.HandleMethodMissingRequest.cs │ ├── Tests.HandleMethodShouldUseCancellationToken.cs │ ├── Tests.HandleMethodTooManyParameters.cs │ ├── Tests.HandlerClassMembersPrivate.cs │ ├── Tests.HandlerClassNested.cs │ ├── Tests.HandlerClassSealed.cs │ └── Tests.HandlerClassStatic.cs └── InvalidIHandlerAnalyzerTests.cs ├── CodeFixTests ├── CodeFixTestHelper.cs ├── HandlerMethodMustExistCodeFixProviderTests.cs └── StaticToSealedHandlerRefactoringProviderTests.cs ├── GeneratorTests ├── BehaviorTests.CrtpBehavior_assemblies=Msdi#IH..ConstraintHandler.g.verified.cs ├── BehaviorTests.CrtpBehavior_assemblies=Msdi#IH.ServiceCollectionExtensions.g.verified.cs ├── BehaviorTests.CrtpBehavior_assemblies=Normal#IH..ConstraintHandler.g.verified.cs ├── BehaviorTests.MultipleBehaviors_assemblies=Msdi#IH.Dummy.GetUsersQuery.g.verified.cs ├── BehaviorTests.MultipleBehaviors_assemblies=Msdi#IH.ServiceCollectionExtensions.g.verified.cs ├── BehaviorTests.MultipleBehaviors_assemblies=Normal#IH.Dummy.GetUsersQuery.g.verified.cs ├── BehaviorTests.NestedBehavior_assemblies=Msdi#IH.Dummy.GetUsersQuery.g.verified.cs ├── BehaviorTests.NestedBehavior_assemblies=Msdi#IH.ServiceCollectionExtensions.g.verified.cs ├── BehaviorTests.NestedBehavior_assemblies=Normal#IH.Dummy.GetUsersQuery.g.verified.cs ├── BehaviorTests.SingleBehavior_assemblies=Msdi#IH.Dummy.GetUsersQuery.g.verified.cs ├── BehaviorTests.SingleBehavior_assemblies=Msdi#IH.ServiceCollectionExtensions.g.verified.cs ├── BehaviorTests.SingleBehavior_assemblies=Normal#IH.Dummy.GetUsersQuery.g.verified.cs ├── BehaviorTests.cs ├── GeneratorTestHelper.cs ├── HandlerTests.ComplexParameterAttribute#IH.Dummy.GetUsersQuery.g.verified.cs ├── HandlerTests.ComplexParameterAttribute#IH.ServiceCollectionExtensions.g.verified.cs ├── HandlerTests.IntReturnType_modifier=#IH.Dummy.GetUsersQuery.g.verified.cs ├── HandlerTests.IntReturnType_modifier=static#IH.Dummy.GetUsersQuery.g.verified.cs ├── HandlerTests.MissingCancellationToken_modifier=#IH.Dummy.GetUsersQuery.g.verified.cs ├── HandlerTests.MissingCancellationToken_modifier=static#IH.Dummy.GetUsersQuery.g.verified.cs ├── HandlerTests.MultipleParameterAttributes#IH.Dummy.GetUsersQuery.g.verified.cs ├── HandlerTests.MultipleParameterAttributes#IH.ServiceCollectionExtensions.g.verified.cs ├── HandlerTests.SimpleParameterAttribute#IH.Dummy.GetUsersQuery.g.verified.cs ├── HandlerTests.SimpleParameterAttribute#IH.ServiceCollectionExtensions.g.verified.cs ├── HandlerTests.VoidReturnType_modifier=#IH.Dummy.GetUsersQuery.g.verified.cs ├── HandlerTests.VoidReturnType_modifier=static#IH.Dummy.GetUsersQuery.g.verified.cs ├── HandlerTests.cs ├── InvalidBehaviorsTests.cs └── InvalidHandlerTests.cs ├── Helpers └── ReferenceAssemblyHelpers.cs ├── Immediate.Handlers.Tests.csproj └── ModuleInitializer.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Immediate.Handlers.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/Immediate.Handlers.sln.DotSettings -------------------------------------------------------------------------------- /Immediate.Handlers.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/Immediate.Handlers.slnx -------------------------------------------------------------------------------- /benchmarks/Benchmark.Behaviors/Benchmark.Behaviors.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/benchmarks/Benchmark.Behaviors/Benchmark.Behaviors.csproj -------------------------------------------------------------------------------- /benchmarks/Benchmark.Behaviors/Benchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/benchmarks/Benchmark.Behaviors/Benchmark.cs -------------------------------------------------------------------------------- /benchmarks/Benchmark.Behaviors/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/benchmarks/Benchmark.Behaviors/Program.cs -------------------------------------------------------------------------------- /benchmarks/Benchmark.Large/Benchmark.Large.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/benchmarks/Benchmark.Large/Benchmark.Large.csproj -------------------------------------------------------------------------------- /benchmarks/Benchmark.Large/Benchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/benchmarks/Benchmark.Large/Benchmark.cs -------------------------------------------------------------------------------- /benchmarks/Benchmark.Large/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/benchmarks/Benchmark.Large/Program.cs -------------------------------------------------------------------------------- /benchmarks/Benchmark.Large/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/benchmarks/Benchmark.Large/Types.cs -------------------------------------------------------------------------------- /benchmarks/Benchmark.Simple/Benchmark.Simple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/benchmarks/Benchmark.Simple/Benchmark.Simple.csproj -------------------------------------------------------------------------------- /benchmarks/Benchmark.Simple/Benchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/benchmarks/Benchmark.Simple/Benchmark.cs -------------------------------------------------------------------------------- /benchmarks/Benchmark.Simple/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/benchmarks/Benchmark.Simple/Program.cs -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/readme.md -------------------------------------------------------------------------------- /samples/Normal/Behaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/samples/Normal/Behaviors.cs -------------------------------------------------------------------------------- /samples/Normal/GetWeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/samples/Normal/GetWeatherForecast.cs -------------------------------------------------------------------------------- /samples/Normal/Normal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/samples/Normal/Normal.csproj -------------------------------------------------------------------------------- /samples/Normal/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/samples/Normal/Program.cs -------------------------------------------------------------------------------- /samples/Normal/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/samples/Normal/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Common/ITypeSymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Common/ITypeSymbolExtensions.cs -------------------------------------------------------------------------------- /src/Common/SyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Common/SyntaxExtensions.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Analyzers/AnalyzerReleases.Shipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Analyzers/AnalyzerReleases.Shipped.md -------------------------------------------------------------------------------- /src/Immediate.Handlers.Analyzers/AnalyzerReleases.Unshipped.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Immediate.Handlers.Analyzers/BehaviorsAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Analyzers/BehaviorsAnalyzer.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Analyzers/DiagnosticIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Analyzers/DiagnosticIds.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Analyzers/HandlerClassAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Analyzers/HandlerClassAnalyzer.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Analyzers/Immediate.Handlers.Analyzers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Analyzers/Immediate.Handlers.Analyzers.csproj -------------------------------------------------------------------------------- /src/Immediate.Handlers.Analyzers/Immediate.Handlers.Analyzers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Analyzers/Immediate.Handlers.Analyzers.md -------------------------------------------------------------------------------- /src/Immediate.Handlers.Analyzers/InvalidIHandlerAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Analyzers/InvalidIHandlerAnalyzer.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Analyzers/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Analyzers/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Immediate.Handlers.CodeFixes/AnalyzerReleases.Shipped.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Immediate.Handlers.CodeFixes/AnalyzerReleases.Unshipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.CodeFixes/AnalyzerReleases.Unshipped.md -------------------------------------------------------------------------------- /src/Immediate.Handlers.CodeFixes/HandlerMethodMustExistCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.CodeFixes/HandlerMethodMustExistCodeFixProvider.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.CodeFixes/Immediate.Handlers.CodeFixes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.CodeFixes/Immediate.Handlers.CodeFixes.csproj -------------------------------------------------------------------------------- /src/Immediate.Handlers.CodeFixes/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.CodeFixes/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Immediate.Handlers.CodeFixes/RefactoringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.CodeFixes/RefactoringExtensions.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.CodeFixes/StaticToSealedHandlerCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.CodeFixes/StaticToSealedHandlerCodeFixProvider.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Generators/DisplayNameFormatters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Generators/DisplayNameFormatters.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Generators/EquatableReadOnlyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Generators/EquatableReadOnlyList.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Generators/Immediate.Handlers.Generators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Generators/Immediate.Handlers.Generators.csproj -------------------------------------------------------------------------------- /src/Immediate.Handlers.Generators/ImmediateHandlersGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Generators/ImmediateHandlersGenerator.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Generators/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Generators/Models.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Generators/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Generators/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Immediate.Handlers.Generators/Templates/Handler.sbntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Generators/Templates/Handler.sbntxt -------------------------------------------------------------------------------- /src/Immediate.Handlers.Generators/Templates/ServiceCollectionExtensions.sbntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Generators/Templates/ServiceCollectionExtensions.sbntxt -------------------------------------------------------------------------------- /src/Immediate.Handlers.Generators/TransformBehaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Generators/TransformBehaviors.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Generators/TransformHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Generators/TransformHandler.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Generators/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Generators/Utility.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Shared/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Shared/.editorconfig -------------------------------------------------------------------------------- /src/Immediate.Handlers.Shared/Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Shared/Behavior.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Shared/BehaviorsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Shared/BehaviorsAttribute.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Shared/HandlerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Shared/HandlerAttribute.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Shared/IHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Shared/IHandler.cs -------------------------------------------------------------------------------- /src/Immediate.Handlers.Shared/Immediate.Handlers.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers.Shared/Immediate.Handlers.Shared.csproj -------------------------------------------------------------------------------- /src/Immediate.Handlers/Immediate.Handlers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/src/Immediate.Handlers/Immediate.Handlers.csproj -------------------------------------------------------------------------------- /tests/Immediate.Handlers.FunctionalTests/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.FunctionalTests/.editorconfig -------------------------------------------------------------------------------- /tests/Immediate.Handlers.FunctionalTests/Behavior/BehaviorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.FunctionalTests/Behavior/BehaviorTests.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.FunctionalTests/Behavior/Constraints/Tests.Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.FunctionalTests/Behavior/Constraints/Tests.Base.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.FunctionalTests/Behavior/Constraints/Tests.BehaviorShouldConstrain_A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.FunctionalTests/Behavior/Constraints/Tests.BehaviorShouldConstrain_A.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.FunctionalTests/Behavior/Constraints/Tests.BehaviorShouldConstrain_B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.FunctionalTests/Behavior/Constraints/Tests.BehaviorShouldConstrain_B.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.FunctionalTests/Behavior/Constraints/Tests.BehaviorShouldConstrain_C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.FunctionalTests/Behavior/Constraints/Tests.BehaviorShouldConstrain_C.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.FunctionalTests/Behavior/Constraints/Tests.BehaviorShouldConstrain_D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.FunctionalTests/Behavior/Constraints/Tests.BehaviorShouldConstrain_D.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.FunctionalTests/HandlerAbstraction/HandlerAbstractionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.FunctionalTests/HandlerAbstraction/HandlerAbstractionTests.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.FunctionalTests/HandlerResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.FunctionalTests/HandlerResolver.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.FunctionalTests/Immediate.Handlers.FunctionalTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.FunctionalTests/Immediate.Handlers.FunctionalTests.csproj -------------------------------------------------------------------------------- /tests/Immediate.Handlers.FunctionalTests/MultipleBehaviors/MultipleBehaviorsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.FunctionalTests/MultipleBehaviors/MultipleBehaviorsTests.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.FunctionalTests/NoBehaviors/ParameterizedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.FunctionalTests/NoBehaviors/ParameterizedTests.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.FunctionalTests/NoBehaviors/ParameterlessTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.FunctionalTests/NoBehaviors/ParameterlessTests.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/.editorconfig -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/AnalyzerTestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/AnalyzerTestHelpers.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/BehaviorAnalyzerTests/Tests.BehaviorTypeDoesNotHaveTwoGenericParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/BehaviorAnalyzerTests/Tests.BehaviorTypeDoesNotHaveTwoGenericParameters.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/BehaviorAnalyzerTests/Tests.BehaviorTypeDoesNotInheritFromGenericBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/BehaviorAnalyzerTests/Tests.BehaviorTypeDoesNotInheritFromGenericBehavior.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/BehaviorAnalyzerTests/Tests.BehaviorTypeDoesNotUseUnboundedReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/BehaviorAnalyzerTests/Tests.BehaviorTypeDoesNotUseUnboundedReference.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/BehaviorAnalyzerTests/Tests.BehaviorTypeIsUsedMoreThanOnce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/BehaviorAnalyzerTests/Tests.BehaviorTypeIsUsedMoreThanOnce.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/BehaviorAnalyzerTests/Tests.BehaviorTypeIsValid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/BehaviorAnalyzerTests/Tests.BehaviorTypeIsValid.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodDoesNotExist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodDoesNotExist.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodDoesNotReturnTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodDoesNotReturnTask.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodIsCorrectWithIntReturn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodIsCorrectWithIntReturn.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodIsCorrectWithVoidReturn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodIsCorrectWithVoidReturn.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodIsNotPrivate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodIsNotPrivate.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodIsNotUnique.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodIsNotUnique.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodMissingRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodMissingRequest.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodShouldUseCancellationToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodShouldUseCancellationToken.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodTooManyParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandleMethodTooManyParameters.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandlerClassMembersPrivate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandlerClassMembersPrivate.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandlerClassNested.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandlerClassNested.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandlerClassSealed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandlerClassSealed.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandlerClassStatic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/HandlerClassAnalyzerTests/Tests.HandlerClassStatic.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/AnalyzerTests/InvalidIHandlerAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/AnalyzerTests/InvalidIHandlerAnalyzerTests.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/CodeFixTests/CodeFixTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/CodeFixTests/CodeFixTestHelper.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/CodeFixTests/HandlerMethodMustExistCodeFixProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/CodeFixTests/HandlerMethodMustExistCodeFixProviderTests.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/CodeFixTests/StaticToSealedHandlerRefactoringProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/CodeFixTests/StaticToSealedHandlerRefactoringProviderTests.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.CrtpBehavior_assemblies=Msdi#IH..ConstraintHandler.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.CrtpBehavior_assemblies=Msdi#IH..ConstraintHandler.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.CrtpBehavior_assemblies=Msdi#IH.ServiceCollectionExtensions.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.CrtpBehavior_assemblies=Msdi#IH.ServiceCollectionExtensions.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.CrtpBehavior_assemblies=Normal#IH..ConstraintHandler.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.CrtpBehavior_assemblies=Normal#IH..ConstraintHandler.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.MultipleBehaviors_assemblies=Msdi#IH.Dummy.GetUsersQuery.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.MultipleBehaviors_assemblies=Msdi#IH.Dummy.GetUsersQuery.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.MultipleBehaviors_assemblies=Msdi#IH.ServiceCollectionExtensions.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.MultipleBehaviors_assemblies=Msdi#IH.ServiceCollectionExtensions.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.MultipleBehaviors_assemblies=Normal#IH.Dummy.GetUsersQuery.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.MultipleBehaviors_assemblies=Normal#IH.Dummy.GetUsersQuery.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.NestedBehavior_assemblies=Msdi#IH.Dummy.GetUsersQuery.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.NestedBehavior_assemblies=Msdi#IH.Dummy.GetUsersQuery.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.NestedBehavior_assemblies=Msdi#IH.ServiceCollectionExtensions.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.NestedBehavior_assemblies=Msdi#IH.ServiceCollectionExtensions.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.NestedBehavior_assemblies=Normal#IH.Dummy.GetUsersQuery.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.NestedBehavior_assemblies=Normal#IH.Dummy.GetUsersQuery.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.SingleBehavior_assemblies=Msdi#IH.Dummy.GetUsersQuery.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.SingleBehavior_assemblies=Msdi#IH.Dummy.GetUsersQuery.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.SingleBehavior_assemblies=Msdi#IH.ServiceCollectionExtensions.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.SingleBehavior_assemblies=Msdi#IH.ServiceCollectionExtensions.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.SingleBehavior_assemblies=Normal#IH.Dummy.GetUsersQuery.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.SingleBehavior_assemblies=Normal#IH.Dummy.GetUsersQuery.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/BehaviorTests.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/GeneratorTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/GeneratorTestHelper.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.ComplexParameterAttribute#IH.Dummy.GetUsersQuery.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.ComplexParameterAttribute#IH.Dummy.GetUsersQuery.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.ComplexParameterAttribute#IH.ServiceCollectionExtensions.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.ComplexParameterAttribute#IH.ServiceCollectionExtensions.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.IntReturnType_modifier=#IH.Dummy.GetUsersQuery.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.IntReturnType_modifier=#IH.Dummy.GetUsersQuery.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.IntReturnType_modifier=static#IH.Dummy.GetUsersQuery.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.IntReturnType_modifier=static#IH.Dummy.GetUsersQuery.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.MissingCancellationToken_modifier=#IH.Dummy.GetUsersQuery.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.MissingCancellationToken_modifier=#IH.Dummy.GetUsersQuery.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.MissingCancellationToken_modifier=static#IH.Dummy.GetUsersQuery.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.MissingCancellationToken_modifier=static#IH.Dummy.GetUsersQuery.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.MultipleParameterAttributes#IH.Dummy.GetUsersQuery.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.MultipleParameterAttributes#IH.Dummy.GetUsersQuery.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.MultipleParameterAttributes#IH.ServiceCollectionExtensions.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.MultipleParameterAttributes#IH.ServiceCollectionExtensions.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.SimpleParameterAttribute#IH.Dummy.GetUsersQuery.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.SimpleParameterAttribute#IH.Dummy.GetUsersQuery.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.SimpleParameterAttribute#IH.ServiceCollectionExtensions.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.SimpleParameterAttribute#IH.ServiceCollectionExtensions.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.VoidReturnType_modifier=#IH.Dummy.GetUsersQuery.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.VoidReturnType_modifier=#IH.Dummy.GetUsersQuery.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.VoidReturnType_modifier=static#IH.Dummy.GetUsersQuery.g.verified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.VoidReturnType_modifier=static#IH.Dummy.GetUsersQuery.g.verified.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/HandlerTests.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/InvalidBehaviorsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/InvalidBehaviorsTests.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/GeneratorTests/InvalidHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/GeneratorTests/InvalidHandlerTests.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/Helpers/ReferenceAssemblyHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/Helpers/ReferenceAssemblyHelpers.cs -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/Immediate.Handlers.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/Immediate.Handlers.Tests.csproj -------------------------------------------------------------------------------- /tests/Immediate.Handlers.Tests/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImmediatePlatform/Immediate.Handlers/HEAD/tests/Immediate.Handlers.Tests/ModuleInitializer.cs --------------------------------------------------------------------------------