diff --git a/Directory.Packages.props b/Directory.Packages.props
index a7eb0942b..fd2492e5b 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -40,8 +40,8 @@
-
-
+
+
@@ -62,4 +62,4 @@
-
+
\ No newline at end of file
diff --git a/test/Generation.Tests/ModuleInitializer.cs b/test/Generation.Tests/ModuleInitializer.cs
index 67d97e1a7..4ac0b1f2a 100644
--- a/test/Generation.Tests/ModuleInitializer.cs
+++ b/test/Generation.Tests/ModuleInitializer.cs
@@ -1,4 +1,4 @@
-using System.Runtime.CompilerServices;
+using System.Runtime.CompilerServices;
using DiffEngine;
using Microsoft.CodeAnalysis;
@@ -7,12 +7,11 @@ public static class ModuleInitializer
[ModuleInitializer]
public static void Init()
{
- VerifySourceGenerators.Enable();
+ VerifySourceGenerators.Initialize();
VerifierSettings.AddExtraSettings(
- settings => { settings.Converters.Add(new SyntaxTreeConverter()); }
- );
+ settings => settings.Converters.Add(new SyntaxTreeConverter()));
DiffRunner.Disabled = true;
- VerifierSettings.DerivePathInfo(
+ DerivePathInfo(
static (sourceFile, directory, type, method) =>
{
static string GetTypeName(Type type) => type.IsNested ? $"{type.ReflectedType!.Name}.{type.Name}" : type.Name;
diff --git a/test/Generation.Tests/snapshots/AutoImplementParamsGeneratorTests.Auto_Magically_Implements_Properties.verified.cs b/test/Generation.Tests/snapshots/AutoImplementParamsGeneratorTests.Auto_Magically_Implements_Properties#Test0_DeclarationParams.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/AutoImplementParamsGeneratorTests.Auto_Magically_Implements_Properties.verified.cs
rename to test/Generation.Tests/snapshots/AutoImplementParamsGeneratorTests.Auto_Magically_Implements_Properties#Test0_DeclarationParams.verified.cs
diff --git a/test/Generation.Tests/snapshots/EnumLikeStringGeneratorTests.Auto_Magically_Implements_IEnumLikeString.verified.cs b/test/Generation.Tests/snapshots/EnumLikeStringGeneratorTests.Auto_Magically_Implements_IEnumLikeString#Test0_ThreadEventReason.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/EnumLikeStringGeneratorTests.Auto_Magically_Implements_IEnumLikeString.verified.cs
rename to test/Generation.Tests/snapshots/EnumLikeStringGeneratorTests.Auto_Magically_Implements_IEnumLikeString#Test0_ThreadEventReason.verified.cs
diff --git a/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options.00AssemblyRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options#AssemblyRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options.00AssemblyRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options#AssemblyRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options.01CodeActionRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options#CodeActionRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options.01CodeActionRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options#CodeActionRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options_With_Converters.00AssemblyRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options_With_Converters#AssemblyRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options_With_Converters.00AssemblyRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options_With_Converters#AssemblyRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options_With_Converters.01CodeActionRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options_With_Converters#CodeActionRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options_With_Converters.01CodeActionRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_Registration_Options_With_Converters#CodeActionRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options.00AssemblyRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options#AssemblyRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options.00AssemblyRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options#AssemblyRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options.01WorkspaceSymbolRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options#WorkspaceSymbolRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options.01WorkspaceSymbolRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options#WorkspaceSymbolRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options_Interface.00AssemblyRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options_Interface#AssemblyRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options_Interface.00AssemblyRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options_Interface#AssemblyRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options_Interface.01WorkspaceSymbolRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options_Interface#WorkspaceSymbolRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options_Interface.01WorkspaceSymbolRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/GeneratedRegistrationOptionsTests.Supports_Generating_Strongly_Typed_WorkDone_Registration_Options_Interface#WorkspaceSymbolRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Should_Report_Diagnostic_If_Missing_Information.01AssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Should_Report_Diagnostic_If_Missing_Information#AssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Should_Report_Diagnostic_If_Missing_Information.01AssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Should_Report_Diagnostic_If_Missing_Information#AssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Should_Report_Diagnostic_If_Missing_Information.00.verified.txt b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Should_Report_Diagnostic_If_Missing_Information.verified.txt
similarity index 90%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Should_Report_Diagnostic_If_Missing_Information.00.verified.txt
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Should_Report_Diagnostic_If_Missing_Information.verified.txt
index d9ba20eca..7ed864e4c 100644
--- a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Should_Report_Diagnostic_If_Missing_Information.00.verified.txt
+++ b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Should_Report_Diagnostic_If_Missing_Information.verified.txt
@@ -10,8 +10,7 @@
HelpLink: ,
MessageFormat: Could not infer the request router(s) to use, please specify the target interface(s).,
Message: Could not infer the request router(s) to use, please specify the target interface(s).,
- Category: JsonRPC,
- CustomTags: []
+ Category: JsonRPC
},
{
Id: JRPC1003,
@@ -23,8 +22,7 @@
HelpLink: ,
MessageFormat: Could not infer the request router(s) to use, please specify the target interface(s).,
Message: Could not infer the request router(s) to use, please specify the target interface(s).,
- Category: JsonRPC,
- CustomTags: []
+ Category: JsonRPC
}
]
}
\ No newline at end of file
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests.00AttachRequestArguments.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests#AttachRequestArguments.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests.00AttachRequestArguments.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests#AttachRequestArguments.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests.01GeneratedAssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests#GeneratedAssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests.01GeneratedAssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests#GeneratedAssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests_Nullable.00GeneratedAssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests_Nullable#GeneratedAssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests_Nullable.00GeneratedAssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests_Nullable#GeneratedAssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests_Nullable.01LaunchRequestArguments.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests_Nullable#LaunchRequestArguments.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests_Nullable.01LaunchRequestArguments.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Derived_Requests_Nullable#LaunchRequestArguments.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Generic_Types.00AttachRequestArguments.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Generic_Types#AttachRequestArguments.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Generic_Types.00AttachRequestArguments.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Generic_Types#AttachRequestArguments.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Generic_Types.01GeneratedAssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Generic_Types#GeneratedAssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Generic_Types.01GeneratedAssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allow_Generic_Types#GeneratedAssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allows_Nullable_Responses.00AttachRequestArguments.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allows_Nullable_Responses#AttachRequestArguments.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allows_Nullable_Responses.00AttachRequestArguments.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allows_Nullable_Responses#AttachRequestArguments.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allows_Nullable_Responses.01GeneratedAssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allows_Nullable_Responses#GeneratedAssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allows_Nullable_Responses.01GeneratedAssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Allows_Nullable_Responses#GeneratedAssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Custom_Method_Names.00AssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Custom_Method_Names#AssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Custom_Method_Names.00AssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Custom_Method_Names#AssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Custom_Method_Names.01ILanguageProtocolInitializeHandler.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Custom_Method_Names#ILanguageProtocolInitializeHandler.verified.cs
similarity index 99%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Custom_Method_Names.01ILanguageProtocolInitializeHandler.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Custom_Method_Names#ILanguageProtocolInitializeHandler.verified.cs
index 9baa8fc4c..fd9218d16 100644
--- a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Custom_Method_Names.01ILanguageProtocolInitializeHandler.verified.cs
+++ b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Custom_Method_Names#ILanguageProtocolInitializeHandler.verified.cs
@@ -29,4 +29,4 @@ public static partial class LanguageProtocolInitializeExtensions
public static Task RequestLanguageProtocolInitialize(this ITextDocumentLanguageClient mediator, InitializeParams request, CancellationToken cancellationToken = default) => mediator.SendRequest(request, cancellationToken);
}
#nullable restore
-}
+}
\ No newline at end of file
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Generic_Response_Types.01ExecuteCommandParams1.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Generic_Response_Types#ExecuteCommandParams1.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Generic_Response_Types.01ExecuteCommandParams1.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Generic_Response_Types#ExecuteCommandParams1.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Generic_Response_Types.02GeneratedAssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Generic_Response_Types#GeneratedAssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Generic_Response_Types.02GeneratedAssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Generic_Response_Types#GeneratedAssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Generic_Response_Types.00Test0_ExecuteCommandParams1.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Generic_Response_Types#Test0_ExecuteCommandParams1.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Generic_Response_Types.00Test0_ExecuteCommandParams1.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Generic_Response_Types#Test0_ExecuteCommandParams1.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_CapabilitiesHandler.00AssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_CapabilitiesHandler#AssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_CapabilitiesHandler.00AssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_CapabilitiesHandler#AssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_CapabilitiesHandler.01ICapabilitiesHandler.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_CapabilitiesHandler#ICapabilitiesHandler.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_CapabilitiesHandler.01ICapabilitiesHandler.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_CapabilitiesHandler#ICapabilitiesHandler.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_DidChangeTextHandler.01AssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_DidChangeTextHandler#AssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_DidChangeTextHandler.01AssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_DidChangeTextHandler#AssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_DidChangeTextHandler.02IDidChangeTextDocumentHandler.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_DidChangeTextHandler#IDidChangeTextDocumentHandler.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_DidChangeTextHandler.02IDidChangeTextDocumentHandler.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_DidChangeTextHandler#IDidChangeTextDocumentHandler.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_DidChangeTextHandler.00.verified.txt b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_DidChangeTextHandler.verified.txt
similarity index 89%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_DidChangeTextHandler.00.verified.txt
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_DidChangeTextHandler.verified.txt
index a8e983cca..c06cef434 100644
--- a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_DidChangeTextHandler.00.verified.txt
+++ b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_DidChangeTextHandler.verified.txt
@@ -10,8 +10,7 @@
HelpLink: ,
MessageFormat: No Response Router Provided for handler {0}, defaulting to {1}.,
Message: No Response Router Provided for handler {0}, defaulting to {1}.,
- Category: JsonRPC,
- CustomTags: []
+ Category: JsonRPC
}
]
}
\ No newline at end of file
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_ExitHandler.01AssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_ExitHandler#AssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_ExitHandler.01AssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_ExitHandler#AssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_ExitHandler.02IExitHandler.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_ExitHandler#IExitHandler.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_ExitHandler.02IExitHandler.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_ExitHandler#IExitHandler.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_ExitHandler.00.verified.txt b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_ExitHandler.verified.txt
similarity index 89%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_ExitHandler.00.verified.txt
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_ExitHandler.verified.txt
index 4b754600e..ac9e982e1 100644
--- a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_ExitHandler.00.verified.txt
+++ b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_ExitHandler.verified.txt
@@ -10,8 +10,7 @@
HelpLink: ,
MessageFormat: No Response Router Provided for handler {0}, defaulting to {1}.,
Message: No Response Router Provided for handler {0}, defaulting to {1}.,
- Category: JsonRPC,
- CustomTags: []
+ Category: JsonRPC
}
]
}
\ No newline at end of file
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_FoldingRangeHandler.00AssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_FoldingRangeHandler#AssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_FoldingRangeHandler.00AssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_FoldingRangeHandler#AssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_FoldingRangeHandler.01IFoldingRangeHandler.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_FoldingRangeHandler#IFoldingRangeHandler.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_FoldingRangeHandler.01IFoldingRangeHandler.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_And_Infers_Direction_FoldingRangeHandler#IFoldingRangeHandler.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_ExitHandler.00AssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_ExitHandler#AssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_ExitHandler.00AssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_ExitHandler#AssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_ExitHandler.01IExitHandler.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_ExitHandler#IExitHandler.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_ExitHandler.01IExitHandler.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Notifications_ExitHandler#IExitHandler.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests.00AssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests#AssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests.00AssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests#AssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests.01IDefinitionHandler.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests#IDefinitionHandler.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests.01IDefinitionHandler.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests#IDefinitionHandler.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests_And_Infers_Direction.01AssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests_And_Infers_Direction#AssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests_And_Infers_Direction.01AssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests_And_Infers_Direction#AssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests_And_Infers_Direction.02IDefinitionHandler.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests_And_Infers_Direction#IDefinitionHandler.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests_And_Infers_Direction.02IDefinitionHandler.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests_And_Infers_Direction#IDefinitionHandler.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests_And_Infers_Direction.00.verified.txt b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests_And_Infers_Direction.verified.txt
similarity index 89%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests_And_Infers_Direction.00.verified.txt
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests_And_Infers_Direction.verified.txt
index a88f4f32a..c442e1600 100644
--- a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests_And_Infers_Direction.00.verified.txt
+++ b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Generating_Requests_And_Infers_Direction.verified.txt
@@ -10,8 +10,7 @@
HelpLink: ,
MessageFormat: No Response Router Provided for handler {0}, defaulting to {1}.,
Message: No Response Router Provided for handler {0}, defaulting to {1}.,
- Category: JsonRPC,
- CustomTags: []
+ Category: JsonRPC
}
]
}
\ No newline at end of file
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Params_Type_As_Source.00GeneratedAssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Params_Type_As_Source#GeneratedAssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Params_Type_As_Source.00GeneratedAssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Params_Type_As_Source#GeneratedAssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Params_Type_As_Source.01RenameParams.verified.cs b/test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Params_Type_As_Source#RenameParams.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Params_Type_As_Source.01RenameParams.verified.cs
rename to test/Generation.Tests/snapshots/JsonRpcGenerationTests.Supports_Params_Type_As_Source#RenameParams.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions.00AssemblyCapabilityKeys.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions#AssemblyCapabilityKeys.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions.00AssemblyCapabilityKeys.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions#AssemblyCapabilityKeys.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions.04AssemblyRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions#AssemblyRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions.04AssemblyRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions#AssemblyRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions.01DiscoverUnitTestsParams.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions#DiscoverUnitTestsParams.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions.01DiscoverUnitTestsParams.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions#DiscoverUnitTestsParams.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions.02GeneratedAssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions#GeneratedAssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions.02GeneratedAssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions#GeneratedAssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions.03UnitTest.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions#UnitTest.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions.03UnitTest.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions#UnitTest.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions.05UnitTestRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions#UnitTestRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions.05UnitTestRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Custom_Language_Extensions#UnitTestRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Void_Task_Return.00GeneratedAssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Void_Task_Return#GeneratedAssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Void_Task_Return.00GeneratedAssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Void_Task_Return#GeneratedAssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Void_Task_Return.02RegistrationContainer.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Void_Task_Return#RegistrationContainer.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Void_Task_Return.02RegistrationContainer.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Void_Task_Return#RegistrationContainer.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Void_Task_Return.01RegistrationParams.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Void_Task_Return#RegistrationParams.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Void_Task_Return.01RegistrationParams.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Generating_Void_Task_Return#RegistrationParams.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.00AssemblyCapabilityKeys.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#AssemblyCapabilityKeys.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.00AssemblyCapabilityKeys.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#AssemblyCapabilityKeys.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.05AssemblyRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#AssemblyRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.05AssemblyRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#AssemblyRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.02GeneratedAssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#GeneratedAssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.02GeneratedAssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#GeneratedAssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.03OutlayHint.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#OutlayHint.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.03OutlayHint.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#OutlayHint.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.07OutlayHintContainer.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#OutlayHintContainer.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.07OutlayHintContainer.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#OutlayHintContainer.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.04OutlayHintParams.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#OutlayHintParams.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.04OutlayHintParams.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#OutlayHintParams.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.06OutlayHintRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#OutlayHintRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.06OutlayHintRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#OutlayHintRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.01Test0_OutlayHintParams.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#Test0_OutlayHintParams.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.01Test0_OutlayHintParams.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#Test0_OutlayHintParams.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.08Test0_OutlayHintTyped.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#Test0_OutlayHintTyped.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.08Test0_OutlayHintTyped.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint#Test0_OutlayHintTyped.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.02Test0_OutlayHintParams1.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.02Test0_OutlayHintParams1.verified.cs
deleted file mode 100644
index e69de29bb..000000000
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.03GeneratedAssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.03GeneratedAssemblyJsonRpcHandlers.verified.cs
deleted file mode 100644
index e69de29bb..000000000
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.04OutlayHint.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.04OutlayHint.verified.cs
deleted file mode 100644
index e69de29bb..000000000
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.05OutlayHintParams.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.05OutlayHintParams.verified.cs
deleted file mode 100644
index e69de29bb..000000000
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.06OutlayHintParams1.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.06OutlayHintParams1.verified.cs
deleted file mode 100644
index e69de29bb..000000000
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.07AssemblyRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.07AssemblyRegistrationOptions.verified.cs
deleted file mode 100644
index e69de29bb..000000000
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.08OutlayHintRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.08OutlayHintRegistrationOptions.verified.cs
deleted file mode 100644
index e69de29bb..000000000
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.09OutlayHintContainer.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.09OutlayHintContainer.verified.cs
deleted file mode 100644
index e69de29bb..000000000
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.10Test0_OutlayHintTyped.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Inlay_Hint.10Test0_OutlayHintTyped.verified.cs
deleted file mode 100644
index e69de29bb..000000000
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.00AssemblyCapabilityKeys.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#AssemblyCapabilityKeys.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.00AssemblyCapabilityKeys.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#AssemblyCapabilityKeys.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.06AssemblyRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#AssemblyRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.06AssemblyRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#AssemblyRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.02GeneratedAssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#GeneratedAssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.02GeneratedAssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#GeneratedAssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.03SubLens.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#SubLens.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.03SubLens.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#SubLens.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.08SubLensContainer.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#SubLensContainer.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.08SubLensContainer.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#SubLensContainer.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.04SubLensParams.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#SubLensParams.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.04SubLensParams.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#SubLensParams.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.05SubLensRefreshParams.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#SubLensRefreshParams.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.05SubLensRefreshParams.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#SubLensRefreshParams.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.07SubLensRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#SubLensRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.07SubLensRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#SubLensRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.01Test0_SubLensParams.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#Test0_SubLensParams.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.01Test0_SubLensParams.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#Test0_SubLensParams.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.09Test0_SubLensTyped.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#Test0_SubLensTyped.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data.09Test0_SubLensTyped.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Nullable_Params_With_Typed_Data#Test0_SubLensTyped.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.00AssemblyCapabilityKeys.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#AssemblyCapabilityKeys.verified.cs
similarity index 97%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.00AssemblyCapabilityKeys.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#AssemblyCapabilityKeys.verified.cs
index cb652ae8f..61f956aa0 100644
--- a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.00AssemblyCapabilityKeys.verified.cs
+++ b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#AssemblyCapabilityKeys.verified.cs
@@ -13,4 +13,4 @@
using OmniSharp.Extensions.LanguageServer.Protocol.Workspace;
using System.Diagnostics;
-[assembly: AssemblyCapabilityKey(typeof(OmniSharp.Extensions.LanguageServer.Protocol.Client.Capabilities.WorkspaceSymbolCapability), nameof(ClientCapabilities.Workspace), nameof(WorkspaceClientCapabilities.Symbol))]
+[assembly: AssemblyCapabilityKey(typeof(OmniSharp.Extensions.LanguageServer.Protocol.Client.Capabilities.WorkspaceSymbolCapability), nameof(ClientCapabilities.Workspace), nameof(WorkspaceClientCapabilities.Symbol))]
\ No newline at end of file
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.07AssemblyRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#AssemblyRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.07AssemblyRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#AssemblyRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.03GeneratedAssemblyJsonRpcHandlers.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#GeneratedAssemblyJsonRpcHandlers.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.03GeneratedAssemblyJsonRpcHandlers.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#GeneratedAssemblyJsonRpcHandlers.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.04SymbolInformationParams.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#SymbolInformationParams.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.04SymbolInformationParams.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#SymbolInformationParams.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.01Test0_SymbolInformationParams.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#Test0_SymbolInformationParams.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.01Test0_SymbolInformationParams.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#Test0_SymbolInformationParams.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.02Test0_WorkspaceSymbolParams.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#Test0_WorkspaceSymbolParams.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.02Test0_WorkspaceSymbolParams.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#Test0_WorkspaceSymbolParams.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.05WorkspaceSymbol.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#WorkspaceSymbol.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.05WorkspaceSymbol.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#WorkspaceSymbol.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.06WorkspaceSymbolParams.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#WorkspaceSymbolParams.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.06WorkspaceSymbolParams.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#WorkspaceSymbolParams.verified.cs
diff --git a/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.08WorkspaceSymbolRegistrationOptions.verified.cs b/test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#WorkspaceSymbolRegistrationOptions.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source.08WorkspaceSymbolRegistrationOptions.verified.cs
rename to test/Generation.Tests/snapshots/LspFeatureTests.Supports_Params_Type_As_Source#WorkspaceSymbolRegistrationOptions.verified.cs
diff --git a/test/Generation.Tests/snapshots/TypedCanBeResolvedTests.Supports_Generating_Strongly_Typed_Container.verified.cs b/test/Generation.Tests/snapshots/TypedCanBeResolvedTests.Supports_Generating_Strongly_Typed_Container#CodeLensContainer.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/TypedCanBeResolvedTests.Supports_Generating_Strongly_Typed_Container.verified.cs
rename to test/Generation.Tests/snapshots/TypedCanBeResolvedTests.Supports_Generating_Strongly_Typed_Container#CodeLensContainer.verified.cs
diff --git a/test/Generation.Tests/snapshots/TypedCanBeResolvedTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data.00CodeLensContainer.verified.cs b/test/Generation.Tests/snapshots/TypedCanBeResolvedTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data#CodeLensContainer.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/TypedCanBeResolvedTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data.00CodeLensContainer.verified.cs
rename to test/Generation.Tests/snapshots/TypedCanBeResolvedTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data#CodeLensContainer.verified.cs
diff --git a/test/Generation.Tests/snapshots/TypedCanBeResolvedTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data.01Test0_CodeLensTyped.verified.cs b/test/Generation.Tests/snapshots/TypedCanBeResolvedTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data#Test0_CodeLensTyped.verified.cs
similarity index 100%
rename from test/Generation.Tests/snapshots/TypedCanBeResolvedTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data.01Test0_CodeLensTyped.verified.cs
rename to test/Generation.Tests/snapshots/TypedCanBeResolvedTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data#Test0_CodeLensTyped.verified.cs
diff --git a/test/Generation.Tests/snapshots/TypedParamsTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data.00.received.txt b/test/Generation.Tests/snapshots/TypedParamsTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data.00.received.txt
deleted file mode 100644
index 0f206832a..000000000
--- a/test/Generation.Tests/snapshots/TypedParamsTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data.00.received.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- Diagnostics: [
- {
- Id: JRPC1003,
- Title: Cannot infer request router(s),
- Severity: Error,
- WarningLevel: 0,
- Location: Test0.cs: (16,4)-(16,26),
- Description: ,
- HelpLink: ,
- MessageFormat: Could not infer the request router(s) to use, please specify the target interface(s).,
- Message: Could not infer the request router(s) to use, please specify the target interface(s).,
- Category: JsonRPC,
- CustomTags: []
- }
- ]
-}
\ No newline at end of file
diff --git a/test/Generation.Tests/snapshots/TypedParamsTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data.01GeneratedAssemblyJsonRpcHandlers.received.cs b/test/Generation.Tests/snapshots/TypedParamsTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data.01GeneratedAssemblyJsonRpcHandlers.received.cs
deleted file mode 100644
index 30d33a7db..000000000
--- a/test/Generation.Tests/snapshots/TypedParamsTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data.01GeneratedAssemblyJsonRpcHandlers.received.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//HintName: GeneratedAssemblyJsonRpcHandlers.cs
-using OmniSharp.Extensions.JsonRpc;
-
-[assembly: AssemblyJsonRpcHandlers(typeof(Test.Document.IPublishDiagnosticsHandler))]
\ No newline at end of file
diff --git a/test/Generation.Tests/snapshots/TypedParamsTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data.02PublishDiagnosticsParams.received.cs b/test/Generation.Tests/snapshots/TypedParamsTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data.02PublishDiagnosticsParams.received.cs
deleted file mode 100644
index 7acaed031..000000000
--- a/test/Generation.Tests/snapshots/TypedParamsTests.Supports_Generating_Strongly_Typed_ICanBeResolved_Data.02PublishDiagnosticsParams.received.cs
+++ /dev/null
@@ -1,49 +0,0 @@
-//HintName: PublishDiagnosticsParams.cs
-using MediatR;
-using Microsoft.Extensions.DependencyInjection;
-using OmniSharp.Extensions.DebugAdapter.Protocol;
-using OmniSharp.Extensions.DebugAdapter.Protocol.Events;
-using OmniSharp.Extensions.DebugAdapter.Protocol.Models;
-using OmniSharp.Extensions.DebugAdapter.Protocol.Requests;
-using OmniSharp.Extensions.JsonRpc;
-using OmniSharp.Extensions.JsonRpc.Generation;
-using OmniSharp.Extensions.LanguageServer.Protocol;
-using OmniSharp.Extensions.LanguageServer.Protocol.Client.Capabilities;
-using OmniSharp.Extensions.LanguageServer.Protocol.Generation;
-using OmniSharp.Extensions.LanguageServer.Protocol.Models;
-using OmniSharp.Extensions.LanguageServer.Protocol.Serialization;
-using OmniSharp.Extensions.LanguageServer.Protocol.Server;
-using System;
-using System.Collections.Generic;
-using System.Threading;
-using System.Threading.Tasks;
-using Test.Document;
-using Test.Models;
-
-#nullable enable
-namespace Test.Document
-{
- [Parallel, Method(TextDocumentNames.PublishDiagnostics, Direction.ServerToClient)]
- [System.Runtime.CompilerServices.CompilerGeneratedAttribute]
- public partial interface IPublishDiagnosticsHandler : IJsonRpcNotificationHandler, ICapability
- {
- }
-
- [System.Runtime.CompilerServices.CompilerGeneratedAttribute, System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute]
- abstract public partial class PublishDiagnosticsHandlerBase : AbstractHandlers.NotificationCapability, IPublishDiagnosticsHandler
- {
- }
-}
-#nullable restore
-
-namespace Test.Document
-{
-#nullable enable
- [System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute, System.Runtime.CompilerServices.CompilerGeneratedAttribute]
- public static partial class PublishDiagnosticsExtensions
- {
- public static void PublishDiagnostics(this ITextDocumentLanguageServer mediator, PublishDiagnosticsParams request) => mediator.SendNotification(request);
- public static void PublishDiagnostics(this ILanguageServer mediator, PublishDiagnosticsParams request) => mediator.SendNotification(request);
- }
-#nullable restore
-}
\ No newline at end of file
diff --git a/test/TestingUtils/TestingUtils.csproj b/test/TestingUtils/TestingUtils.csproj
index 5f9c8393f..3e420f82f 100644
--- a/test/TestingUtils/TestingUtils.csproj
+++ b/test/TestingUtils/TestingUtils.csproj
@@ -1,7 +1,7 @@
-
+
- netstandard2.0;netstandard2.1;net6.0
+ net6.0
false