diff --git a/.claude/commands/pr.md b/.claude/commands/pr.md index a7c7f654..60e273fd 100644 --- a/.claude/commands/pr.md +++ b/.claude/commands/pr.md @@ -22,6 +22,7 @@ - core - docs - testing + - tests - Use this template for the PR: --- diff --git a/.github/workflows/validate-pr-title.yaml b/.github/workflows/validate-pr-title.yaml index ff364d96..39a2c76b 100644 --- a/.github/workflows/validate-pr-title.yaml +++ b/.github/workflows/validate-pr-title.yaml @@ -46,6 +46,7 @@ jobs: core docs testing + tests requireScope: false subjectPattern: ^[a-z].* subjectPatternError: Subject must start with lowercase letter diff --git a/src/MinimalLambda.SourceGenerators/AnalyzerReleases.Shipped.md b/src/MinimalLambda.SourceGenerators/AnalyzerReleases.Shipped.md index 6c52df40..7b062c27 100644 --- a/src/MinimalLambda.SourceGenerators/AnalyzerReleases.Shipped.md +++ b/src/MinimalLambda.SourceGenerators/AnalyzerReleases.Shipped.md @@ -1,3 +1,20 @@ +## Release 2.1.1 + +### New Rules + + Rule ID | Category | Severity | Notes +---------|-----------------------------|----------|------------- + LH0005 | MinimalLambda.Configuration | Error | Diagnostics + LH0006 | MinimalLambda.Configuration | Error | Diagnostics + +## Release 2.0.0 + +### Removed Rules + + Rule ID | Category | Severity | Notes +---------|---------------------|----------|-------------------------------- + LH0001 | MinimalLambda.Usage | Error | Multiple method calls detected + ## Release 1.0.0 ### New Rules diff --git a/src/MinimalLambda.SourceGenerators/AnalyzerReleases.Unshipped.md b/src/MinimalLambda.SourceGenerators/AnalyzerReleases.Unshipped.md index 4508b3ff..e69de29b 100644 --- a/src/MinimalLambda.SourceGenerators/AnalyzerReleases.Unshipped.md +++ b/src/MinimalLambda.SourceGenerators/AnalyzerReleases.Unshipped.md @@ -1,12 +0,0 @@ -### New Rules - - Rule ID | Category | Severity | Notes ----------|-----------------------------|----------|------------- - LH0005 | MinimalLambda.Configuration | Error | Diagnostics - LH0006 | MinimalLambda.Configuration | Error | Diagnostics - -### Removed Rules - - Rule ID | Category | Severity | Notes ----------|------------------------------|----------|----------------------------------- -LH0001 | MinimalLambda.Usage | Error | Multiple method calls detected \ No newline at end of file diff --git a/src/MinimalLambda.SourceGenerators/MapHandlerIncrementalGenerator.cs b/src/MinimalLambda.SourceGenerators/MapHandlerIncrementalGenerator.cs index bfcea580..19dabb57 100644 --- a/src/MinimalLambda.SourceGenerators/MapHandlerIncrementalGenerator.cs +++ b/src/MinimalLambda.SourceGenerators/MapHandlerIncrementalGenerator.cs @@ -1,5 +1,4 @@ using System.Collections.Generic; -using System.Reflection; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using MinimalLambda.SourceGenerators.Models; @@ -9,24 +8,6 @@ namespace MinimalLambda.SourceGenerators; [Generator] public class MapHandlerIncrementalGenerator : IIncrementalGenerator { - private readonly string _generatorName; - private readonly string _generatorVersion; - - public MapHandlerIncrementalGenerator() - { - var assembly = Assembly.GetExecutingAssembly(); - - _generatorName = assembly.GetName().FullName; - _generatorVersion = assembly.GetName().Version.ToString(); - } - - /// This constructor is only used for testing. - internal MapHandlerIncrementalGenerator(string generatorName, string generatorVersion) - { - _generatorName = generatorName; - _generatorVersion = generatorVersion; - } - public void Initialize(IncrementalGeneratorInitializationContext context) { // Language version gate - only generate source if C# 11 or later is used @@ -139,12 +120,7 @@ is CSharpCompilation if (info is null) return; - LambdaHostOutputGenerator.Generate( - productionContext, - info.Value, - _generatorName, - _generatorVersion - ); + LambdaHostOutputGenerator.Generate(productionContext, info.Value); } ); } diff --git a/src/MinimalLambda.SourceGenerators/OutputGenerators/CommonSources.cs b/src/MinimalLambda.SourceGenerators/OutputGenerators/CommonSources.cs index 45d3c845..571e4b0d 100644 --- a/src/MinimalLambda.SourceGenerators/OutputGenerators/CommonSources.cs +++ b/src/MinimalLambda.SourceGenerators/OutputGenerators/CommonSources.cs @@ -2,9 +2,9 @@ namespace MinimalLambda.SourceGenerators; internal static class CommonSources { - internal static string Generate(string generatedCodeAttribute) + internal static string Generate() { - var model = new { GeneratedCodeAttribute = generatedCodeAttribute }; + var model = new { LambdaHostOutputGenerator.GeneratedCodeAttribute }; var template = TemplateHelper.LoadTemplate( GeneratorConstants.InterceptsLocationAttributeTemplateFile diff --git a/src/MinimalLambda.SourceGenerators/OutputGenerators/GenericHandlerSources.cs b/src/MinimalLambda.SourceGenerators/OutputGenerators/GenericHandlerSources.cs index be18b6a4..7103bbba 100644 --- a/src/MinimalLambda.SourceGenerators/OutputGenerators/GenericHandlerSources.cs +++ b/src/MinimalLambda.SourceGenerators/OutputGenerators/GenericHandlerSources.cs @@ -32,8 +32,7 @@ internal static string Generate( string methodName, string? wrapperReturnType, string? defaultWrapperReturnValue, - string targetType, - string generatedCodeAttribute + string targetType ) { var calls = higherOrderMethodInfos @@ -110,7 +109,7 @@ string generatedCodeAttribute { Name = methodName, Calls = calls, - GeneratedCodeAttribute = generatedCodeAttribute, + LambdaHostOutputGenerator.GeneratedCodeAttribute, }; var template = TemplateHelper.LoadTemplate(GeneratorConstants.GenericHandlerTemplateFile); diff --git a/src/MinimalLambda.SourceGenerators/OutputGenerators/LambdaHostOutputGenerator.cs b/src/MinimalLambda.SourceGenerators/OutputGenerators/LambdaHostOutputGenerator.cs index 391abb14..aff0c000 100644 --- a/src/MinimalLambda.SourceGenerators/OutputGenerators/LambdaHostOutputGenerator.cs +++ b/src/MinimalLambda.SourceGenerators/OutputGenerators/LambdaHostOutputGenerator.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using System.Linq; +using System.Reflection; using Microsoft.CodeAnalysis; using MinimalLambda.SourceGenerators.Models; @@ -7,12 +8,24 @@ namespace MinimalLambda.SourceGenerators; internal static class LambdaHostOutputGenerator { - internal static void Generate( - SourceProductionContext context, - CompilationInfo compilationInfo, - string generatorName, - string generatorVersion - ) + internal static string GeneratedCodeAttribute + { + get + { + if (field is null) + { + var assembly = Assembly.GetExecutingAssembly(); + var generatorName = assembly.GetName().FullName; + var generatorVersion = assembly.GetName().Version.ToString(); + + field = $"[GeneratedCode(\"{generatorName}\", \"{generatorVersion}\")]"; + } + + return field; + } + } + + internal static void Generate(SourceProductionContext context, CompilationInfo compilationInfo) { // validate the generator data and report any diagnostics before exiting. var diagnostics = DiagnosticGenerator.GenerateDiagnostics(compilationInfo); @@ -25,13 +38,9 @@ string generatorVersion return; } - // create GeneratedCodeAttribute. This is used across all generated source files. - var generatedCodeAttribute = - $"[GeneratedCode(\"{generatorName}\", \"{generatorVersion}\")]"; - List outputs = [ - CommonSources.Generate(generatedCodeAttribute), + CommonSources.Generate(), """ namespace MinimalLambda.Generated { @@ -52,19 +61,13 @@ namespace MinimalLambda.Generated outputs.Add( MapHandlerSources.Generate( compilationInfo.MapHandlerInvocationInfos, - compilationInfo.BuilderInfos, - generatedCodeAttribute + compilationInfo.BuilderInfos ) ); // add UseMiddleware interceptors if (compilationInfo.UseMiddlewareTInfos.Count >= 1) - outputs.Add( - UseMiddlewareTSource.Generate( - compilationInfo.UseMiddlewareTInfos, - generatedCodeAttribute - ) - ); + outputs.Add(UseMiddlewareTSource.Generate(compilationInfo.UseMiddlewareTInfos)); // add OnInit interceptors if (compilationInfo.OnInitInvocationInfos.Count >= 1) @@ -74,8 +77,7 @@ namespace MinimalLambda.Generated "OnInit", "bool", "true", - "ILambdaOnInitBuilder", - generatedCodeAttribute + "ILambdaOnInitBuilder" ) ); @@ -87,8 +89,7 @@ namespace MinimalLambda.Generated "OnShutdown", null, null, - "ILambdaOnShutdownBuilder", - generatedCodeAttribute + "ILambdaOnShutdownBuilder" ) ); diff --git a/src/MinimalLambda.SourceGenerators/OutputGenerators/MapHandlerSources.cs b/src/MinimalLambda.SourceGenerators/OutputGenerators/MapHandlerSources.cs index 61480ef4..709c1f5f 100644 --- a/src/MinimalLambda.SourceGenerators/OutputGenerators/MapHandlerSources.cs +++ b/src/MinimalLambda.SourceGenerators/OutputGenerators/MapHandlerSources.cs @@ -9,8 +9,7 @@ internal static class MapHandlerSources { internal static string Generate( EquatableArray mapHandlerInvocationInfos, - EquatableArray builderInfo, - string generatedCodeAttribute + EquatableArray builderInfo ) { var mapHandlerCalls = mapHandlerInvocationInfos.Select(mapHandlerInvocationInfo => @@ -69,7 +68,7 @@ string generatedCodeAttribute return template.Render( new { - GeneratedCodeAttribute = generatedCodeAttribute, + LambdaHostOutputGenerator.GeneratedCodeAttribute, MapHandlerCalls = mapHandlerCalls, } ); diff --git a/src/MinimalLambda.SourceGenerators/OutputGenerators/UseMiddlewareTSource.cs b/src/MinimalLambda.SourceGenerators/OutputGenerators/UseMiddlewareTSource.cs index 31f2fab4..b4f70c58 100644 --- a/src/MinimalLambda.SourceGenerators/OutputGenerators/UseMiddlewareTSource.cs +++ b/src/MinimalLambda.SourceGenerators/OutputGenerators/UseMiddlewareTSource.cs @@ -6,10 +6,7 @@ namespace MinimalLambda.SourceGenerators; internal static class UseMiddlewareTSource { - internal static string Generate( - EquatableArray useMiddlewareTInfos, - string generatedCodeAttribute - ) + internal static string Generate(EquatableArray useMiddlewareTInfos) { var useMiddlewareTCalls = useMiddlewareTInfos.Select(useMiddlewareTInfo => { @@ -87,7 +84,7 @@ n is AttributeConstants.FromServices or AttributeConstants.FromKeyedService var template = TemplateHelper.LoadTemplate(GeneratorConstants.UseMiddlewareTTemplateFile); return template.Render( - new { GeneratedCodeAttribute = generatedCodeAttribute, Calls = useMiddlewareTCalls } + new { LambdaHostOutputGenerator.GeneratedCodeAttribute, Calls = useMiddlewareTCalls } ); } diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/GeneratorTestHelpers.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/GeneratorTestHelpers.cs index 2d4d108f..384273e5 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/GeneratorTestHelpers.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/GeneratorTestHelpers.cs @@ -1,3 +1,4 @@ +using System.Text.RegularExpressions; using Amazon.Lambda.APIGatewayEvents; using Amazon.Lambda.Core; using Amazon.Lambda.RuntimeSupport; @@ -54,7 +55,24 @@ internal static Task Verify(string source, int expectedTrees = 1) result.GeneratedTrees.Length.Should().Be(expectedTrees); - return Verifier.Verify(driver).UseDirectory("Snapshots").DisableDiff(); + return Verifier + .Verify(driver) + .UseDirectory("Snapshots") + .DisableDiff() + .ScrubLinesWithReplace(line => + { + // replace [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + if (line.Contains("GeneratedCode", StringComparison.Ordinal)) + return RegexHelper + .GeneratedCodeAttributeRegex() + .Replace(line, """[GeneratedCode("REPLACED", "REPLACED")]"""); + + // replace [InterceptsLocation(1, "")] + if (line.Contains("InterceptsLocation", StringComparison.Ordinal)) + return RegexHelper.InterceptsLocationRegex().Replace(line, "REPLACED"); + + return line; + }); } internal static (GeneratorDriver driver, Compilation compilation) GenerateFromSource( @@ -106,10 +124,7 @@ .. Net90.References.All.ToList(), compilationOptions ); - var generator = new MapHandlerIncrementalGenerator( - "MinimalLambda.SourceGenerators", - "0.0.0" - ).AsSourceGenerator(); + var generator = new MapHandlerIncrementalGenerator().AsSourceGenerator(); var driver = CSharpGeneratorDriver.Create(generator); var updatedDriver = driver.RunGenerators(compilation, CancellationToken.None); @@ -117,3 +132,16 @@ .. Net90.References.All.ToList(), return (updatedDriver, compilation); } } + +internal static partial class RegexHelper +{ + [GeneratedRegex("""\[GeneratedCode\("([^"]+)",\s*"([^"]+)"\)\]""", RegexOptions.None, "en-US")] + internal static partial Regex GeneratedCodeAttributeRegex(); + + [GeneratedRegex( + """(?<=\[InterceptsLocation\(\d+, ")([A-Za-z0-9+/=]{2,})(?="\)\])""", + RegexOptions.None, + "en-US" + )] + internal static partial Regex InterceptsLocationRegex(); +} diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_AllInputSources#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_AllInputSources#LambdaHandler.g.verified.cs index 66e8ea10..f1d60061 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_AllInputSources#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_AllInputSources#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "Tx1x72WT0aa+xpOr41o/dzsBAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_Async_ReturnTaskString_TypeCast#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_Async_ReturnTaskString_TypeCast#LambdaHandler.g.verified.cs index e50f5e46..d4bb3919 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_Async_ReturnTaskString_TypeCast#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_Async_ReturnTaskString_TypeCast#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "RRgc5MNn+AL4pWTKQhrXsLYAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_NoReturn_TypeCast#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_NoReturn_TypeCast#LambdaHandler.g.verified.cs index 1da56490..de597596 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_NoReturn_TypeCast#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_NoReturn_TypeCast#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "x0XA1nde6vAUjFMeY2ZDTdoAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_NoTypeInfo_TypeCast#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_NoTypeInfo_TypeCast#LambdaHandler.g.verified.cs index 096bf646..f7661219 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_NoTypeInfo_TypeCast#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_NoTypeInfo_TypeCast#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "uvqLvSSclxUXzwz2YmfzRrwAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnExplicitType#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnExplicitType#LambdaHandler.g.verified.cs index c26eb98f..8bba7416 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnExplicitType#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnExplicitType#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "nm5FtUI+NJquLXB1CZ0sIswAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnImplicitNullable#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnImplicitNullable#LambdaHandler.g.verified.cs index 42e204f7..0683f553 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnImplicitNullable#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnImplicitNullable#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "utXmh7WLuYyG7VwRDFaLbq4AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnString#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnString#LambdaHandler.g.verified.cs index d40cbf4b..1d3032cf 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnString#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnString#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "YyltEHxaNav+M48OGFvSga4AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnTaskString#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnTaskString#LambdaHandler.g.verified.cs index aaa0ec54..d4bb3919 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnTaskString#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnTaskString#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "o/ULBbkPcz16o9tbQ0tOEPcAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnsTask_TypeCast#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnsTask_TypeCast#LambdaHandler.g.verified.cs index 103038d7..d7e4afc6 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnsTask_TypeCast#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_ReturnsTask_TypeCast#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "2aTdwJdHl473WaMveiNuirYAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_StreamResponse#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_StreamResponse#LambdaHandler.g.verified.cs index 815b2c5a..21a65cd0 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_StreamResponse#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_StreamResponse#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "jPT53Ewh7xx9P9yb1DeyM8AAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_TypeCast#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_TypeCast#LambdaHandler.g.verified.cs index e02cc045..db04245c 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_TypeCast#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_TypeCast#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "SZ39GgPCyw+sAyqV7Y0MlLwAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_TypeCast_InputFromKeyedServices#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_TypeCast_InputFromKeyedServices#LambdaHandler.g.verified.cs index 768f73eb..bc7019dc 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_TypeCast_InputFromKeyedServices#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/BlockLambdaVerifyTests.Test_BlockLambda_TypeCast_InputFromKeyedServices#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "2G3T5x4NjDpOFGweblm35AoBAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_AsksForCancellationToken#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_AsksForCancellationToken#LambdaHandler.g.verified.cs index 601afc80..f1e15166 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_AsksForCancellationToken#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_AsksForCancellationToken#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "uuDt15jObMe1Qq8s3gllzMYAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_AsksForCancellationTokenAndLambdaContext#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_AsksForCancellationTokenAndLambdaContext#LambdaHandler.g.verified.cs index ce5b5110..0d702ffd 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_AsksForCancellationTokenAndLambdaContext#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_AsksForCancellationTokenAndLambdaContext#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "E0m79hZz+OhoP5DYhe70YeAAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_AsksForCancellationTokenAndLambdaInvocationContext#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_AsksForCancellationTokenAndLambdaInvocationContext#LambdaHandler.g.verified.cs index aa830755..3e603b9a 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_AsksForCancellationTokenAndLambdaInvocationContext#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_AsksForCancellationTokenAndLambdaInvocationContext#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "MM9ytQ7zZDW9+yc/+rcLl+AAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_Async_ReturnExplicitTask#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_Async_ReturnExplicitTask#LambdaHandler.g.verified.cs index 3e341988..d7e4afc6 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_Async_ReturnExplicitTask#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_Async_ReturnExplicitTask#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "cT3iuq87IWiCDKzjFXbX3swAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ComplexInput_ComplexOutput#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ComplexInput_ComplexOutput#LambdaHandler.g.verified.cs index 5d2a6c8b..46ccb91f 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ComplexInput_ComplexOutput#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ComplexInput_ComplexOutput#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "k8jU1POB8TXl/XtywGzhweYAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ExplicitVoid#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ExplicitVoid#LambdaHandler.g.verified.cs index 509e38cb..f149a7e6 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ExplicitVoid#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ExplicitVoid#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "mCw0TmMoKLslRA4zotAzTtkAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputDi_Async#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputDi_Async#LambdaHandler.g.verified.cs index 4bfa8c8f..a3d3de41 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputDi_Async#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputDi_Async#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "RYU1ACjUCJAF6VKP6xz4f68AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputDi_AsyncAndAwait#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputDi_AsyncAndAwait#LambdaHandler.g.verified.cs index 49d281e5..a3d3de41 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputDi_AsyncAndAwait#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputDi_AsyncAndAwait#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "YAxktVM2tLACcLf16mEVcc0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputDi_AsyncAndAwait_EventAndResponseDifferentNamespace#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputDi_AsyncAndAwait_EventAndResponseDifferentNamespace#LambdaHandler.g.verified.cs index 50934deb..fd35bc12 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputDi_AsyncAndAwait_EventAndResponseDifferentNamespace#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputDi_AsyncAndAwait_EventAndResponseDifferentNamespace#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "g8LHgWNG7I4SppTaP2NXcuAAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputStream#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputStream#LambdaHandler.g.verified.cs index bbb0899a..2c24753c 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputStream#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_InputStream#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "j1cZzS1JRw4YpXVdsmK4icAAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_MainOverload_DeserializerSerializer_NoOp#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_MainOverload_DeserializerSerializer_NoOp#LambdaHandler.g.verified.cs index 3292b240..b500911d 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_MainOverload_DeserializerSerializer_NoOp#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_MainOverload_DeserializerSerializer_NoOp#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_MainOverload_NoOp#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_MainOverload_NoOp#LambdaHandler.g.verified.cs index 3292b240..b500911d 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_MainOverload_NoOp#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_MainOverload_NoOp#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_NoOutput#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_NoOutput#LambdaHandler.g.verified.cs index 33970eac..f149a7e6 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_NoOutput#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_NoOutput#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "3CWFbmqnBB4YxhpsZbBulq8AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_ReturnGenericObject#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_ReturnGenericObject#LambdaHandler.g.verified.cs index 2caaa6b6..6d9c431d 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_ReturnGenericObject#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_ReturnGenericObject#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "G4Om3+ihXcYexFMvnSQvJ64AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_ReturnNullablePrimitive#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_ReturnNullablePrimitive#LambdaHandler.g.verified.cs index 5ea10459..bd9a3ca6 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_ReturnNullablePrimitive#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_ReturnNullablePrimitive#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "JhcPD8PsJIdWe6XLFN10+a4AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_ReturnString#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_ReturnString#LambdaHandler.g.verified.cs index 9f7c3a9d..51cbf87c 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_ReturnString#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NoInput_ReturnString#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "in+uvLWWJ/AtKXn3ATT2fa8AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NullableInput_ReturnExplicitNullable#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NullableInput_ReturnExplicitNullable#LambdaHandler.g.verified.cs index 4a7d5bf1..6d421047 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NullableInput_ReturnExplicitNullable#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NullableInput_ReturnExplicitNullable#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "GzrEvlSIcRHrVreaVlX6r64AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NullableInput_ReturnImplicitNullable#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NullableInput_ReturnImplicitNullable#LambdaHandler.g.verified.cs index 458120d1..810865f6 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NullableInput_ReturnImplicitNullable#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_NullableInput_ReturnImplicitNullable#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "FyRpi+O01Le5sodA43elIa4AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ReturnExplicitTask#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ReturnExplicitTask#LambdaHandler.g.verified.cs index 2e6a84af..d7e4afc6 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ReturnExplicitTask#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ReturnExplicitTask#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "KJD4PMoAebDtIgB60tZNgswAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ReturnExplicitType#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ReturnExplicitType#LambdaHandler.g.verified.cs index 210b0189..fb24d4df 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ReturnExplicitType#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/ExpressionLambdaVerifyTests.Test_ExpressionLambda_ReturnExplicitType#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "Omlg4OEyk26g8wXWjLDFPcwAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_FloatingPointTypes#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_FloatingPointTypes#LambdaHandler.g.verified.cs index d9a3dc09..26ec57e2 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_FloatingPointTypes#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_FloatingPointTypes#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "oOoX2Z8lm6heONKgRuSEMVoBAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_IntAndLongKeys#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_IntAndLongKeys#LambdaHandler.g.verified.cs index a13640ae..54d1025f 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_IntAndLongKeys#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_IntAndLongKeys#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "UQNgECJiz6f37Kqrohi6T1YBAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_OtherTypes#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_OtherTypes#LambdaHandler.g.verified.cs index f85cfd33..cba71f53 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_OtherTypes#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_OtherTypes#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "hmegcgWk2t+EeA09rekjfN0BAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_SmallIntegerTypes#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_SmallIntegerTypes#LambdaHandler.g.verified.cs index 504f7e0a..04098c60 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_SmallIntegerTypes#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_SmallIntegerTypes#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "hw5rLqU36tq+UKKZjsYo+6QBAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_StringAndEnumKeys#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_StringAndEnumKeys#LambdaHandler.g.verified.cs index 297c71c7..72aa562e 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_StringAndEnumKeys#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_StringAndEnumKeys#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "+h6TuNWWRrZ6456NGR3gY68BAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_UnsignedIntegerTypes#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_UnsignedIntegerTypes#LambdaHandler.g.verified.cs index ffe5e30d..ac6f7dac 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_UnsignedIntegerTypes#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/KeyedServiceVerifyTests.Test_KeyedService_UnsignedIntegerTypes#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "AxgJhn/c6EE+EjInktbZjJsBAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_AsyncVoid#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_AsyncVoid#LambdaHandler.g.verified.cs index 9cc48423..f149a7e6 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_AsyncVoid#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_AsyncVoid#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "KboCfbbG13nfDrp0SLg8M7wAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_Async_ReturnTaskString#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_Async_ReturnTaskString#LambdaHandler.g.verified.cs index 3eca0a20..d4bb3919 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_Async_ReturnTaskString#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_Async_ReturnTaskString#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "ZkrKvKVefW15Q5g1yuxuRcwAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_BlockBody_InputDiKeyedServices#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_BlockBody_InputDiKeyedServices#LambdaHandler.g.verified.cs index d3693a09..e1f70720 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_BlockBody_InputDiKeyedServices#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_BlockBody_InputDiKeyedServices#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "WvA1V6ThyZ94LdZnpGUzR/kAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_BlockBody_TypeCast#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_BlockBody_TypeCast#LambdaHandler.g.verified.cs index 9b9f49bd..6c93c34e 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_BlockBody_TypeCast#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_BlockBody_TypeCast#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "9iVXmQzdmOJRzQb10S6vbbwAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_BlockBody_TypeCast_Static#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_BlockBody_TypeCast_Static#LambdaHandler.g.verified.cs index b2b3b69d..6c93c34e 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_BlockBody_TypeCast_Static#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_BlockBody_TypeCast_Static#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "WkNvIuTbAdwaZik4NmqZnLwAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_NoInput_NoOutput#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_NoInput_NoOutput#LambdaHandler.g.verified.cs index 1f04e62f..f149a7e6 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_NoInput_NoOutput#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_NoInput_NoOutput#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "+Lz+jm6gwTdwCiVkSNzQ87wAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_ReturnTask#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_ReturnTask#LambdaHandler.g.verified.cs index a591863b..d7e4afc6 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_ReturnTask#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_ReturnTask#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "JJAuncCVlvzsQmF1nMYHRMwAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_ReturnTaskString#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_ReturnTaskString#LambdaHandler.g.verified.cs index 513ea52f..d4bb3919 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_ReturnTaskString#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_ReturnTaskString#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "/Yux3FXySiMlCW6XCvraq8wAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_TypeCast_ExtraParentheses#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_TypeCast_ExtraParentheses#LambdaHandler.g.verified.cs index d09f2e0e..6c93c34e 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_TypeCast_ExtraParentheses#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/MethodHandlerVerifyTests.Test_MethodHandler_TypeCast_ExtraParentheses#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,13 +37,13 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaInvocationBuilderExtensions { private const string EventFeatureProviderKey = "__EventFeatureProvider"; private const string ResponseFeatureProviderKey = "__ResponseFeatureProvider"; - [InterceptsLocation(1, "B3NwPy0yR+xRbgA9x8f/e7wAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder MapHandlerInterceptor0( this ILambdaInvocationBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_BaseMethodCall#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_BaseMethodCall#LambdaHandler.g.verified.cs index 3292b240..b500911d 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_BaseMethodCall#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_BaseMethodCall#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_ExplicitReturnTypeAsync#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_ExplicitReturnTypeAsync#LambdaHandler.g.verified.cs index 1f07f280..3fc7bd7d 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_ExplicitReturnTypeAsync#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_ExplicitReturnTypeAsync#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnInitBuilderExtensions { - [InterceptsLocation(1, "q1uiaF3q8+xYajQEZyxaiM0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor0( this ILambdaOnInitBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MethodHandler_AsyncAndDi#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MethodHandler_AsyncAndDi#LambdaHandler.g.verified.cs index eeb5e49b..eb56ceeb 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MethodHandler_AsyncAndDi#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MethodHandler_AsyncAndDi#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnInitBuilderExtensions { - [InterceptsLocation(1, "GvWtmkGvhj2sJm4/rXiUGc0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor0( this ILambdaOnInitBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MethodHandler_AsyncAndDiAndReturnUnexpectedType#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MethodHandler_AsyncAndDiAndReturnUnexpectedType#LambdaHandler.g.verified.cs index 832a58c5..f8d3d3e2 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MethodHandler_AsyncAndDiAndReturnUnexpectedType#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MethodHandler_AsyncAndDiAndReturnUnexpectedType#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnInitBuilderExtensions { - [InterceptsLocation(1, "8o56Zwu2oVW8FXpGxJSFvc0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor0( this ILambdaOnInitBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MethodHandler_NoDi#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MethodHandler_NoDi#LambdaHandler.g.verified.cs index 4ae6095d..3fc7bd7d 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MethodHandler_NoDi#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MethodHandler_NoDi#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnInitBuilderExtensions { - [InterceptsLocation(1, "3ivf5JplhmGDGF7iXdWVSucAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor0( this ILambdaOnInitBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MultipleCalls#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MultipleCalls#LambdaHandler.g.verified.cs index b9d19caa..f91188a8 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MultipleCalls#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_MultipleCalls#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnInitBuilderExtensions { - [InterceptsLocation(1, "gOjUxL7brRqHQuY3oQ1zfc0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor0( this ILambdaOnInitBuilder application, Delegate handler @@ -57,7 +57,7 @@ Task OnInit(ILambdaLifecycleContext context) } } - [InterceptsLocation(1, "gOjUxL7brRqHQuY3oQ1zfRUBAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor1( this ILambdaOnInitBuilder application, Delegate handler @@ -78,7 +78,7 @@ Task OnInit(ILambdaLifecycleContext context) } } - [InterceptsLocation(1, "gOjUxL7brRqHQuY3oQ1zfXoBAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor2( this ILambdaOnInitBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_NoOutput#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_NoOutput#LambdaHandler.g.verified.cs index f210e9e1..7a4f10c8 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_NoOutput#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_NoOutput#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnInitBuilderExtensions { - [InterceptsLocation(1, "muLM5AWLiyZcBDFwDjSMbc0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor0( this ILambdaOnInitBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnAsyncBool#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnAsyncBool#LambdaHandler.g.verified.cs index 0c39c041..3fc7bd7d 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnAsyncBool#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnAsyncBool#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnInitBuilderExtensions { - [InterceptsLocation(1, "itVOIXgsd2/a5q0mYhXydM0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor0( this ILambdaOnInitBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnBool#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnBool#LambdaHandler.g.verified.cs index f9e7737d..c02b4969 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnBool#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnBool#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnInitBuilderExtensions { - [InterceptsLocation(1, "dCq2ERewPXxHvi/4iSh/m80AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor0( this ILambdaOnInitBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnNotExpectedType#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnNotExpectedType#LambdaHandler.g.verified.cs index fbfcb9c8..89b06d55 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnNotExpectedType#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnNotExpectedType#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnInitBuilderExtensions { - [InterceptsLocation(1, "7+o+H0MkQG+24GOQUPBdDs0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor0( this ILambdaOnInitBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnNotExpectedTypeAsync#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnNotExpectedTypeAsync#LambdaHandler.g.verified.cs index 77c03a6a..5fc3b9fc 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnNotExpectedTypeAsync#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnNotExpectedTypeAsync#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnInitBuilderExtensions { - [InterceptsLocation(1, "pi9PolKCGMrmFvoC3ft/Oc0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor0( this ILambdaOnInitBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnNotExpectedTypeTask#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnNotExpectedTypeTask#LambdaHandler.g.verified.cs index 330cf8ff..5fc3b9fc 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnNotExpectedTypeTask#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnNotExpectedTypeTask#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnInitBuilderExtensions { - [InterceptsLocation(1, "Vg2L2eBzhOCM6KRY6cER2c0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor0( this ILambdaOnInitBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnTaskBool#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnTaskBool#LambdaHandler.g.verified.cs index d4346a84..3fc7bd7d 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnTaskBool#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NoInput_ReturnTaskBool#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnInitBuilderExtensions { - [InterceptsLocation(1, "cTRqoX+dJLMMKMOCOmOufs0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor0( this ILambdaOnInitBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NullableValueAndReferenceInputs#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NullableValueAndReferenceInputs#LambdaHandler.g.verified.cs index b479edfe..ec4c51b0 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NullableValueAndReferenceInputs#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_NullableValueAndReferenceInputs#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnInitBuilderExtensions { - [InterceptsLocation(1, "dITS7/hnxk7n1XWH1BHx4s0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor0( this ILambdaOnInitBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_OneOfEachPossibleKindOfInput#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_OneOfEachPossibleKindOfInput#LambdaHandler.g.verified.cs index aa5232f2..225a31b7 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_OneOfEachPossibleKindOfInput#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_OneOfEachPossibleKindOfInput#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnInitBuilderExtensions { - [InterceptsLocation(1, "s9lx/eNP9F4h61w7TOvQPRUBAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor0( this ILambdaOnInitBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_PrimitiveInput#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_PrimitiveInput#LambdaHandler.g.verified.cs index 63fbaed7..b164523f 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_PrimitiveInput#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnInitVerifyTests.Test_OnInit_PrimitiveInput#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnInitBuilderExtensions { - [InterceptsLocation(1, "8J01folJ0MDOTLxLNRx4fs0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnInitBuilder OnInitInterceptor0( this ILambdaOnInitBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_BaseMethodCall#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_BaseMethodCall#LambdaHandler.g.verified.cs index 3292b240..b500911d 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_BaseMethodCall#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_BaseMethodCall#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_BlockLambda_ReturnsImplicitVoid#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_BlockLambda_ReturnsImplicitVoid#LambdaHandler.g.verified.cs index 8360f6b0..d0984bc6 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_BlockLambda_ReturnsImplicitVoid#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_BlockLambda_ReturnsImplicitVoid#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnShutdownBuilderExtensions { - [InterceptsLocation(1, "lPDnfssMibsxhX79gLd2lL0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnShutdownBuilder OnShutdownInterceptor0( this ILambdaOnShutdownBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_MultipleCalls#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_MultipleCalls#LambdaHandler.g.verified.cs index 3689ed3d..0ca52890 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_MultipleCalls#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_MultipleCalls#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnShutdownBuilderExtensions { - [InterceptsLocation(1, "W852isYQO43ObWn6kxnU5s0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnShutdownBuilder OnShutdownInterceptor0( this ILambdaOnShutdownBuilder application, Delegate handler @@ -57,7 +57,7 @@ Task OnShutdown(ILambdaLifecycleContext context) } } - [InterceptsLocation(1, "W852isYQO43ObWn6kxnU5hABAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnShutdownBuilder OnShutdownInterceptor1( this ILambdaOnShutdownBuilder application, Delegate handler @@ -78,7 +78,7 @@ Task OnShutdown(ILambdaLifecycleContext context) } } - [InterceptsLocation(1, "W852isYQO43ObWn6kxnU5nsBAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnShutdownBuilder OnShutdownInterceptor2( this ILambdaOnShutdownBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput#LambdaHandler.g.verified.cs index d55b8e3a..157cc7d0 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnShutdownBuilderExtensions { - [InterceptsLocation(1, "F/zSODBMGX3Xez9u/iwpl80AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnShutdownBuilder OnShutdownInterceptor0( this ILambdaOnShutdownBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput_ReturnUnexpectedType#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput_ReturnUnexpectedType#LambdaHandler.g.verified.cs index c57b77a5..a47b6131 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput_ReturnUnexpectedType#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput_ReturnUnexpectedType#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnShutdownBuilderExtensions { - [InterceptsLocation(1, "Cr7Neg3slUnAi5SjcvJU580AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnShutdownBuilder OnShutdownInterceptor0( this ILambdaOnShutdownBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput_ReturnUnexpectedTypeAsync#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput_ReturnUnexpectedTypeAsync#LambdaHandler.g.verified.cs index ec03e258..7cb6b933 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput_ReturnUnexpectedTypeAsync#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput_ReturnUnexpectedTypeAsync#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnShutdownBuilderExtensions { - [InterceptsLocation(1, "YWaX0vtU1wLdNqf9cuGdFM0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnShutdownBuilder OnShutdownInterceptor0( this ILambdaOnShutdownBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput_ReturnUnexpectedTypeTask#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput_ReturnUnexpectedTypeTask#LambdaHandler.g.verified.cs index c914ce1f..7cb6b933 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput_ReturnUnexpectedTypeTask#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NoInput_ReturnUnexpectedTypeTask#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnShutdownBuilderExtensions { - [InterceptsLocation(1, "12DeS9LwHN3iO8NwFisQBs0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnShutdownBuilder OnShutdownInterceptor0( this ILambdaOnShutdownBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NullableValueAndReferenceInputs#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NullableValueAndReferenceInputs#LambdaHandler.g.verified.cs index 1568003d..73991f53 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NullableValueAndReferenceInputs#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_NullableValueAndReferenceInputs#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnShutdownBuilderExtensions { - [InterceptsLocation(1, "BGCXXs9bVPwLCAUaU8Kkds0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnShutdownBuilder OnShutdownInterceptor0( this ILambdaOnShutdownBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_OneOfEachPossibleKindOfInput#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_OneOfEachPossibleKindOfInput#LambdaHandler.g.verified.cs index 9aabda42..96f9ef27 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_OneOfEachPossibleKindOfInput#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_OneOfEachPossibleKindOfInput#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnShutdownBuilderExtensions { - [InterceptsLocation(1, "ZhdnggwSuJq0NpRZew7QhhUBAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnShutdownBuilder OnShutdownInterceptor0( this ILambdaOnShutdownBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_PrimitiveInput#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_PrimitiveInput#LambdaHandler.g.verified.cs index b5caa984..c49919f6 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_PrimitiveInput#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/OnShutdownVerifyTests.Test_OnShutdown_PrimitiveInput#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class GeneratedLambdaOnShutdownBuilderExtensions { - [InterceptsLocation(1, "cuXlRiXWvhKK6Ao4rCbyic0AAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaOnShutdownBuilder OnShutdownInterceptor0( this ILambdaOnShutdownBuilder application, Delegate handler diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_AbstractMiddleware#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_AbstractMiddleware#LambdaHandler.g.verified.cs index f8e99c0b..3dc29905 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_AbstractMiddleware#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_AbstractMiddleware#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class UseMiddlewareExtensions { - [InterceptsLocation(1, "bfS1EdqfgRl2Xr/8V7JcF9kAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder UseMiddleware0( this ILambdaInvocationBuilder builder, params object[] args diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_ComplexRealWorldScenario#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_ComplexRealWorldScenario#LambdaHandler.g.verified.cs index ec8e7175..d5a6e748 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_ComplexRealWorldScenario#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_ComplexRealWorldScenario#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class UseMiddlewareExtensions { - [InterceptsLocation(1, "kDxACCQgVpkhkOccrv1uASMBAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder UseMiddleware0( this ILambdaInvocationBuilder builder, params object[] args diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_ConstructorWithArgs#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_ConstructorWithArgs#LambdaHandler.g.verified.cs index d23e0240..0c5edc76 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_ConstructorWithArgs#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_ConstructorWithArgs#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class UseMiddlewareExtensions { - [InterceptsLocation(1, "POU0h/pUESMeSE5RxaKDvtkAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder UseMiddleware0( this ILambdaInvocationBuilder builder, params object[] args diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_FromArgumentsAttribute#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_FromArgumentsAttribute#LambdaHandler.g.verified.cs index b2d37c02..42a9fa92 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_FromArgumentsAttribute#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_FromArgumentsAttribute#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class UseMiddlewareExtensions { - [InterceptsLocation(1, "2PY/UkDSZ0gJKBmOx8LHA/MAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder UseMiddleware0( this ILambdaInvocationBuilder builder, params object[] args diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_FromKeyedServicesAttribute#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_FromKeyedServicesAttribute#LambdaHandler.g.verified.cs index bef136e7..abbf30d4 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_FromKeyedServicesAttribute#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_FromKeyedServicesAttribute#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class UseMiddlewareExtensions { - [InterceptsLocation(1, "tvudG5XDjp+n6D0V7XtOegkBAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder UseMiddleware0( this ILambdaInvocationBuilder builder, params object[] args diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_FromServicesAttribute#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_FromServicesAttribute#LambdaHandler.g.verified.cs index 9abbaeb7..29e8bc51 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_FromServicesAttribute#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_FromServicesAttribute#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class UseMiddlewareExtensions { - [InterceptsLocation(1, "Sf77NTiY6mQYL0S/Tk+LNwkBAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder UseMiddleware0( this ILambdaInvocationBuilder builder, params object[] args diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_IAsyncDisposable#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_IAsyncDisposable#LambdaHandler.g.verified.cs index 0a6e7049..9b1c8f89 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_IAsyncDisposable#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_IAsyncDisposable#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class UseMiddlewareExtensions { - [InterceptsLocation(1, "p6F9mr5nQrDoT4xxrawd2+cAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder UseMiddleware0( this ILambdaInvocationBuilder builder, params object[] args diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_IDisposable#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_IDisposable#LambdaHandler.g.verified.cs index ea7693b4..778cf915 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_IDisposable#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_IDisposable#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class UseMiddlewareExtensions { - [InterceptsLocation(1, "lRt7PioesBPod6+JZEeC7+cAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder UseMiddleware0( this ILambdaInvocationBuilder builder, params object[] args diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_MixedParameterSources#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_MixedParameterSources#LambdaHandler.g.verified.cs index eb499bd9..21728427 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_MixedParameterSources#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_MixedParameterSources#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class UseMiddlewareExtensions { - [InterceptsLocation(1, "pTRjukdFvWAmjtqI7hgUkQkBAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder UseMiddleware0( this ILambdaInvocationBuilder builder, params object[] args diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_MultipleConstructorsAndOneWithMiddlewareConstructor#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_MultipleConstructorsAndOneWithMiddlewareConstructor#LambdaHandler.g.verified.cs index 14513dbc..96375840 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_MultipleConstructorsAndOneWithMiddlewareConstructor#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_MultipleConstructorsAndOneWithMiddlewareConstructor#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class UseMiddlewareExtensions { - [InterceptsLocation(1, "Y0YW1Yh6hjdh+sRDAe9fDtkAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder UseMiddleware0( this ILambdaInvocationBuilder builder, params object[] args diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_NullableParameter#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_NullableParameter#LambdaHandler.g.verified.cs index 1bb2a0d7..6ae4fc72 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_NullableParameter#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_NullableParameter#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class UseMiddlewareExtensions { - [InterceptsLocation(1, "RL5SM4QdQyvDIXuCIsrd3tkAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder UseMiddleware0( this ILambdaInvocationBuilder builder, params object[] args diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_OptionalParameterWithDefaultValue#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_OptionalParameterWithDefaultValue#LambdaHandler.g.verified.cs index 86f954ca..416d46de 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_OptionalParameterWithDefaultValue#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_OptionalParameterWithDefaultValue#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class UseMiddlewareExtensions { - [InterceptsLocation(1, "OgunNbI2p9A/xk9Pbp7U99kAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder UseMiddleware0( this ILambdaInvocationBuilder builder, params object[] args diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_Simple#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_Simple#LambdaHandler.g.verified.cs index 77dfdf5b..96375840 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_Simple#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_Simple#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class UseMiddlewareExtensions { - [InterceptsLocation(1, "Yw0irwbfb7fSIvQDMI+AOdkAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder UseMiddleware0( this ILambdaInvocationBuilder builder, params object[] args diff --git a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_WithArgsArray#LambdaHandler.g.verified.cs b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_WithArgsArray#LambdaHandler.g.verified.cs index 5b03fe94..01183777 100644 --- a/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_WithArgsArray#LambdaHandler.g.verified.cs +++ b/tests/MinimalLambda.SourceGenerators.UnitTests/Snapshots/UseMiddlewareTVerifyTests.Test_MiddlewareClass_WithArgsArray#LambdaHandler.g.verified.cs @@ -16,7 +16,7 @@ namespace System.Runtime.CompilerServices { using System.CodeDom.Compiler; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] file sealed class InterceptsLocationAttribute : Attribute { @@ -37,10 +37,10 @@ namespace MinimalLambda.Generated using MinimalLambda; using MinimalLambda.Builder; - [GeneratedCode("MinimalLambda.SourceGenerators", "0.0.0")] + [GeneratedCode("REPLACED", "REPLACED")] file static class UseMiddlewareExtensions { - [InterceptsLocation(1, "8R28K8qJLzNQRb0o39t1a9kAAABJbnB1dEZpbGUuY3M=")] + [InterceptsLocation(1, "REPLACED")] internal static ILambdaInvocationBuilder UseMiddleware0( this ILambdaInvocationBuilder builder, params object[] args