diff --git a/samples/Onion/Domain/Age.cs b/samples/Onion/Domain/Age.cs new file mode 100644 index 00000000000..bd6caaf6325 --- /dev/null +++ b/samples/Onion/Domain/Age.cs @@ -0,0 +1,27 @@ +using Vogen; + +namespace Domain; + +[ValueObject] +public readonly partial struct Age +{ + public static bool operator <(Age left, Age right) + { + return left.CompareTo(right) < 0; + } + + public static bool operator <=(Age left, Age right) + { + return left.CompareTo(right) <= 0; + } + + public static bool operator >(Age left, Age right) + { + return left.CompareTo(right) > 0; + } + + public static bool operator >=(Age left, Age right) + { + return left.CompareTo(right) >= 0; + } +} \ No newline at end of file diff --git a/samples/Onion/Domain/CustomerId.cs b/samples/Onion/Domain/CustomerId.cs new file mode 100644 index 00000000000..c70770ef17c --- /dev/null +++ b/samples/Onion/Domain/CustomerId.cs @@ -0,0 +1,27 @@ +using Vogen; + +namespace Domain; + +[ValueObject] +public partial struct CustomerId +{ + public static bool operator <(CustomerId left, CustomerId right) + { + return left.CompareTo(right) < 0; + } + + public static bool operator <=(CustomerId left, CustomerId right) + { + return left.CompareTo(right) <= 0; + } + + public static bool operator >(CustomerId left, CustomerId right) + { + return left.CompareTo(right) > 0; + } + + public static bool operator >=(CustomerId left, CustomerId right) + { + return left.CompareTo(right) >= 0; + } +} \ No newline at end of file diff --git a/samples/Onion/Domain/CustomerName.cs b/samples/Onion/Domain/CustomerName.cs new file mode 100644 index 00000000000..e44fd7e95ec --- /dev/null +++ b/samples/Onion/Domain/CustomerName.cs @@ -0,0 +1,27 @@ +using Vogen; + +namespace Domain; + +[ValueObject] +public partial struct CustomerName +{ + public static bool operator <(CustomerName left, CustomerName right) + { + return left.CompareTo(right) < 0; + } + + public static bool operator <=(CustomerName left, CustomerName right) + { + return left.CompareTo(right) <= 0; + } + + public static bool operator >(CustomerName left, CustomerName right) + { + return left.CompareTo(right) > 0; + } + + public static bool operator >=(CustomerName left, CustomerName right) + { + return left.CompareTo(right) >= 0; + } +} \ No newline at end of file diff --git a/samples/Onion/Domain/Department.cs b/samples/Onion/Domain/Department.cs new file mode 100644 index 00000000000..2c75ffe5fe9 --- /dev/null +++ b/samples/Onion/Domain/Department.cs @@ -0,0 +1,27 @@ +using Vogen; + +namespace Domain; + +[ValueObject] +public readonly partial record struct Department +{ + public static bool operator <(Department left, Department right) + { + return left.CompareTo(right) < 0; + } + + public static bool operator <=(Department left, Department right) + { + return left.CompareTo(right) <= 0; + } + + public static bool operator >(Department left, Department right) + { + return left.CompareTo(right) > 0; + } + + public static bool operator >=(Department left, Department right) + { + return left.CompareTo(right) >= 0; + } +} \ No newline at end of file diff --git a/samples/Onion/Domain/EmployeeEntity.cs b/samples/Onion/Domain/EmployeeEntity.cs new file mode 100644 index 00000000000..eb45244a0de --- /dev/null +++ b/samples/Onion/Domain/EmployeeEntity.cs @@ -0,0 +1,12 @@ +namespace Domain; + +public class EmployeeEntity +{ + public Id Id { get; set; } = null!; // must be null in order for EF core to generate a value + public required Name Name { get; set; } = Name.NotSet; + public required Age Age { get; set; } + + public required Department Department { get; set; } + + public required HireDate HireDate { get; set; } +} \ No newline at end of file diff --git a/samples/Onion/Domain/Id.cs b/samples/Onion/Domain/Id.cs new file mode 100644 index 00000000000..7e3787d06eb --- /dev/null +++ b/samples/Onion/Domain/Id.cs @@ -0,0 +1,27 @@ +using Vogen; + +namespace Domain; + +[ValueObject] +public partial class Id +{ + public static bool operator <(Id left, Id right) + { + return ReferenceEquals(left, null) ? !ReferenceEquals(right, null) : left.CompareTo(right) < 0; + } + + public static bool operator <=(Id left, Id right) + { + return ReferenceEquals(left, null) || left.CompareTo(right) <= 0; + } + + public static bool operator >(Id left, Id right) + { + return !ReferenceEquals(left, null) && left.CompareTo(right) > 0; + } + + public static bool operator >=(Id left, Id right) + { + return ReferenceEquals(left, null) ? ReferenceEquals(right, null) : left.CompareTo(right) >= 0; + } +} \ No newline at end of file diff --git a/samples/Onion/Domain/Main.cs b/samples/Onion/Domain/Main.cs index 09408ffab8a..f799e40aa83 100644 --- a/samples/Onion/Domain/Main.cs +++ b/samples/Onion/Domain/Main.cs @@ -10,45 +10,26 @@ namespace Domain; -[ValueObject] -public partial struct CustomerId; - -[ValueObject] -public partial struct CustomerName; - -[ValueObject] -public partial struct OrderId; - -public class Order -{ - public CustomerId CustomerId { get; set; } - public OrderId OrderId { get; set; } - public CustomerName CustomerName { get; set; } -} - -public class EmployeeEntity -{ - public Id Id { get; set; } = null!; // must be null in order for EF core to generate a value - public required Name Name { get; set; } = Name.NotSet; - public required Age Age { get; set; } - - public required Department Department { get; set; } - - public required HireDate HireDate { get; set; } -} - -[ValueObject] -public partial class Id; - -[ValueObject] -[Instance("NotSet", "[NOT_SET]")] -public partial class Name; - -[ValueObject] -public readonly partial struct Age; - -[ValueObject] -public readonly partial record struct Department; - [ValueObject] -public partial record class HireDate; \ No newline at end of file +public partial record class HireDate +{ + public static bool operator <(HireDate left, HireDate right) + { + return ReferenceEquals(left, null) ? !ReferenceEquals(right, null) : left.CompareTo(right) < 0; + } + + public static bool operator <=(HireDate left, HireDate right) + { + return ReferenceEquals(left, null) || left.CompareTo(right) <= 0; + } + + public static bool operator >(HireDate left, HireDate right) + { + return !ReferenceEquals(left, null) && left.CompareTo(right) > 0; + } + + public static bool operator >=(HireDate left, HireDate right) + { + return ReferenceEquals(left, null) ? ReferenceEquals(right, null) : left.CompareTo(right) >= 0; + } +} \ No newline at end of file diff --git a/samples/Onion/Domain/Name.cs b/samples/Onion/Domain/Name.cs new file mode 100644 index 00000000000..6b46cb230e4 --- /dev/null +++ b/samples/Onion/Domain/Name.cs @@ -0,0 +1,28 @@ +using Vogen; + +namespace Domain; + +[ValueObject] +[Instance("NotSet", "[NOT_SET]")] +public partial class Name +{ + public static bool operator <(Name left, Name right) + { + return ReferenceEquals(left, null) ? !ReferenceEquals(right, null) : left.CompareTo(right) < 0; + } + + public static bool operator <=(Name left, Name right) + { + return ReferenceEquals(left, null) || left.CompareTo(right) <= 0; + } + + public static bool operator >(Name left, Name right) + { + return !ReferenceEquals(left, null) && left.CompareTo(right) > 0; + } + + public static bool operator >=(Name left, Name right) + { + return ReferenceEquals(left, null) ? ReferenceEquals(right, null) : left.CompareTo(right) >= 0; + } +} \ No newline at end of file diff --git a/samples/Onion/Domain/Order.cs b/samples/Onion/Domain/Order.cs new file mode 100644 index 00000000000..f1bc02d3ea4 --- /dev/null +++ b/samples/Onion/Domain/Order.cs @@ -0,0 +1,8 @@ +namespace Domain; + +public class Order +{ + public CustomerId CustomerId { get; set; } + public OrderId OrderId { get; set; } + public CustomerName CustomerName { get; set; } +} \ No newline at end of file diff --git a/samples/Onion/Domain/OrderId.cs b/samples/Onion/Domain/OrderId.cs new file mode 100644 index 00000000000..4afcc71babb --- /dev/null +++ b/samples/Onion/Domain/OrderId.cs @@ -0,0 +1,27 @@ +using Vogen; + +namespace Domain; + +[ValueObject] +public partial struct OrderId +{ + public static bool operator <(OrderId left, OrderId right) + { + return left.CompareTo(right) < 0; + } + + public static bool operator <=(OrderId left, OrderId right) + { + return left.CompareTo(right) <= 0; + } + + public static bool operator >(OrderId left, OrderId right) + { + return left.CompareTo(right) > 0; + } + + public static bool operator >=(OrderId left, OrderId right) + { + return left.CompareTo(right) >= 0; + } +} \ No newline at end of file diff --git a/samples/WebApplication.Shared/Age.cs b/samples/WebApplication.Shared/Age.cs new file mode 100644 index 00000000000..9cfe564381a --- /dev/null +++ b/samples/WebApplication.Shared/Age.cs @@ -0,0 +1,6 @@ +using Vogen; + +namespace WebApplication.Shared; + +[ValueObject] +public partial struct Age; \ No newline at end of file diff --git a/samples/WebApplication.Shared/Class1.cs b/samples/WebApplication.Shared/Class1.cs index ebc20fe606b..4266b3eca15 100644 --- a/samples/WebApplication.Shared/Class1.cs +++ b/samples/WebApplication.Shared/Class1.cs @@ -7,5 +7,4 @@ namespace WebApplication.Shared; [ValueObject] -public partial struct SharedStruct; - +public partial struct SharedStruct; \ No newline at end of file diff --git a/samples/WebApplication.Shared/Name.cs b/samples/WebApplication.Shared/Name.cs new file mode 100644 index 00000000000..e501f01fe66 --- /dev/null +++ b/samples/WebApplication.Shared/Name.cs @@ -0,0 +1,6 @@ +using Vogen; + +namespace WebApplication.Shared; + +[ValueObject] +public partial class Name; \ No newline at end of file diff --git a/samples/WebApplication/Program.cs b/samples/WebApplication/Program.cs index 0f26c41f13d..d7516e1e33a 100644 --- a/samples/WebApplication/Program.cs +++ b/samples/WebApplication/Program.cs @@ -1,8 +1,8 @@ #pragma warning disable ASPDEPR002 -//using Microsoft.OpenApi.Any; using Microsoft.OpenApi; using Vogen; +using WebApplication.Shared; #if USE_SWASHBUCKLE [assembly: VogenDefaults(openApiSchemaCustomizations: OpenApiSchemaCustomizations.GenerateSwashbuckleMappingExtensionMethod)] @@ -14,14 +14,17 @@ #endif + var builder = Microsoft.AspNetCore.Builder.WebApplication.CreateBuilder(args); #if USE_MICROSOFT_OPENAPI_AND_SCALAR builder.Services.AddOpenApi((OpenApiOptions o) => { + o.MapVogenTypesInOpenApiMarkers(); }); #endif + #if USE_SWASHBUCKLE // Add services to the container. // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle @@ -47,7 +50,6 @@ app.UseSwaggerUI(); #endif - app.UseHttpsRedirection(); app.MapControllers(); @@ -123,4 +125,9 @@ app.MapScalarApiReference(); #endif -app.Run(); \ No newline at end of file +app.Run(); + +[OpenApiMarker] +[OpenApiMarker] +[OpenApiMarker] +public partial class OpenApiMarkers; diff --git a/src/Vogen.SharedTypes/EfCoreConverterAttribute.cs b/src/Vogen.SharedTypes/EfCoreConverterAttribute.cs index 51931a6c32c..80d087e3a2b 100644 --- a/src/Vogen.SharedTypes/EfCoreConverterAttribute.cs +++ b/src/Vogen.SharedTypes/EfCoreConverterAttribute.cs @@ -2,13 +2,22 @@ namespace Vogen; - - [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] public class EfCoreConverterAttribute : ConversionMarkerAttribute { } +/// +/// Decorated partial classes with these attributes will ensure that Vogen generates an OpenApi schema for the value object specified. +/// Add multiple attributes to generate multiple Open API registrationss. +/// NOTE: Only Open API Version 2.0 and greater is supported. +/// +/// +[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] +public class OpenApiMarkerAttribute : ConversionMarkerAttribute +{ +} + public class ConversionMarkerAttribute : Attribute { } \ No newline at end of file diff --git a/src/Vogen/ConversionMarkerKind.cs b/src/Vogen/ConversionMarkerKind.cs index 36d252e2bc4..dcdec5a4f01 100644 --- a/src/Vogen/ConversionMarkerKind.cs +++ b/src/Vogen/ConversionMarkerKind.cs @@ -2,8 +2,9 @@ namespace Vogen; public enum ConversionMarkerKind { - Unrecognized, + Unrecognized , EFCore, MessagePack, Bson, + OpenApi, } \ No newline at end of file diff --git a/src/Vogen/ConversionMarkers.cs b/src/Vogen/ConversionMarkers.cs index 00ee806b5b2..4c82d622814 100644 --- a/src/Vogen/ConversionMarkers.cs +++ b/src/Vogen/ConversionMarkers.cs @@ -12,6 +12,7 @@ internal static class ConversionMarkers { private static readonly Dictionary _knownMarkerAttributes = new() { + { "OpenApiMarkerAttribute`1", ConversionMarkerKind.OpenApi }, { "EfCoreConverterAttribute`1", ConversionMarkerKind.EFCore }, { "MessagePackAttribute`1", ConversionMarkerKind.MessagePack }, { "BsonSerializerAttribute`1", ConversionMarkerKind.Bson } diff --git a/src/Vogen/GenerateCodeForAspNetCoreOpenApiSchema.cs b/src/Vogen/GenerateCodeForAspNetCoreOpenApiSchema.cs index dfc4d2743f7..31dd65a8a38 100644 --- a/src/Vogen/GenerateCodeForAspNetCoreOpenApiSchema.cs +++ b/src/Vogen/GenerateCodeForAspNetCoreOpenApiSchema.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; +using System.Collections.Immutable; using System.Linq; using System.Text; using Microsoft.CodeAnalysis; @@ -14,8 +15,18 @@ internal static void WriteOpenApiExtensionMethodMapping( SourceProductionContext context, List workItems, VogenKnownSymbols knownSymbols, - string inAppendage) + string className) { + var items = workItems.Select(eachItem => + new Item + { + VoTypeName = eachItem.VoTypeName, + IsTheWrapperAValueType = eachItem.IsTheWrapperAValueType, + FullAliasedNamespace = eachItem.FullAliasedNamespace, + IParsableIsAvailable = knownSymbols.IParsableOfT is not null, + UnderlyingTypeFullName = eachItem.UnderlyingType.EscapedFullName() + }).ToList(); + OpenApiVersionBeingUsed v = IsOpenApi2xReferenced(knownSymbols) ? OpenApiVersionBeingUsed.TwoPlus : IsOpenApi1xReferenced(knownSymbols) ? OpenApiVersionBeingUsed.One : OpenApiVersionBeingUsed.None; @@ -24,16 +35,25 @@ internal static void WriteOpenApiExtensionMethodMapping( return; } + WriteOpenApiExtensionMethodMapping(context, items, knownSymbols, className, v); + } + + private static void WriteOpenApiExtensionMethodMapping( + SourceProductionContext context, + List workItems, + VogenKnownSymbols knownSymbols, + string className, + OpenApiVersionBeingUsed v) + { var sb = new StringBuilder(); sb.AppendLine(GeneratedCodeSegments.Preamble); sb.AppendLine(); - sb.AppendLine("public static class VogenOpenApiExtensions"); + sb.AppendLine("public static partial class VogenOpenApiExtensions"); sb.AppendLine("{"); sb .Append(_indent) - .Append("public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypes") - .Append(inAppendage) + .Append($"public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions {className}") .AppendLine("(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options)"); sb.Append(_indent).AppendLine("{"); @@ -61,22 +81,20 @@ internal static void WriteOpenApiExtensionMethodMapping( sb.Append(_indent).AppendLine("}"); sb.AppendLine("}"); - context.AddSource("OpenApiSchemaExtensions_g.cs", sb.ToString()); + context.AddSource($"_{className}_g.cs", sb.ToString()); } - private static string MapWorkItemsForOpenApi(List workItems, StringBuilder sb, OpenApiVersionBeingUsed v) + private static void MapWorkItemsForOpenApi(List workItems, StringBuilder sb, OpenApiVersionBeingUsed v) { MapWorkItemsForOpenApi(workItems, sb, false, v); var valueTypes = workItems.Where(i => i.IsTheWrapperAValueType); MapWorkItemsForOpenApi(valueTypes, sb, true, v); - - return sb.ToString(); } - private static void MapWorkItemsForOpenApi(IEnumerable workItems, StringBuilder sb, bool nullable, OpenApiVersionBeingUsed v) + private static void MapWorkItemsForOpenApi(IEnumerable workItems, StringBuilder sb, bool nullable, OpenApiVersionBeingUsed v) { - foreach (VoWorkItem workItem in workItems) + foreach (var workItem in workItems) { string voTypeName = workItem.VoTypeName; string ns = workItem.FullAliasedNamespace; @@ -130,4 +148,37 @@ enum OpenApiVersionBeingUsed One, TwoPlus } + + public static void WriteOpenApiSpecForMarkers(SourceProductionContext context, + List workItems, + VogenKnownSymbols knownSymbols, + ImmutableArray markerClasses) + { + foreach (MarkerClassDefinition eachMarkerClass in markerClasses) + { + var matchingMarkers = eachMarkerClass.AttributeDefinitions.Where(a => a.Marker?.Kind == ConversionMarkerKind.OpenApi).ToList(); + + if (matchingMarkers.Count == 0) + { + continue; + } + + var items = eachMarkerClass.AttributeDefinitions.Select(ad => ad.Marker).Where(m => m is not null).Select(eachItem => + new Item + { + IsTheWrapperAValueType = eachItem!.VoSymbol.IsValueType, + FullAliasedNamespace = eachItem.VoSymbol.FullAliasedNamespace(), + IParsableIsAvailable = knownSymbols.IParsableOfT is not null, + UnderlyingTypeFullName = eachItem.UnderlyingTypeSymbol.EscapedFullName(), + VoTypeName = eachItem.VoSymbol.Name + }).ToList(); + + WriteOpenApiExtensionMethodMapping( + context, + items, + knownSymbols, + $"MapVogenTypesIn{eachMarkerClass.MarkerClassSymbol.Name}", + OpenApiVersionBeingUsed.TwoPlus); + } + } } \ No newline at end of file diff --git a/src/Vogen/GenerateCodeForEfCoreMarkers.cs b/src/Vogen/GenerateCodeForEfCoreMarkers.cs index e743b86a0b0..03a0a8bbe68 100644 --- a/src/Vogen/GenerateCodeForEfCoreMarkers.cs +++ b/src/Vogen/GenerateCodeForEfCoreMarkers.cs @@ -8,7 +8,7 @@ namespace Vogen; -internal class GenerateCodeForEfCoreMarkers +internal static class GenerateCodeForEfCoreMarkers { public static void Generate(SourceProductionContext context, Compilation compilation, ImmutableArray markerClasses) { @@ -17,13 +17,13 @@ public static void Generate(SourceProductionContext context, Compilation compila return; } - foreach (MarkerClassDefinition? eachMarkerClass in markerClasses) + foreach (MarkerClassDefinition eachMarkerClass in markerClasses) { var matchingMarkers = eachMarkerClass.AttributeDefinitions.Where(a => a.Marker?.Kind == ConversionMarkerKind.EFCore).ToList(); if (matchingMarkers.Count == 0) { - return; + continue; } StoreExtensionMethodToRegisterAllInMarkerClass(eachMarkerClass.MarkerClassSymbol, matchingMarkers, context); diff --git a/src/Vogen/GenerateCodeForOpenApiSchemaCustomization.cs b/src/Vogen/GenerateCodeForOpenApiSchemaCustomization.cs index 0083a87c8d6..398fd359425 100644 --- a/src/Vogen/GenerateCodeForOpenApiSchemaCustomization.cs +++ b/src/Vogen/GenerateCodeForOpenApiSchemaCustomization.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; +using System.Collections.Immutable; using System.Linq; using System.Text; using Microsoft.CodeAnalysis; @@ -12,28 +13,32 @@ public static void WriteIfNeeded(VogenConfiguration? globalConfig, SourceProductionContext context, List workItems, VogenKnownSymbols knownSymbols, + ImmutableArray markerClasses, Compilation compilation) { + GenerateCodeForAspNetCoreOpenApiSchema + .WriteOpenApiSpecForMarkers(context, workItems, knownSymbols, markerClasses); + var c = globalConfig?.OpenApiSchemaCustomizations ?? VogenConfiguration.DefaultInstance.OpenApiSchemaCustomizations; var projectName = ProjectName.FromAssemblyName(compilation.Assembly.Name); - var inAppendage = string.IsNullOrEmpty(projectName) ? string.Empty : $"In{projectName}"; + var className = string.IsNullOrEmpty(projectName) ? string.Empty : $"MapVogenTypesIn{projectName}"; if (c.HasFlag(OpenApiSchemaCustomizations.GenerateSwashbuckleSchemaFilter)) { - WriteSchemaFilter(context, knownSymbols, inAppendage); + WriteSchemaFilter(context, knownSymbols, className); } if (c.HasFlag(OpenApiSchemaCustomizations.GenerateSwashbuckleMappingExtensionMethod)) { - WriteSwashbuckleExtensionMethodMapping(context, workItems, knownSymbols, inAppendage); + WriteSwashbuckleExtensionMethodMapping(context, workItems, knownSymbols, className); } if (c.HasFlag(OpenApiSchemaCustomizations.GenerateOpenApiMappingExtensionMethod)) { GenerateCodeForAspNetCoreOpenApiSchema - .WriteOpenApiExtensionMethodMapping(context, workItems, knownSymbols, inAppendage); + .WriteOpenApiExtensionMethodMapping(context, workItems, knownSymbols, className); } } @@ -145,17 +150,25 @@ private static string MapWorkItems(List workItems) { var sb = new StringBuilder(); + var items = workItems.Select(workItem => new Item + { + IParsableIsAvailable = workItem.ParsingInformation.IParsableIsAvailable, + UnderlyingTypeFullName = workItem.UnderlyingTypeFullName, + VoTypeName = workItem.VoTypeName, + FullAliasedNamespace = workItem.FullAliasedNamespace, + IsTheWrapperAValueType = workItem.IsTheWrapperAValueType + }).ToArray(); + // map everything an non-nullable - MapWorkItems(workItems, sb, false); + MapWorkItems(items, sb, false); // map value types again as nullable, see https://github.com/SteveDunn/Vogen/issues/693 - var valueTypes = workItems.Where(i => i.IsTheWrapperAValueType); - MapWorkItems(valueTypes, sb, true); + MapWorkItems(items.Where(i => i.IsTheWrapperAValueType), sb, true); return sb.ToString(); } - private static void MapWorkItems(IEnumerable workItems, StringBuilder sb, bool nullable) + private static void MapWorkItems(IEnumerable workItems, StringBuilder sb, bool nullable) { foreach (var workItem in workItems) { @@ -180,10 +193,19 @@ private static void MapWorkItems(IEnumerable workItems, StringBuilde } } + public class Item + { + public required string UnderlyingTypeFullName { get; init; } + public required bool IParsableIsAvailable { get; init; } + public required string VoTypeName { get; init; } + public required string FullAliasedNamespace { get; init; } + public required bool IsTheWrapperAValueType { get; init; } + } + internal record struct TypeAndFormat(string Type, string JsonSchemaType, string Format); // see https://spec.openapis.org/oas/v3.0.0.html#data-types - internal static TypeAndFormat MapUnderlyingTypeToJsonSchema(VoWorkItem workItem) + internal static TypeAndFormat MapUnderlyingTypeToJsonSchema(Item workItem) { var primitiveType = workItem.UnderlyingTypeFullName; @@ -202,15 +224,15 @@ internal static TypeAndFormat MapUnderlyingTypeToJsonSchema(VoWorkItem workItem) "System.DateTimeOffset" => new("string", "String", "date-time"), "System.Guid" => new("string", "String", "uuid"), "System.Byte" => new("string", "String", "byte"), - _ => TryMapComplexPrimitive(workItem) + _ => TryMapComplexPrimitive(workItem.IParsableIsAvailable) }; return jsonType; } - private static TypeAndFormat TryMapComplexPrimitive(VoWorkItem workItem) + private static TypeAndFormat TryMapComplexPrimitive(bool iParsableIsAvailable) { - if (workItem.ParsingInformation.IParsableIsAvailable) + if (iParsableIsAvailable) { return new("string", "String", ""); } diff --git a/src/Vogen/ValueObjectGenerator.cs b/src/Vogen/ValueObjectGenerator.cs index 9a3da6b4da0..93c20b5c122 100644 --- a/src/Vogen/ValueObjectGenerator.cs +++ b/src/Vogen/ValueObjectGenerator.cs @@ -44,14 +44,14 @@ public void Initialize(IncrementalGeneratorInitializationContext context) var targets = left.Right.Left.Left; var globalConfig = left.Right.Left.Right; var ks = source.Right; - var ef = left.Right.Right; + var mrkerClasses = left.Right.Right; Execute( compilation, ks, targets, globalConfig, - ef, + mrkerClasses, spc); }); } @@ -69,12 +69,12 @@ private static Found GetTargets(SyntaxValueProvider syntaxProvider) transform: (ctx, _) => ManageAttributes.GetDefaultConfigFromGlobalAttribute(ctx)) .Where(static m => m is not null)!; - IncrementalValuesProvider converterMarkerClasses = syntaxProvider.CreateSyntaxProvider( + IncrementalValuesProvider markerClasses = syntaxProvider.CreateSyntaxProvider( predicate: (node, _) => ConversionMarkers.IsTarget(node), transform: (ctx, _) => ConversionMarkers.GetMarkerClassFromAttribute(ctx)) .Where(static m => m is not null)!; - return new Found(targets, globalConfig, converterMarkerClasses); + return new Found(targets, globalConfig, markerClasses); } record struct Found( @@ -122,7 +122,7 @@ private static void Execute( // get all the ValueObject types found. List workItems = GetWorkItems(targets, spc, globalConfig, csharpCompilation.LanguageVersion, vogenKnownSymbols, compilation).ToList(); - GenerateCodeForOpenApiSchemaCustomization.WriteIfNeeded(globalConfig, spc, workItems, vogenKnownSymbols, compilation); + GenerateCodeForOpenApiSchemaCustomization.WriteIfNeeded(globalConfig, spc, workItems, vogenKnownSymbols, markerClasses, compilation); GenerateCodeForEfCoreMarkers.Generate(spc, compilation, markerClasses); diff --git a/tests/SnapshotTests/BsonSerializationGeneration/BsonSerializationGenerationTests.cs b/tests/SnapshotTests/BsonSerializationGeneration/BsonSerializationGenerationTests.cs index 59bb26caad0..bbe8e8a48af 100644 --- a/tests/SnapshotTests/BsonSerializationGeneration/BsonSerializationGenerationTests.cs +++ b/tests/SnapshotTests/BsonSerializationGeneration/BsonSerializationGenerationTests.cs @@ -4,9 +4,6 @@ namespace SnapshotTests.BsonSerializationGeneration; -// contrib: An idea place to start a new feature. Write a new test for the feature here to get it working, then -// add more tests. Move these tests if there are several of them, and it makes sense to group them. - public class BsonSerializationGenerationTests { [Fact] diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug604_Swashbuckle_has_missing_namespaces_for_the_vo.Test.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug604_Swashbuckle_has_missing_namespaces_for_the_vo.Test.verified.txt index 0f7a4fb4a39..fad9c6a4dbd 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug604_Swashbuckle_has_missing_namespaces_for_the_vo.Test.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug604_Swashbuckle_has_missing_namespaces_for_the_vo.Test.verified.txt @@ -28,7 +28,7 @@ public static class VogenSwashbuckleExtensions { - public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) + public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesMapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) { global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = false }); global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType>(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = true }); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug608_swashbuckle_mappingTests.Used_to_treat_non_primitives_as_objects_but_now_treats_IParsable_as_strings.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug608_swashbuckle_mappingTests.Used_to_treat_non_primitives_as_objects_but_now_treats_IParsable_as_strings.verified.txt index c68b07a21a1..8df970bce58 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug608_swashbuckle_mappingTests.Used_to_treat_non_primitives_as_objects_but_now_treats_IParsable_as_strings.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug608_swashbuckle_mappingTests.Used_to_treat_non_primitives_as_objects_but_now_treats_IParsable_as_strings.verified.txt @@ -28,7 +28,7 @@ public static class VogenSwashbuckleExtensions { - public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) + public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesMapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) { global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "string", Format = "uuid", Nullable = false }); global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType>(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "string", Format = "uuid", Nullable = true }); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug610_Inconsistent_casting.Setting_implicit_casting_to_primitive_in_global_config_should_not_write_a_primitive_cast_to_wrapper.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug610_Inconsistent_casting.Setting_implicit_casting_to_primitive_in_global_config_should_not_write_a_primitive_cast_to_wrapper.verified.txt index f371cd0b2f2..f3e6b442761 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug610_Inconsistent_casting.Setting_implicit_casting_to_primitive_in_global_config_should_not_write_a_primitive_cast_to_wrapper.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug610_Inconsistent_casting.Setting_implicit_casting_to_primitive_in_global_config_should_not_write_a_primitive_cast_to_wrapper.verified.txt @@ -24,7 +24,7 @@ using System.Reflection; [global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")] -public class VogenSchemaFilterIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter +public class VogenSchemaFilterMapVogenTypesIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter { private const BindingFlags _flags = BindingFlags.Public | BindingFlags.Instance; public void Apply(global::Microsoft.OpenApi.Models.OpenApiSchema schema, global::Swashbuckle.AspNetCore.SwaggerGen.SchemaFilterContext context) @@ -99,7 +99,7 @@ public class VogenSchemaFilterIngenerator : global::Swashbuckle.AspNetCore.Swagg public static class VogenSwashbuckleExtensions { - public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) + public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesMapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) { global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = false }); global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType>(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = true }); diff --git a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug720_Inconsistent_casting_mixed_with_IVogen_generation.Works_when_the_static_abstracts_and_implementation_have_same_casting.verified.txt b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug720_Inconsistent_casting_mixed_with_IVogen_generation.Works_when_the_static_abstracts_and_implementation_have_same_casting.verified.txt index 65c1925a37a..f7b926b96d2 100644 --- a/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug720_Inconsistent_casting_mixed_with_IVogen_generation.Works_when_the_static_abstracts_and_implementation_have_same_casting.verified.txt +++ b/tests/SnapshotTests/BugFixes/snapshots/snap-vAspNetCore8.0/Bug720_Inconsistent_casting_mixed_with_IVogen_generation.Works_when_the_static_abstracts_and_implementation_have_same_casting.verified.txt @@ -24,7 +24,7 @@ using System.Reflection; [global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")] -public class VogenSchemaFilterIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter +public class VogenSchemaFilterMapVogenTypesIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter { private const BindingFlags _flags = BindingFlags.Public | BindingFlags.Instance; public void Apply(global::Microsoft.OpenApi.Models.OpenApiSchema schema, global::Swashbuckle.AspNetCore.SwaggerGen.SchemaFilterContext context) @@ -99,7 +99,7 @@ public class VogenSchemaFilterIngenerator : global::Swashbuckle.AspNetCore.Swagg public static class VogenSwashbuckleExtensions { - public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) + public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesMapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) { global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = false }); global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType>(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = true }); diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_002d5cd48fe758aa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_002d5cd48fe758aa.verified.txt index d50a5b2c64f..dab90956875 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_002d5cd48fe758aa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_002d5cd48fe758aa.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_003d2d0cb66151e4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_003d2d0cb66151e4.verified.txt index 4694fff7a00..aa2ba790ec8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_003d2d0cb66151e4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_003d2d0cb66151e4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_005d0ac21fd049d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_005d0ac21fd049d7.verified.txt index a3df463c674..c72193cf5d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_005d0ac21fd049d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_005d0ac21fd049d7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_00e96f66fdf0ffcd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_00e96f66fdf0ffcd.verified.txt index 6e1497357c5..a35bcc5683c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_00e96f66fdf0ffcd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_00e96f66fdf0ffcd.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0116620100e4fd9a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0116620100e4fd9a.verified.txt index fd090da1031..d1863828ec5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0116620100e4fd9a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0116620100e4fd9a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt index 0e0e34e0482..152478353e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_012fbd76e82e3f04.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_013db1f2eef4f91e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_013db1f2eef4f91e.verified.txt index 71971bc311a..a92dfb264a0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_013db1f2eef4f91e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_013db1f2eef4f91e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_01401de07f3182bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_01401de07f3182bc.verified.txt index 3830885a022..bac3c5c72c8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_01401de07f3182bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_01401de07f3182bc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_014abf59613892a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_014abf59613892a4.verified.txt index 0d2252ffd35..01a018cbf1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_014abf59613892a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_014abf59613892a4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_023862f8a15bd7d0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_023862f8a15bd7d0.verified.txt index 1ae6da71944..0b42b44cc6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_023862f8a15bd7d0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_023862f8a15bd7d0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt index 837ab0ec44f..2e58faa74bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0289f598fd443b1b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_02a550ee02020578.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_02a550ee02020578.verified.txt index 512bc3d56dd..7d88cd6ef34 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_02a550ee02020578.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_02a550ee02020578.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_02e20d7371e19230.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_02e20d7371e19230.verified.txt index bcd46cecb44..b7675fdb22b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_02e20d7371e19230.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_02e20d7371e19230.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03359f6288338ab7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03359f6288338ab7.verified.txt index 293efd1add7..4b7ef907abe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03359f6288338ab7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03359f6288338ab7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03822c9f0e7deb11.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03822c9f0e7deb11.verified.txt index 92f17799a9d..7cfd7b77d1b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03822c9f0e7deb11.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03822c9f0e7deb11.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt index c3533f37e08..79ed978dbae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03f8e839d8e284cb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03fc21edf421ede7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03fc21edf421ede7.verified.txt index d1025ac61e4..ee5ddc07dbb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03fc21edf421ede7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_03fc21edf421ede7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_040f1bd3bf23f4fb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_040f1bd3bf23f4fb.verified.txt index f1305cd34c2..85b22343022 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_040f1bd3bf23f4fb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_040f1bd3bf23f4fb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_042a5ffde11af2ec.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_042a5ffde11af2ec.verified.txt index f887e37896c..71524d6e7d1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_042a5ffde11af2ec.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_042a5ffde11af2ec.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04677d6c7f10ed16.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04677d6c7f10ed16.verified.txt index 42d6c41de82..7164860d3e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04677d6c7f10ed16.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04677d6c7f10ed16.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt index 10cb357b783..7f1876888ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0491737f093e26d7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04a077b65b8f5d8b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04a077b65b8f5d8b.verified.txt index 68affdcec65..05f0d808ee7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04a077b65b8f5d8b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04a077b65b8f5d8b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04b7c83e89b12fd3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04b7c83e89b12fd3.verified.txt index b9d6fb4ff5f..77afddc906b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04b7c83e89b12fd3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04b7c83e89b12fd3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt index 8be67da3d9d..47c0358e85b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_04ea23c5595cb8e3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_050c26fae61c53ab.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_050c26fae61c53ab.verified.txt index 657d286e5e8..a7c02567b9b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_050c26fae61c53ab.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_050c26fae61c53ab.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt index 8f022b8b450..8f390c58fd5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0519fccfe1fe9064.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0551d8ef7b81bc47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0551d8ef7b81bc47.verified.txt index 23bdfb56929..893fdbc497b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0551d8ef7b81bc47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0551d8ef7b81bc47.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05906f988ed23bd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05906f988ed23bd7.verified.txt index 2d5cc5db7dc..7ad17166cee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05906f988ed23bd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05906f988ed23bd7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05a3572c175fa848.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05a3572c175fa848.verified.txt index 8e0668a18bd..cda5130b999 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05a3572c175fa848.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05a3572c175fa848.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt index 3729229d57f..53b95e76423 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ec053f3ab84d9f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05eed801871b7f26.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05eed801871b7f26.verified.txt index b8e82f4f7b1..dd556a27ccf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05eed801871b7f26.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05eed801871b7f26.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ffcb611df36f9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ffcb611df36f9e.verified.txt index 3d1c451ce9b..3b9dae0d3e0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ffcb611df36f9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_05ffcb611df36f9e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0607d7304535f83e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0607d7304535f83e.verified.txt index cbe4944f2e6..b8e391c94fa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0607d7304535f83e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0607d7304535f83e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_06321a22058a68d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_06321a22058a68d4.verified.txt index a6ae96308eb..ebd69769637 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_06321a22058a68d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_06321a22058a68d4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0679898d7724c514.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0679898d7724c514.verified.txt index 933a7006020..6bf6d06c470 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0679898d7724c514.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0679898d7724c514.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_069111ded709ffca.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_069111ded709ffca.verified.txt index 2ae5f8323ff..d8e60657bd1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_069111ded709ffca.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_069111ded709ffca.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_06a0dff89e5219f7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_06a0dff89e5219f7.verified.txt index 431e8fa1f48..1144ded49ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_06a0dff89e5219f7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_06a0dff89e5219f7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_07152ddef446017a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_07152ddef446017a.verified.txt index 7714635579f..b8a3312be5c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_07152ddef446017a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_07152ddef446017a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_074a789fc2cbeb86.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_074a789fc2cbeb86.verified.txt index 8035e3af868..2de33183041 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_074a789fc2cbeb86.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_074a789fc2cbeb86.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0785770b3467d282.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0785770b3467d282.verified.txt index 1871f0e9f31..c796da2490f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0785770b3467d282.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0785770b3467d282.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt index 4d3102f7059..aed6be76d39 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793e334fc6ef863.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793f8891f5a59e8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793f8891f5a59e8.verified.txt index c7bdb15aeb8..7033951e0aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793f8891f5a59e8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0793f8891f5a59e8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_07b2e0ae432f019d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_07b2e0ae432f019d.verified.txt index 9689fe136c8..57eb9e7c158 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_07b2e0ae432f019d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_07b2e0ae432f019d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_080c2045cf96cdb6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_080c2045cf96cdb6.verified.txt index 191b084e612..7bfbc078248 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_080c2045cf96cdb6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_080c2045cf96cdb6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt index a6033ee6da1..e25bbd95292 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08412de94ddea904.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_086efd374d152dbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_086efd374d152dbb.verified.txt index c38dedf5e63..2a7889cedd2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_086efd374d152dbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_086efd374d152dbb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08843b35dc20043e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08843b35dc20043e.verified.txt index b7c63571b42..d38e6e1beb7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08843b35dc20043e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08843b35dc20043e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08b8c765370bf76f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08b8c765370bf76f.verified.txt index 7d70fbc13ab..ac7321b0b8a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08b8c765370bf76f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08b8c765370bf76f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08d4579b70b3647d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08d4579b70b3647d.verified.txt index 75f646eaec0..f4dee2a5b31 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08d4579b70b3647d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_08d4579b70b3647d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_092e0e87f53882f7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_092e0e87f53882f7.verified.txt index 5109c7a4b4f..8512ee3459a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_092e0e87f53882f7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_092e0e87f53882f7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_09a9f0db4d759d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_09a9f0db4d759d83.verified.txt index 870173dd15c..ea69c40ba8e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_09a9f0db4d759d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_09a9f0db4d759d83.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_09b82a466b556566.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_09b82a466b556566.verified.txt index 15f9e1b6a84..5f7c0707b79 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_09b82a466b556566.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_09b82a466b556566.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_09f8b32b85d23eb9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_09f8b32b85d23eb9.verified.txt index ed14a2c6316..be28b3096a3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_09f8b32b85d23eb9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_09f8b32b85d23eb9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0a52ec62740f823d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0a52ec62740f823d.verified.txt index 8cd8451d2f9..b820595cb7f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0a52ec62740f823d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0a52ec62740f823d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0a77c43e358be007.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0a77c43e358be007.verified.txt index b982a8a2d22..8568ec1b37d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0a77c43e358be007.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0a77c43e358be007.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0aa57ac4252509b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0aa57ac4252509b0.verified.txt index 11322d0f095..c312d9278c0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0aa57ac4252509b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0aa57ac4252509b0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ac0d75b00e21cb0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ac0d75b00e21cb0.verified.txt index 367679102d9..0f278a2d5b3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ac0d75b00e21cb0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ac0d75b00e21cb0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ae3931c014da994.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ae3931c014da994.verified.txt index 0d11738fc00..891d3114565 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ae3931c014da994.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ae3931c014da994.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0b3f34a186230f44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0b3f34a186230f44.verified.txt index de2ee654129..57403dfeda3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0b3f34a186230f44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0b3f34a186230f44.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0b5d4e46ebad4197.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0b5d4e46ebad4197.verified.txt index c43111aeb1d..0f63b92517f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0b5d4e46ebad4197.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0b5d4e46ebad4197.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0b6e67ae1cb364fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0b6e67ae1cb364fe.verified.txt index 0e86d9282ba..551837b761a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0b6e67ae1cb364fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0b6e67ae1cb364fe.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ba3a6ca2f09968a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ba3a6ca2f09968a.verified.txt index 833db9191b8..17c216ea797 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ba3a6ca2f09968a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ba3a6ca2f09968a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0bf9f05aeeca580b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0bf9f05aeeca580b.verified.txt index 9b272efb654..eace167ea46 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0bf9f05aeeca580b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0bf9f05aeeca580b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt index b6cadd29e86..e81f1c8fc92 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c2e5b75af6993eb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c3cc58994dea75c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c3cc58994dea75c.verified.txt index 07ecdccb70b..f3d9375a9b0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c3cc58994dea75c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c3cc58994dea75c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c8541f90aea6b2c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c8541f90aea6b2c.verified.txt index 6584a3c27c0..eb2d3b8dbfd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c8541f90aea6b2c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c8541f90aea6b2c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c9cc8c523e2ebea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c9cc8c523e2ebea.verified.txt index 65e61ba9212..d2b1a37cfce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c9cc8c523e2ebea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0c9cc8c523e2ebea.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ca4e7c909c44b49.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ca4e7c909c44b49.verified.txt index 788f2a389a7..5a6286862cb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ca4e7c909c44b49.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ca4e7c909c44b49.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0cbed81ce9504056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0cbed81ce9504056.verified.txt index 1299a4fffe0..957694f3978 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0cbed81ce9504056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0cbed81ce9504056.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0cc8450968f9655d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0cc8450968f9655d.verified.txt index a2439af32c2..d1ea69faf96 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0cc8450968f9655d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0cc8450968f9655d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0cfb36f44b91cc38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0cfb36f44b91cc38.verified.txt index a3172b9cd00..31d0e4d2126 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0cfb36f44b91cc38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0cfb36f44b91cc38.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0d5171e1a3727069.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0d5171e1a3727069.verified.txt index 8106e132dc6..27dda9a1a6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0d5171e1a3727069.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0d5171e1a3727069.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0d6ee8694cdffc4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0d6ee8694cdffc4c.verified.txt index 2a0fd818091..d886b8fb691 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0d6ee8694cdffc4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0d6ee8694cdffc4c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0da638765ae76b89.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0da638765ae76b89.verified.txt index 7b83b26e4d6..a28ba4bdcb8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0da638765ae76b89.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0da638765ae76b89.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0dfa408cb6b487b4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0dfa408cb6b487b4.verified.txt index 107f3e2abe4..6957a7f7e3f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0dfa408cb6b487b4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0dfa408cb6b487b4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt index f854b837fae..f7114d45983 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e18d99e6a1f2348.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e4957a856d8d6de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e4957a856d8d6de.verified.txt index b18377a432d..f2291d5257b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e4957a856d8d6de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e4957a856d8d6de.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e52a77cc61be994.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e52a77cc61be994.verified.txt index 0748b6611f1..545ba24687b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e52a77cc61be994.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e52a77cc61be994.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e7f1af3e45db09e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e7f1af3e45db09e.verified.txt index 08fe53d123a..4e82d35976b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e7f1af3e45db09e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e7f1af3e45db09e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e9f3301e1b2f672.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e9f3301e1b2f672.verified.txt index 1cac756157b..6d8bad170cd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e9f3301e1b2f672.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0e9f3301e1b2f672.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0eaa64f365d9f429.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0eaa64f365d9f429.verified.txt index 2a03f9c32a0..07a7e17fa4b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0eaa64f365d9f429.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0eaa64f365d9f429.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt index 2c476ec86ce..35dfd549186 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f297fc605923a63.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f3e9268e6ca44be.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f3e9268e6ca44be.verified.txt index 82a722279ac..487b224caff 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f3e9268e6ca44be.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f3e9268e6ca44be.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f69a961dd7177e4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f69a961dd7177e4.verified.txt index 487873dc92d..2b9146dee54 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f69a961dd7177e4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0f69a961dd7177e4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ff0c1b0efdd99c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ff0c1b0efdd99c4.verified.txt index f6024abce93..042eecd5d08 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ff0c1b0efdd99c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_0ff0c1b0efdd99c4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1006547a16547362.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1006547a16547362.verified.txt index b5a3e4b66e6..d47a1e94331 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1006547a16547362.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1006547a16547362.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_114509b120306250.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_114509b120306250.verified.txt index b9fbadd89ba..72b17cd5582 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_114509b120306250.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_114509b120306250.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1180bcad08db0fb5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1180bcad08db0fb5.verified.txt index 65cdc130a4a..c5ece68732f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1180bcad08db0fb5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1180bcad08db0fb5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_11f9ea053b544aff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_11f9ea053b544aff.verified.txt index 903306eb3c0..fed27bd83dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_11f9ea053b544aff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_11f9ea053b544aff.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1237a03d2bec9c92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1237a03d2bec9c92.verified.txt index 71d4e035461..ddc9908c918 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1237a03d2bec9c92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1237a03d2bec9c92.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt index b129dc028cc..b7510c647d7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_123e571821f25081.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_128a02ef0549fe75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_128a02ef0549fe75.verified.txt index ab762af8ced..54fb5754f90 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_128a02ef0549fe75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_128a02ef0549fe75.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_12925dcaca6c433b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_12925dcaca6c433b.verified.txt index 5c7c11779c5..e5b3a16af21 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_12925dcaca6c433b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_12925dcaca6c433b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_12b2fc91218bf5c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_12b2fc91218bf5c4.verified.txt index 398243ed238..f8f1ab7ec40 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_12b2fc91218bf5c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_12b2fc91218bf5c4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_134f65bf8b5cb5dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_134f65bf8b5cb5dc.verified.txt index 9f2fee7c4d1..2ce9d986817 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_134f65bf8b5cb5dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_134f65bf8b5cb5dc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_13e9e266d2f6a5e9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_13e9e266d2f6a5e9.verified.txt index 9eaa4385fcb..1197ca949fa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_13e9e266d2f6a5e9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_13e9e266d2f6a5e9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_13f5f51e3c483872.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_13f5f51e3c483872.verified.txt index ac479a5a973..58ff71ad523 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_13f5f51e3c483872.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_13f5f51e3c483872.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_13fe4c05ea4ca97c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_13fe4c05ea4ca97c.verified.txt index e688012d386..285047b17e3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_13fe4c05ea4ca97c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_13fe4c05ea4ca97c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_14195d4389bdaec6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_14195d4389bdaec6.verified.txt index c4fbb3164c5..2f3b97b8812 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_14195d4389bdaec6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_14195d4389bdaec6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_14303f6b3e552f47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_14303f6b3e552f47.verified.txt index ec85b57be23..daaa5cc0653 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_14303f6b3e552f47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_14303f6b3e552f47.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_143071b0865c202b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_143071b0865c202b.verified.txt index 6d71cafb14c..b448ac76a68 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_143071b0865c202b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_143071b0865c202b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_145b8f8d82dca22a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_145b8f8d82dca22a.verified.txt index aabd7ab2cd8..5b14a4549df 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_145b8f8d82dca22a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_145b8f8d82dca22a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt index d5e629e15dd..e7174582e0d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_147b0e6c90d98234.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_148c44a1028b0928.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_148c44a1028b0928.verified.txt index b192951074c..8efa1dda255 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_148c44a1028b0928.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_148c44a1028b0928.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_14dc0f676341b93f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_14dc0f676341b93f.verified.txt index e74978be80f..de33484763a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_14dc0f676341b93f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_14dc0f676341b93f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_150e1a500f327d5c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_150e1a500f327d5c.verified.txt index c1f887710c7..0af6ca9ec1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_150e1a500f327d5c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_150e1a500f327d5c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt index 19503053eb7..e46b63d814c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15165ee14034943c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_153c9cc5b072b167.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_153c9cc5b072b167.verified.txt index b9909b69f9c..a689263dba1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_153c9cc5b072b167.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_153c9cc5b072b167.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt index d2a180c0223..6809dc3075e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15680a9d68dddabc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15a64028ce46ef19.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15a64028ce46ef19.verified.txt index 40fe272b768..85654b7a0c9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15a64028ce46ef19.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15a64028ce46ef19.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15ef77dd832e2466.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15ef77dd832e2466.verified.txt index 6baacc96a15..c6ac8bd7210 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15ef77dd832e2466.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_15ef77dd832e2466.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1632a22c6349ee7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1632a22c6349ee7c.verified.txt index 23d9c2899ab..a4f9c3b7a16 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1632a22c6349ee7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1632a22c6349ee7c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1645ee38b69740c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1645ee38b69740c7.verified.txt index 36cda28df5a..77ceb43c7d1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1645ee38b69740c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1645ee38b69740c7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_16db51bd1e2ec030.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_16db51bd1e2ec030.verified.txt index 376f787d8b4..200498fc945 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_16db51bd1e2ec030.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_16db51bd1e2ec030.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17045035b52a9e97.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17045035b52a9e97.verified.txt index 2b3d47d12b2..8c14cf1d379 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17045035b52a9e97.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17045035b52a9e97.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_171b2fff6e43628b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_171b2fff6e43628b.verified.txt index e86cbc08756..5cb74946a95 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_171b2fff6e43628b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_171b2fff6e43628b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1771f89988907e67.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1771f89988907e67.verified.txt index 79c765d7c2e..60c504ea48e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1771f89988907e67.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1771f89988907e67.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt index 370b13eec42..b5236a17954 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17828df9ca09212a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt index 2b31418c034..e5b9ca44a8a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17aecd2811eb19d4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17c4ed9b9d22b6a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17c4ed9b9d22b6a3.verified.txt index 24a03543b3f..91220106edf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17c4ed9b9d22b6a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17c4ed9b9d22b6a3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17f74a102a77e43e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17f74a102a77e43e.verified.txt index 2d7029fb542..eba86634053 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17f74a102a77e43e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_17f74a102a77e43e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_182258d3a7058d60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_182258d3a7058d60.verified.txt index 3d3d550c4d3..4bdf4140767 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_182258d3a7058d60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_182258d3a7058d60.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1844f4d95b814b66.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1844f4d95b814b66.verified.txt index ddbe18de60f..2460c363395 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1844f4d95b814b66.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1844f4d95b814b66.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt index ba294ad578c..d1d768a35c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_186d320a5776cafe.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_18db0facb56c1399.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_18db0facb56c1399.verified.txt index 4e644146206..b49d0bb0a1f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_18db0facb56c1399.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_18db0facb56c1399.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_18f2eca141bb267a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_18f2eca141bb267a.verified.txt index d7885ba7580..a6717e501a5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_18f2eca141bb267a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_18f2eca141bb267a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_18f873c652aac6b9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_18f873c652aac6b9.verified.txt index aed06d060cc..fb0eb9d6f6f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_18f873c652aac6b9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_18f873c652aac6b9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1900a16b8c80fb3c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1900a16b8c80fb3c.verified.txt index d099daaef04..e885bec46fe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1900a16b8c80fb3c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1900a16b8c80fb3c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_193c2e2ffa8f0890.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_193c2e2ffa8f0890.verified.txt index 42e343fa311..9c35fbe676e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_193c2e2ffa8f0890.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_193c2e2ffa8f0890.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_196fb57a9e519a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_196fb57a9e519a45.verified.txt index 953272acd83..5db617c9523 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_196fb57a9e519a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_196fb57a9e519a45.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19730e4040f30912.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19730e4040f30912.verified.txt index 614b7315817..6bd1eefcf6b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19730e4040f30912.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19730e4040f30912.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt index fe98301d562..545a8f557ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199dd5c833602d61.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199e53d80f5953ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199e53d80f5953ea.verified.txt index 7911905bac9..ddb49151a60 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199e53d80f5953ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_199e53d80f5953ea.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt index 5719088ba5a..d9f35d72396 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19a0fc5e1a1214ff.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19fc354a35ba2f31.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19fc354a35ba2f31.verified.txt index bcc996aa2d5..32b8e3e62a9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19fc354a35ba2f31.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_19fc354a35ba2f31.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a33fdad9019ef8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a33fdad9019ef8c.verified.txt index ca7f4d2fe44..bb851f70cf6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a33fdad9019ef8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a33fdad9019ef8c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a8a311eb41a5103.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a8a311eb41a5103.verified.txt index 3e43b35502d..927051c6ed5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a8a311eb41a5103.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a8a311eb41a5103.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt index 52c47e75bdb..0d4265e8000 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1a9aea462c583783.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b02354eb9e85de6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b02354eb9e85de6.verified.txt index a087c3aab49..28ed500ae38 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b02354eb9e85de6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b02354eb9e85de6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b53037f09c40944.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b53037f09c40944.verified.txt index 6185dcb8741..fc515744c42 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b53037f09c40944.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b53037f09c40944.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt index 895f69f1ab0..b505fc91d02 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b5ede882203b8bc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b81bad1e978483e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b81bad1e978483e.verified.txt index 77d1e2de3bc..567bd5a038b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b81bad1e978483e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1b81bad1e978483e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1beffee6bc74528f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1beffee6bc74528f.verified.txt index c753bb7c227..b2eec7fe508 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1beffee6bc74528f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1beffee6bc74528f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt index b10e0f7dd16..a2fd0603ab2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c177d6b1e0c8284.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt index 2876a5e4ceb..da8b45d4732 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c6dbc2accdc3f5d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c8865781948d226.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c8865781948d226.verified.txt index 4d609f1993b..a9f58d8978f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c8865781948d226.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1c8865781948d226.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ca9311064bc1f6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ca9311064bc1f6f.verified.txt index e8a93c7a723..e93b2fb7d5f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ca9311064bc1f6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ca9311064bc1f6f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt index 01c96708ee2..9368a2470ba 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1cbd715b0cfbd2da.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ce1eabdbaee8704.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ce1eabdbaee8704.verified.txt index e4ac6422916..d6bd788274c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ce1eabdbaee8704.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ce1eabdbaee8704.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt index 3cc39f23b23..99e53ad1e35 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d36007a9b4243f6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d5fac774b696c4a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d5fac774b696c4a.verified.txt index 77dad0d104c..2bab7a86775 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d5fac774b696c4a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1d5fac774b696c4a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1db349b21f4c3a16.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1db349b21f4c3a16.verified.txt index c3b8a3f924c..9ae330ee7d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1db349b21f4c3a16.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1db349b21f4c3a16.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ddd033b86aecbcf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ddd033b86aecbcf.verified.txt index 40418f4f1f3..762893f6d58 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ddd033b86aecbcf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ddd033b86aecbcf.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e0b1c90ff000478.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e0b1c90ff000478.verified.txt index eca9ec1f4e9..5ec00d2e0aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e0b1c90ff000478.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e0b1c90ff000478.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e459c5e4a6c783e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e459c5e4a6c783e.verified.txt index e78c0c1d134..c1bd6d6eeb7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e459c5e4a6c783e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e459c5e4a6c783e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e6e87b2bbce0cec.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e6e87b2bbce0cec.verified.txt index d55bf4d80e0..1abf6e529b4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e6e87b2bbce0cec.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e6e87b2bbce0cec.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt index 9d898f38d21..4441e152c2b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1e8225ee5daa3e10.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt index d7629149e09..2bbd42ad564 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1ea649ddc12d2ad0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1eb929855afe3275.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1eb929855afe3275.verified.txt index c0793916fec..326019e0886 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1eb929855afe3275.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1eb929855afe3275.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f1c799434426d5a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f1c799434426d5a.verified.txt index a125fcb4b7c..dc87ef1af47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f1c799434426d5a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f1c799434426d5a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt index eb0941a2914..7352a253337 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1f8a564b588cd2a3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt index 0b53050a6ea..41a9988efee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_1fee4120bb9d2612.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20039b8285b3422b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20039b8285b3422b.verified.txt index 5f74926465c..cff9ecb85a3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20039b8285b3422b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20039b8285b3422b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20275015aea2f4cf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20275015aea2f4cf.verified.txt index b6130d902c7..bec469bc8f2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20275015aea2f4cf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20275015aea2f4cf.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2047df92b15f26ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2047df92b15f26ac.verified.txt index 6c6190c04ac..6932ca5de96 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2047df92b15f26ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2047df92b15f26ac.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt index 3492f5c846b..d1dda50cf66 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2056840d5f5891ef.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt index bc556e57fe3..9f59083dbf3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_207ab1271e0cb6ff.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_208ce209b700183f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_208ce209b700183f.verified.txt index cfdfe5cd7f8..699c7fe3078 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_208ce209b700183f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_208ce209b700183f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt index 6b664aa7745..2d6b7f3b78a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20951901d0e8cf1f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20a2cae75d85684f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20a2cae75d85684f.verified.txt index 94800e1eba5..3eb6c6c7af5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20a2cae75d85684f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_20a2cae75d85684f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_213191bfdaf92b61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_213191bfdaf92b61.verified.txt index f3c9a5b5c16..7f82fa974a3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_213191bfdaf92b61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_213191bfdaf92b61.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_215fd6848e5070ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_215fd6848e5070ac.verified.txt index 3d2806d0773..86b738af963 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_215fd6848e5070ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_215fd6848e5070ac.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21942cf39e1218a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21942cf39e1218a1.verified.txt index 8b417cb0edf..921c00fa7a6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21942cf39e1218a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21942cf39e1218a1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21be4882bdc170f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21be4882bdc170f6.verified.txt index 05b60c60e31..ca459526629 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21be4882bdc170f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21be4882bdc170f6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21c26092f827f96f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21c26092f827f96f.verified.txt index 28b8a54f50f..ee02d4889e3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21c26092f827f96f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21c26092f827f96f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21d03f7364f0bc0c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21d03f7364f0bc0c.verified.txt index e7a966721a0..31a8b378379 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21d03f7364f0bc0c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21d03f7364f0bc0c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21d7861cdbb4fcc7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21d7861cdbb4fcc7.verified.txt index 0598b67692a..8ee4371b7d2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21d7861cdbb4fcc7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_21d7861cdbb4fcc7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_228316522d7b41b7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_228316522d7b41b7.verified.txt index 4d07983572c..c218e92efc4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_228316522d7b41b7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_228316522d7b41b7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt index 10a4f8bad49..a648b440c19 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22af69314c41f8ed.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22e8a7a673050219.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22e8a7a673050219.verified.txt index fa5c09e13c8..1ce1df83c3d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22e8a7a673050219.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22e8a7a673050219.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22f2fddf8bd7e38c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22f2fddf8bd7e38c.verified.txt index d0762f3ddab..76d06835860 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22f2fddf8bd7e38c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_22f2fddf8bd7e38c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_235169cd793f8073.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_235169cd793f8073.verified.txt index 6e1b75c2e19..e6271dfc69c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_235169cd793f8073.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_235169cd793f8073.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23992e2bea0c70dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23992e2bea0c70dc.verified.txt index 3fb5f8e56c2..5430e970d1d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23992e2bea0c70dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23992e2bea0c70dc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt index 9c6e88cf58c..ba0ac765222 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23a78fbb58104c8d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt index 5ec494fe0a8..bb0ad49df2f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23c7cba46cbcf30a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23f02e762c0600f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23f02e762c0600f3.verified.txt index cffc6a93ce6..4e3a6085ce9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23f02e762c0600f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_23f02e762c0600f3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt index c578a6ad88b..9a983ff010f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_244d9b94808741a9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_247a2c57ff814a0f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_247a2c57ff814a0f.verified.txt index b95c88c1a42..637867d68e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_247a2c57ff814a0f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_247a2c57ff814a0f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_24fabee9d1e663a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_24fabee9d1e663a9.verified.txt index 1aec14991ab..89a17398985 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_24fabee9d1e663a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_24fabee9d1e663a9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt index 6bafc7fc2c4..781cc65e336 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2529c0cafdc91179.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2564e7908ed9dd7b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2564e7908ed9dd7b.verified.txt index f99968cb369..2b91f07e627 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2564e7908ed9dd7b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2564e7908ed9dd7b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_259d6867a8ed6171.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_259d6867a8ed6171.verified.txt index 90669c2d74c..791667e4d44 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_259d6867a8ed6171.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_259d6867a8ed6171.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_25fb69ea149c90c9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_25fb69ea149c90c9.verified.txt index 5d13064c581..5daa1e88882 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_25fb69ea149c90c9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_25fb69ea149c90c9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_260922a3e0d8581d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_260922a3e0d8581d.verified.txt index 6e11d98eef2..b018c2634ca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_260922a3e0d8581d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_260922a3e0d8581d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt index d719c0e1eb0..6a6960a1c96 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_261c870f0d111ba4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2645194458be46c0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2645194458be46c0.verified.txt index 1101b6b84b4..d96df4e1f2b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2645194458be46c0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2645194458be46c0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_26611301a98bed1f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_26611301a98bed1f.verified.txt index 074006b5680..8bb85479f33 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_26611301a98bed1f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_26611301a98bed1f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_26b5d436d596c154.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_26b5d436d596c154.verified.txt index 1965dbf5569..9933282cd6d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_26b5d436d596c154.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_26b5d436d596c154.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_271e3f56b631901b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_271e3f56b631901b.verified.txt index 186c0e9d3ad..ab561fbbdbb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_271e3f56b631901b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_271e3f56b631901b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2744efb4c154b799.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2744efb4c154b799.verified.txt index 3e7d30deafd..208af6dd395 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2744efb4c154b799.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2744efb4c154b799.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_278fdfe4440baaca.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_278fdfe4440baaca.verified.txt index d73873539bd..543de0029ba 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_278fdfe4440baaca.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_278fdfe4440baaca.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_281014695868ced4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_281014695868ced4.verified.txt index 5e8ad24d8de..862ffb27097 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_281014695868ced4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_281014695868ced4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt index c3b2dc5a0ec..e3631894fff 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28304c74c8cfa75d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_284f81bdc8e2f848.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_284f81bdc8e2f848.verified.txt index 9ba52c1de81..783b494f15a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_284f81bdc8e2f848.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_284f81bdc8e2f848.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2852cf494b22cd28.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2852cf494b22cd28.verified.txt index 7b2cc8238ae..32bb94405e7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2852cf494b22cd28.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2852cf494b22cd28.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_286c122a8fea7156.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_286c122a8fea7156.verified.txt index 9274813a74d..4c1f16bfab6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_286c122a8fea7156.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_286c122a8fea7156.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2874b51ad7347d6b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2874b51ad7347d6b.verified.txt index 2d9e64808f2..ba41ff05e94 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2874b51ad7347d6b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2874b51ad7347d6b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28d3d747f0b9552e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28d3d747f0b9552e.verified.txt index 19344fc4e6a..04ebc80a7fe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28d3d747f0b9552e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28d3d747f0b9552e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt index e87299e55b2..d6b7c127fc3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_28e9037259018983.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_292eade54209a223.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_292eade54209a223.verified.txt index 97abcae1661..00d3bdfa96f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_292eade54209a223.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_292eade54209a223.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_29399418218bed92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_29399418218bed92.verified.txt index 65281f05bd5..5f57724506b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_29399418218bed92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_29399418218bed92.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_295269260cb69114.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_295269260cb69114.verified.txt index ab062096d7f..4551b6e3329 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_295269260cb69114.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_295269260cb69114.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_29ab68e235c1ec2f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_29ab68e235c1ec2f.verified.txt index 571ffefc071..24ffe35bdde 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_29ab68e235c1ec2f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_29ab68e235c1ec2f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a2224cec9866976.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a2224cec9866976.verified.txt index c0f35abf83f..83a8928028d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a2224cec9866976.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a2224cec9866976.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt index 780ea148b59..c2362d72b04 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a4b5767b0858093.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a7209565afdb641.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a7209565afdb641.verified.txt index c821fb2b7e2..c931aeb61b0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a7209565afdb641.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a7209565afdb641.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a8d5fcbf3859063.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a8d5fcbf3859063.verified.txt index c74538ebf41..798458b9d9d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a8d5fcbf3859063.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2a8d5fcbf3859063.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ac85c69761c30b5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ac85c69761c30b5.verified.txt index d2a7fda440b..35a5d0057a9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ac85c69761c30b5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ac85c69761c30b5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2accadc708086ab1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2accadc708086ab1.verified.txt index 1a4955c0e71..93879ee62f4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2accadc708086ab1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2accadc708086ab1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2aeb892fab480136.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2aeb892fab480136.verified.txt index 324d9416784..a14cb2d1f58 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2aeb892fab480136.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2aeb892fab480136.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt index 6a75a286a9e..6155e947579 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b0ebc47f3146272.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b2620d8e04c8893.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b2620d8e04c8893.verified.txt index c7303070473..fefe7e9a710 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b2620d8e04c8893.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2b2620d8e04c8893.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2bd32f7e28f0d6ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2bd32f7e28f0d6ad.verified.txt index ee4100b8c2f..2aabdd5c2da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2bd32f7e28f0d6ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2bd32f7e28f0d6ad.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2c05548eaede0540.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2c05548eaede0540.verified.txt index dc9d57ea8f2..539f3a99244 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2c05548eaede0540.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2c05548eaede0540.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2c22e1f4c757d589.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2c22e1f4c757d589.verified.txt index 01068a683c6..8ba08ba3f34 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2c22e1f4c757d589.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2c22e1f4c757d589.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ca058e130cdb067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ca058e130cdb067.verified.txt index db54d34a795..86ebc9a373f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ca058e130cdb067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ca058e130cdb067.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt index c88aa7691ca..192d1e03c83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cc409245afcb3a2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ce12968fe1903f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ce12968fe1903f1.verified.txt index 2dff17a642e..6c5e6118295 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ce12968fe1903f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ce12968fe1903f1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt index 9a80c59f6a3..95883adad00 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2cfecad6e3207109.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt index 1c3138b4685..b2f4f870dc4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d1cf699f9cdaa1e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt index 25d3152c17a..6c04a7dd641 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3428daff799fd5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt index 0d967e7491d..b2ae2e2f753 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d3c73cfbc650a61.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d5d89d8dbd8071e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d5d89d8dbd8071e.verified.txt index ff319944670..03dd25c7931 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d5d89d8dbd8071e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2d5d89d8dbd8071e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ddda2c35419e09a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ddda2c35419e09a.verified.txt index 082afd1d1f4..a622e8cdbd6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ddda2c35419e09a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ddda2c35419e09a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2e0216cc5e9a7b13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2e0216cc5e9a7b13.verified.txt index bb55b128095..0dc83d9c6a3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2e0216cc5e9a7b13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2e0216cc5e9a7b13.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2e1c6b84847c5442.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2e1c6b84847c5442.verified.txt index 1f35c100c26..c8a7c8fc91e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2e1c6b84847c5442.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2e1c6b84847c5442.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ea0d2ca06caabb0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ea0d2ca06caabb0.verified.txt index 08b6c4116c9..8670037281c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ea0d2ca06caabb0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2ea0d2ca06caabb0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2eafc7a425dab3e1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2eafc7a425dab3e1.verified.txt index c24b7d60315..8f8e9f0262e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2eafc7a425dab3e1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2eafc7a425dab3e1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2eb835125bf877b9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2eb835125bf877b9.verified.txt index 22b95594369..f70ddf4e46e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2eb835125bf877b9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2eb835125bf877b9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2f4272b58de0beda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2f4272b58de0beda.verified.txt index 567b5ebd9f6..569798ccbce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2f4272b58de0beda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2f4272b58de0beda.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2f531460d2852c3a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2f531460d2852c3a.verified.txt index 1e202f026eb..1256ba19160 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2f531460d2852c3a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2f531460d2852c3a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt index 346e9bb0eef..e466ba825e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdb9130e92712bd.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdd03196b208cd1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdd03196b208cd1.verified.txt index 55634487921..aac9b4c5218 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdd03196b208cd1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fdd03196b208cd1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fe241a334b98d7d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fe241a334b98d7d.verified.txt index cacc4aa386c..6cdfb1d2ffe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fe241a334b98d7d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_2fe241a334b98d7d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_300eff856597e449.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_300eff856597e449.verified.txt index 97993856cd1..0b962e41c35 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_300eff856597e449.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_300eff856597e449.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30568166dfeb54f2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30568166dfeb54f2.verified.txt index c6ad5ccde97..428c7e9e527 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30568166dfeb54f2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30568166dfeb54f2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30cd2caccbd734ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30cd2caccbd734ce.verified.txt index 5260a22ff70..505ae5bfac4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30cd2caccbd734ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30cd2caccbd734ce.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30eff587f009df95.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30eff587f009df95.verified.txt index 8c7df71ee79..df5ea0b5056 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30eff587f009df95.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30eff587f009df95.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30fee62819f6b388.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30fee62819f6b388.verified.txt index 621d1c42602..ae44b0f3934 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30fee62819f6b388.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_30fee62819f6b388.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3116e1b838e6677e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3116e1b838e6677e.verified.txt index 730e6d9d70a..678bb6947d2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3116e1b838e6677e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3116e1b838e6677e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt index 8eaa5ac471c..eb061ba1502 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_311a029aada816fa.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31465aa51653700d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31465aa51653700d.verified.txt index 9642963de5f..096e2da2970 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31465aa51653700d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31465aa51653700d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_314676f0c3c7e023.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_314676f0c3c7e023.verified.txt index 38980e5f91d..b15f48f8394 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_314676f0c3c7e023.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_314676f0c3c7e023.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3179535455019f31.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3179535455019f31.verified.txt index 4fb75428501..f6db024e0ca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3179535455019f31.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3179535455019f31.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt index 37bc9a7fda6..07fae02103e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31929d2b3533247c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3194a3a5a51ca764.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3194a3a5a51ca764.verified.txt index 1b4ee3fc546..929cfa4cb01 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3194a3a5a51ca764.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3194a3a5a51ca764.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt index bc70eaddab1..d38fdc1015e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31aa86e44a30cf0d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31bc366c8ea5cc25.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31bc366c8ea5cc25.verified.txt index 6f83e7cff3d..e03a8f5cea7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31bc366c8ea5cc25.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_31bc366c8ea5cc25.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt index 5f588fa464b..97e5c420af2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cac00b30f4b51b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cc034e719dc886.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cc034e719dc886.verified.txt index 60459121438..85fc152f88e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cc034e719dc886.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32cc034e719dc886.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32da88f0637a55d0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32da88f0637a55d0.verified.txt index fff1c1496c2..15d1e6efe5a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32da88f0637a55d0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_32da88f0637a55d0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt index c42cc2b8f06..6686e531e9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_332a163a340f14ce.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_335a009f15c732a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_335a009f15c732a9.verified.txt index cd2fa26ec20..ce929ba5f4c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_335a009f15c732a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_335a009f15c732a9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_33768261d4243105.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_33768261d4243105.verified.txt index 099f40a3c68..393ae091129 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_33768261d4243105.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_33768261d4243105.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_338e0a38bebabce5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_338e0a38bebabce5.verified.txt index 063cdc5f67b..64b00f6b97c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_338e0a38bebabce5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_338e0a38bebabce5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34243c5faac034b4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34243c5faac034b4.verified.txt index fb8688ece1a..a7c497844c7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34243c5faac034b4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34243c5faac034b4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_342733679bf5f94d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_342733679bf5f94d.verified.txt index 1e8d6a86fc6..11c6b486a4c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_342733679bf5f94d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_342733679bf5f94d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_345244909532cd85.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_345244909532cd85.verified.txt index 87c1384c228..67c16f19b0f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_345244909532cd85.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_345244909532cd85.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3468176ed8be7a69.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3468176ed8be7a69.verified.txt index b0afa7b0fda..ef60f941d9b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3468176ed8be7a69.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3468176ed8be7a69.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34683f2d9d4efabb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34683f2d9d4efabb.verified.txt index 6d0b5c2f319..5d73dc6fc7f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34683f2d9d4efabb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34683f2d9d4efabb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34a286383772d11a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34a286383772d11a.verified.txt index 722ae1e8354..efffe69a5a0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34a286383772d11a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34a286383772d11a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34b789fb3755a83e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34b789fb3755a83e.verified.txt index e1070d1e9d6..287725f4375 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34b789fb3755a83e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34b789fb3755a83e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34b92ea726adb335.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34b92ea726adb335.verified.txt index f2588b3c067..061ca02ad9e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34b92ea726adb335.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34b92ea726adb335.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34c2683459b46d85.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34c2683459b46d85.verified.txt index 59132c712dc..9cbc1d88847 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34c2683459b46d85.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34c2683459b46d85.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34ecbac7acc7aa4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34ecbac7acc7aa4c.verified.txt index 248e951df4e..b00da17856d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34ecbac7acc7aa4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_34ecbac7acc7aa4c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_35898957647d84e2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_35898957647d84e2.verified.txt index 827628a5bde..9caf7c3abc3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_35898957647d84e2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_35898957647d84e2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_35d30223d64defae.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_35d30223d64defae.verified.txt index 6e930ba574a..d73a5dc8207 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_35d30223d64defae.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_35d30223d64defae.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3694dc209915e706.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3694dc209915e706.verified.txt index c93f8848a8a..1133e6c57cf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3694dc209915e706.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3694dc209915e706.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_36cb928d06f0829b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_36cb928d06f0829b.verified.txt index 3a50fc010e0..617de899191 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_36cb928d06f0829b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_36cb928d06f0829b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_37014a9b6768c5fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_37014a9b6768c5fc.verified.txt index 59ecf66b18a..690d3196051 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_37014a9b6768c5fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_37014a9b6768c5fc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3703343d8fc609f0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3703343d8fc609f0.verified.txt index d6b1f6ae290..18bfa0c1bcc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3703343d8fc609f0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3703343d8fc609f0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt index 6d699bf637f..d58fb6ceefa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3772ded7258060a4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_37ad59bf5cfb8004.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_37ad59bf5cfb8004.verified.txt index d7b52a75f9e..410e48f1b7e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_37ad59bf5cfb8004.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_37ad59bf5cfb8004.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_37c42986bdb2b73d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_37c42986bdb2b73d.verified.txt index 660415f7793..7c78349de10 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_37c42986bdb2b73d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_37c42986bdb2b73d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_382b8f6d82aba32e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_382b8f6d82aba32e.verified.txt index 240ce470000..c762c7d71cf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_382b8f6d82aba32e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_382b8f6d82aba32e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt index c546103e5e5..14dd51d251e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_383d41e8bc56c056.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt index e3ad655f2f1..d67650c6cb3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38943aa04993744f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38e1a10efbc8293a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38e1a10efbc8293a.verified.txt index c45ab2ad6e3..0fd88508320 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38e1a10efbc8293a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_38e1a10efbc8293a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_39840509b03906a7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_39840509b03906a7.verified.txt index 34cbc56719c..106c32ad0a1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_39840509b03906a7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_39840509b03906a7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_39ae64a9458e6d8b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_39ae64a9458e6d8b.verified.txt index d6212276080..61e33bcd08e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_39ae64a9458e6d8b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_39ae64a9458e6d8b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a0221055e119438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a0221055e119438.verified.txt index 1d9f8c3cddf..dde668d7a36 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a0221055e119438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a0221055e119438.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a2bc0945f39f4d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a2bc0945f39f4d7.verified.txt index db2a843ed5d..550277ad34c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a2bc0945f39f4d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a2bc0945f39f4d7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a32cd06109e810c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a32cd06109e810c.verified.txt index 736efc6544d..6ff6ab267f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a32cd06109e810c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a32cd06109e810c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a5047a6c04f96d8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a5047a6c04f96d8.verified.txt index edd72af985d..eeb704fb37c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a5047a6c04f96d8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a5047a6c04f96d8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a93cc37b32e94b3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a93cc37b32e94b3.verified.txt index 6a445296446..3e186bdd34c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a93cc37b32e94b3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3a93cc37b32e94b3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ad92db3c912ca17.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ad92db3c912ca17.verified.txt index 622ad358b77..c4cf4ce3e63 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ad92db3c912ca17.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ad92db3c912ca17.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b1a4290846be8e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b1a4290846be8e0.verified.txt index 958fc5c5292..6e066ae7a73 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b1a4290846be8e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b1a4290846be8e0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt index 2e9d954fa03..3303505b6a9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b3f53dd77a4cc44.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b78a29543ede443.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b78a29543ede443.verified.txt index 622eefa7c5f..156e83588c0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b78a29543ede443.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3b78a29543ede443.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt index 72a3655d764..6c2e98e4406 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c33a88de7a6bf6c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c8ed8eae8c3a191.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c8ed8eae8c3a191.verified.txt index eadaab43a27..b17af5c611a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c8ed8eae8c3a191.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3c8ed8eae8c3a191.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ca4ec974a98ce93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ca4ec974a98ce93.verified.txt index a27583897b6..5036fbae050 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ca4ec974a98ce93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ca4ec974a98ce93.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt index cb832d1e9e7..c5a130dc053 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ccb897cd1349293.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt index b6053ea78b6..6cf09b54cb3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d063870d0c74f42.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d2485664cc236fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d2485664cc236fe.verified.txt index 2aeaff004ab..2dc1cd51306 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d2485664cc236fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d2485664cc236fe.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d710288a019f048.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d710288a019f048.verified.txt index 85b24e9442b..a5967009d9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d710288a019f048.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3d710288a019f048.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3daf5034a6acd276.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3daf5034a6acd276.verified.txt index 5080168c0d2..6ecc6116ab9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3daf5034a6acd276.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3daf5034a6acd276.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3db061fac1d4fedb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3db061fac1d4fedb.verified.txt index de131727e93..8a163e26742 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3db061fac1d4fedb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3db061fac1d4fedb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfbe12868b7248b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfbe12868b7248b.verified.txt index 2e6a7e938c3..3b1fcdb0010 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfbe12868b7248b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfbe12868b7248b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt index 0c69994ede6..a3040d313fd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3dfe67a2b6248c98.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e08d8dd3ecd70a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e08d8dd3ecd70a2.verified.txt index 2bd27d953e1..4b1c23b8818 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e08d8dd3ecd70a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e08d8dd3ecd70a2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e4fd364ed826b09.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e4fd364ed826b09.verified.txt index 1c488ef71f5..c39359ae78f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e4fd364ed826b09.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e4fd364ed826b09.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e95872e492c937e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e95872e492c937e.verified.txt index 9f30a25e4b7..89a586a57b2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e95872e492c937e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e95872e492c937e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e9de609a2aae942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e9de609a2aae942.verified.txt index 90870da0226..d006d14d2b4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e9de609a2aae942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3e9de609a2aae942.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ef0ed5758e46741.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ef0ed5758e46741.verified.txt index 549ee046e62..4362f4953ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ef0ed5758e46741.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3ef0ed5758e46741.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3eff94995e47ee58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3eff94995e47ee58.verified.txt index 5910ff076f6..bf2458f4d54 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3eff94995e47ee58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3eff94995e47ee58.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f168af0a695e292.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f168af0a695e292.verified.txt index 6949a250d25..d5cf7fe7cea 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f168af0a695e292.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f168af0a695e292.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f168e81cf8ade65.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f168e81cf8ade65.verified.txt index 16e364f21c5..7f95edf2679 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f168e81cf8ade65.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f168e81cf8ade65.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f6779ef312bf114.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f6779ef312bf114.verified.txt index 3abe30ce202..bc6adb6d440 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f6779ef312bf114.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f6779ef312bf114.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt index ecf310b6abe..a2e818e4071 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3f8bf9e57603dc9d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3faf072af12bd3d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3faf072af12bd3d4.verified.txt index 88cc20c8406..640699d41d0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3faf072af12bd3d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_3faf072af12bd3d4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4014359b7c8cc4db.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4014359b7c8cc4db.verified.txt index 4ef1012fd58..e4c341d50dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4014359b7c8cc4db.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4014359b7c8cc4db.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_408038874b3b2535.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_408038874b3b2535.verified.txt index 4fde4e432ad..25991e9bd58 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_408038874b3b2535.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_408038874b3b2535.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40914917a856ae3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40914917a856ae3f.verified.txt index 3b3e4e517e8..2b2ec7340d2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40914917a856ae3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40914917a856ae3f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt index 962b4d07635..0c035ef3bf2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_40fdd634fdadf6ea.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt index 134fa4cc4f7..515296c6bdf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_414609e48fe26657.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_417fbece372c9259.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_417fbece372c9259.verified.txt index b10f18a1aef..ee2064151a5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_417fbece372c9259.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_417fbece372c9259.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_41a73b9b171b6060.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_41a73b9b171b6060.verified.txt index 6237b3d5edd..d3a41930509 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_41a73b9b171b6060.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_41a73b9b171b6060.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_41bb0e875b4e171c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_41bb0e875b4e171c.verified.txt index 50beca6b27c..f4b12e121ba 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_41bb0e875b4e171c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_41bb0e875b4e171c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_41cfe7f9e2421d4a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_41cfe7f9e2421d4a.verified.txt index e60a1d67f5a..ed0f4e714dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_41cfe7f9e2421d4a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_41cfe7f9e2421d4a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_421e7d510b5c4a54.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_421e7d510b5c4a54.verified.txt index 9dfa9831b62..b42e102da8a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_421e7d510b5c4a54.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_421e7d510b5c4a54.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4279d01d7c579114.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4279d01d7c579114.verified.txt index e9e109c426b..2c2a5102fff 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4279d01d7c579114.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4279d01d7c579114.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4302d85c82e3957f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4302d85c82e3957f.verified.txt index 7f1afc7f6bb..3bbd0899e2b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4302d85c82e3957f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4302d85c82e3957f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt index b52bc86603f..54af8d97af0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4308a457a615694b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_434222db24264efc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_434222db24264efc.verified.txt index 10cd50e861d..569e527f0d7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_434222db24264efc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_434222db24264efc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_434c35b947addd50.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_434c35b947addd50.verified.txt index 2b803186010..e721c5f18ba 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_434c35b947addd50.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_434c35b947addd50.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_434cdf80ad36f5e1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_434cdf80ad36f5e1.verified.txt index cba9e51f8b2..853da2f6a0f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_434cdf80ad36f5e1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_434cdf80ad36f5e1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt index 821588935f9..82f4f4dfba4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_438ceff8f25d734d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43c805d53a630e4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43c805d53a630e4c.verified.txt index 3bf8e15ba68..0dd42069557 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43c805d53a630e4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43c805d53a630e4c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43ca86b4c90eb9a5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43ca86b4c90eb9a5.verified.txt index dc24f8dfe62..ae7ed936b9e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43ca86b4c90eb9a5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43ca86b4c90eb9a5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43ccda93fb34f87a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43ccda93fb34f87a.verified.txt index a891a33d067..3d4cce631fa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43ccda93fb34f87a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43ccda93fb34f87a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43e828da7c85bf6e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43e828da7c85bf6e.verified.txt index 837454e918b..0edb072d265 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43e828da7c85bf6e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43e828da7c85bf6e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43e84152c5f403b7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43e84152c5f403b7.verified.txt index 7798847092c..5955e41ef1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43e84152c5f403b7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43e84152c5f403b7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43eda71639fbdeb5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43eda71639fbdeb5.verified.txt index 3c83c0d432c..03d1342ffa5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43eda71639fbdeb5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_43eda71639fbdeb5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_444df4a9adc68401.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_444df4a9adc68401.verified.txt index 146caa36c7e..109d5bb4bc6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_444df4a9adc68401.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_444df4a9adc68401.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_446975e6870743bf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_446975e6870743bf.verified.txt index 6d0ecdb75c6..97af041fafb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_446975e6870743bf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_446975e6870743bf.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_449f2764e6b9fb50.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_449f2764e6b9fb50.verified.txt index 82b58321d01..84a200ff37d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_449f2764e6b9fb50.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_449f2764e6b9fb50.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44b1b8e5ec45f12a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44b1b8e5ec45f12a.verified.txt index a7c15f3385c..4615986c5ac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44b1b8e5ec45f12a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44b1b8e5ec45f12a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt index bdbc2c9fb94..ff7958dab3d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_44f041bae9639b52.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_45a10c139a0e8465.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_45a10c139a0e8465.verified.txt index d539875ab4b..24753f5b4ed 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_45a10c139a0e8465.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_45a10c139a0e8465.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_45b283e822620442.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_45b283e822620442.verified.txt index 4f65697f987..b95df7b8aa1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_45b283e822620442.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_45b283e822620442.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4668268cd71e8431.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4668268cd71e8431.verified.txt index 93c39c10500..6fda9a31d87 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4668268cd71e8431.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4668268cd71e8431.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_46e0f2bda685ee7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_46e0f2bda685ee7c.verified.txt index 0333450ffc0..92684640da6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_46e0f2bda685ee7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_46e0f2bda685ee7c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47b9d9a6ce8afa2a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47b9d9a6ce8afa2a.verified.txt index 7ee10e5590a..0e8ee75f817 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47b9d9a6ce8afa2a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47b9d9a6ce8afa2a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt index 043eaef0fb7..2dc2c99ded0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c20f17eab9b960.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt index be21d6c5a5c..6118db72735 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_47c284de9a4136a4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4841829b0f158dd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4841829b0f158dd8.verified.txt index 547bac45e50..90d79da1abb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4841829b0f158dd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4841829b0f158dd8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4889a308b95fa589.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4889a308b95fa589.verified.txt index 112ea2cb98e..6697fa29b42 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4889a308b95fa589.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4889a308b95fa589.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_48cda1840f5b240a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_48cda1840f5b240a.verified.txt index 84a0100a56e..242e5113a97 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_48cda1840f5b240a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_48cda1840f5b240a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_48dcd0931f84d443.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_48dcd0931f84d443.verified.txt index 4509d2db9e1..99815ab53d0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_48dcd0931f84d443.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_48dcd0931f84d443.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4909d71a3ec49747.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4909d71a3ec49747.verified.txt index 6b277c4b2fa..2b474fa9cd9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4909d71a3ec49747.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4909d71a3ec49747.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt index d656e89b785..8b1e086201f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_490b3fc53b31fad0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4923c9771089082d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4923c9771089082d.verified.txt index cf34845786e..eef1d6b3371 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4923c9771089082d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4923c9771089082d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4970b602c9ab0e26.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4970b602c9ab0e26.verified.txt index d9626e67c28..bd51b71a1b1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4970b602c9ab0e26.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4970b602c9ab0e26.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt index f0395bb1b4c..5e148d6a288 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49a7d1f928703af8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ad833549b12c26.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ad833549b12c26.verified.txt index cb83e233ecf..d2cccfe0c3a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ad833549b12c26.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ad833549b12c26.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49d7e9ff103bbc51.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49d7e9ff103bbc51.verified.txt index e5a3c098b68..6d6e4c3dbbc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49d7e9ff103bbc51.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49d7e9ff103bbc51.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt index 266d8a2b19e..2a00d4eede9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49e8f01ea7a363ad.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt index 3f5b2403ce9..4d150016359 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_49ed4aa2c7b73924.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a080a9a61adb5f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a080a9a61adb5f4.verified.txt index 18ec16a8e36..23c473ffce9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a080a9a61adb5f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a080a9a61adb5f4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a391d871795c2ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a391d871795c2ed.verified.txt index 3ad3b755fad..c2a6cafb596 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a391d871795c2ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a391d871795c2ed.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt index 7d263ca634b..fd6d3bfcb70 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a78fe4993b48bd8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a7ecf688571652d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a7ecf688571652d.verified.txt index 3accaa8d2b9..713bf45f316 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a7ecf688571652d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a7ecf688571652d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a8dfe9c08616a30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a8dfe9c08616a30.verified.txt index cb2c1a4624b..4fa074d74a3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a8dfe9c08616a30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a8dfe9c08616a30.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a920f8e6b647efc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a920f8e6b647efc.verified.txt index 40a9cfdf9e1..4d9b4384000 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a920f8e6b647efc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4a920f8e6b647efc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ae14db179ce6442.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ae14db179ce6442.verified.txt index 944cc900ac4..d903e3ccdd9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ae14db179ce6442.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ae14db179ce6442.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4b03b3e761c13f7d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4b03b3e761c13f7d.verified.txt index d5cf75f17b6..d99ce877e71 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4b03b3e761c13f7d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4b03b3e761c13f7d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4b18a884a32a5c56.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4b18a884a32a5c56.verified.txt index 793e0bac4e9..c6853bf8ade 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4b18a884a32a5c56.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4b18a884a32a5c56.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4b86cb021d6172b2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4b86cb021d6172b2.verified.txt index 6ed2c10907f..3df433bcc1f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4b86cb021d6172b2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4b86cb021d6172b2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4c579309348b97c8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4c579309348b97c8.verified.txt index 7b14bb84e58..7c6e9c7bf2a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4c579309348b97c8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4c579309348b97c8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt index b4da2412cf4..e9c389b2dee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4cc36a7fc18ff98c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt index ba676d2a707..06d48a5ccd4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d2ce9e4e21faede.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d32b00259887c95.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d32b00259887c95.verified.txt index a7634b9e90f..6c9b9d343d8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d32b00259887c95.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d32b00259887c95.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d49d108804134ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d49d108804134ef.verified.txt index f4fe4c17ef0..128d0a1a8d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d49d108804134ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d49d108804134ef.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d8d834b2173d42b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d8d834b2173d42b.verified.txt index 5a9b35e9b25..f2491e944bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d8d834b2173d42b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4d8d834b2173d42b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt index 7707ecfdd1c..6258b8ae9c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dc5859b3fd630f1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dd0abdef35f8678.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dd0abdef35f8678.verified.txt index b516c417f15..72347cc5a6a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dd0abdef35f8678.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4dd0abdef35f8678.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e13642bf696b28d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e13642bf696b28d.verified.txt index 5e3864acfb8..acf011212bf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e13642bf696b28d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e13642bf696b28d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2a1c7b7dd3f886.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2a1c7b7dd3f886.verified.txt index 3c793c768b3..7536f0f2963 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2a1c7b7dd3f886.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2a1c7b7dd3f886.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt index 628fc89efb2..9bb5b7b4668 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e2f22127fbabc9e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e90cbad4e254d8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e90cbad4e254d8a.verified.txt index 82296ca6b21..06a9f170431 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e90cbad4e254d8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4e90cbad4e254d8a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ebfa07df0ae8247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ebfa07df0ae8247.verified.txt index da073b4e5f6..e04188f19ea 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ebfa07df0ae8247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ebfa07df0ae8247.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ede022de5059921.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ede022de5059921.verified.txt index 95f70301077..3c22ce19552 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ede022de5059921.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ede022de5059921.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt index 1864698be04..7f0456bacd6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f32ea6a14dd642d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f430bf2c3abe6ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f430bf2c3abe6ed.verified.txt index 0830ec812d5..ce7c382d752 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f430bf2c3abe6ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f430bf2c3abe6ed.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f6368a329777588.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f6368a329777588.verified.txt index 47ffdf8e845..efc4f0615ef 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f6368a329777588.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f6368a329777588.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f6f88ecc62c2d18.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f6f88ecc62c2d18.verified.txt index ad7a12eaa0a..a51aa0a55bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f6f88ecc62c2d18.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f6f88ecc62c2d18.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f757e3dc345a6d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f757e3dc345a6d6.verified.txt index ea40bd36043..ab3bc195db1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f757e3dc345a6d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4f757e3dc345a6d6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4fad923958715aea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4fad923958715aea.verified.txt index 32c9f005188..7b3d96ee3d0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4fad923958715aea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4fad923958715aea.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ffc820bd9f027ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ffc820bd9f027ac.verified.txt index 613b144eb4d..e0588987447 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ffc820bd9f027ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_4ffc820bd9f027ac.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt index 58adaee91b9..4140ed74217 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50a6af1e11b0318a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt index eda953c3ccb..93c38f9c745 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50b916edf97941f5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50e2fb5a4e6dbd16.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50e2fb5a4e6dbd16.verified.txt index 96ca9af4a3b..88c14cc612d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50e2fb5a4e6dbd16.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_50e2fb5a4e6dbd16.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5107e9033bbf1cba.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5107e9033bbf1cba.verified.txt index 69b31ff4812..50ff15c5740 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5107e9033bbf1cba.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5107e9033bbf1cba.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt index 30debcc99fe..e7191878cd3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5189be4c6f7fc47d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_518ab90b1e1c7b8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_518ab90b1e1c7b8e.verified.txt index bb700381b81..376666ce3b2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_518ab90b1e1c7b8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_518ab90b1e1c7b8e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt index eb07bcf4041..23e2a18e06a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51b126a6fe0ebe6c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51c65fe456368f81.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51c65fe456368f81.verified.txt index 2bebfaf9aa7..9933073b2fb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51c65fe456368f81.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51c65fe456368f81.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51f597b7d6d4b2a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51f597b7d6d4b2a0.verified.txt index 70575990b67..acd891bf492 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51f597b7d6d4b2a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_51f597b7d6d4b2a0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5201e622f66c84b8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5201e622f66c84b8.verified.txt index 8b18f7adaab..9ade4c33595 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5201e622f66c84b8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5201e622f66c84b8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_520b95940ae6fb71.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_520b95940ae6fb71.verified.txt index a423fd01e2a..d8471f70d98 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_520b95940ae6fb71.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_520b95940ae6fb71.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_520d15b251663de6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_520d15b251663de6.verified.txt index 1f63f6840d5..6208b1051e0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_520d15b251663de6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_520d15b251663de6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5213a5db03dbeef5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5213a5db03dbeef5.verified.txt index 4051dac1845..0ee236942b6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5213a5db03dbeef5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5213a5db03dbeef5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_525460eac3675c58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_525460eac3675c58.verified.txt index 371f3546b69..1429e0438c1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_525460eac3675c58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_525460eac3675c58.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_52644926cabe1f9a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_52644926cabe1f9a.verified.txt index 9fa09f9a65c..06d2eb2942c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_52644926cabe1f9a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_52644926cabe1f9a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_526560811eb11382.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_526560811eb11382.verified.txt index d6f070bb312..77aa05c56c0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_526560811eb11382.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_526560811eb11382.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5276cbe9ed44174c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5276cbe9ed44174c.verified.txt index b19da82a1f8..e7618055880 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5276cbe9ed44174c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5276cbe9ed44174c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_533dceb6fb18b6de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_533dceb6fb18b6de.verified.txt index 9d67c9f7b46..54df99d6292 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_533dceb6fb18b6de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_533dceb6fb18b6de.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_53403bfaff522f1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_53403bfaff522f1b.verified.txt index 5057b40d8bb..34cf86cb9b8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_53403bfaff522f1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_53403bfaff522f1b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_53f8b5b771e17501.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_53f8b5b771e17501.verified.txt index bc996ae8163..14397b432a2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_53f8b5b771e17501.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_53f8b5b771e17501.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_53fed3db3b4c1704.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_53fed3db3b4c1704.verified.txt index c6e4679b6a3..1154f429593 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_53fed3db3b4c1704.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_53fed3db3b4c1704.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt index 246e03499b9..ae2cab22e6d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54382f89b64a6cd5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54570a6446a67625.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54570a6446a67625.verified.txt index 9110b9faa74..ad7e028be9a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54570a6446a67625.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_54570a6446a67625.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt index c80d31dbd4b..655cd6ecd30 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_556ddbf73d404cd7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_558da4bf742bdd0c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_558da4bf742bdd0c.verified.txt index 76b9baea508..c4b573d1620 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_558da4bf742bdd0c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_558da4bf742bdd0c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_564ff9ff3afdf0db.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_564ff9ff3afdf0db.verified.txt index 0eb030a23ae..80e2dd54b09 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_564ff9ff3afdf0db.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_564ff9ff3afdf0db.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56ad76baafec1037.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56ad76baafec1037.verified.txt index 3739e567463..ca960ae3afb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56ad76baafec1037.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56ad76baafec1037.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt index 6980cedd1d3..a203d8cb377 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56c55021b359540e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56e3640fec47c739.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56e3640fec47c739.verified.txt index e2178d32144..bbd11c75605 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56e3640fec47c739.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_56e3640fec47c739.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_578270707a743649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_578270707a743649.verified.txt index 93e7f6ad9dd..65a23a264ad 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_578270707a743649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_578270707a743649.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5788cead851636a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5788cead851636a3.verified.txt index fee4ae19f16..879d3e3512f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5788cead851636a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5788cead851636a3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_57be41d86bcdf3b6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_57be41d86bcdf3b6.verified.txt index b611927679e..663eee8fee4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_57be41d86bcdf3b6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_57be41d86bcdf3b6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_57f25b9da9f5acc4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_57f25b9da9f5acc4.verified.txt index 7d1583e377a..e543c9eb3f2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_57f25b9da9f5acc4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_57f25b9da9f5acc4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_57fcd364458c5825.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_57fcd364458c5825.verified.txt index f9948605f02..66789d6c205 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_57fcd364458c5825.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_57fcd364458c5825.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt index 758d855cd71..629df97d9f4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58551337a41f932d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt index d0be6d5207a..c2260e5ef2c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5871f8fae30f854b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58a72b30a198218c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58a72b30a198218c.verified.txt index f752db1d942..65003815be9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58a72b30a198218c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58a72b30a198218c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58be7dd3babe5e29.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58be7dd3babe5e29.verified.txt index 33bba083d38..8ed756e3972 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58be7dd3babe5e29.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58be7dd3babe5e29.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58c3c540cbbc6059.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58c3c540cbbc6059.verified.txt index 061a9dd5b4e..8cacd0bf565 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58c3c540cbbc6059.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58c3c540cbbc6059.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58f311890e243a66.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58f311890e243a66.verified.txt index d4f9c68b932..f12340ddb28 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58f311890e243a66.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_58f311890e243a66.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5901fa774c05386e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5901fa774c05386e.verified.txt index c2098483804..3339c9f3466 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5901fa774c05386e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5901fa774c05386e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5961d85ec5e2833b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5961d85ec5e2833b.verified.txt index 6b5748c17c8..42ed436f8e3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5961d85ec5e2833b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5961d85ec5e2833b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt index e019f58544d..bd9ef3ff472 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5994179fde12124b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_599c7b0b1f19ff20.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_599c7b0b1f19ff20.verified.txt index 2339ce248c0..3e03e6bd76e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_599c7b0b1f19ff20.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_599c7b0b1f19ff20.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5a4e79b41953b158.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5a4e79b41953b158.verified.txt index 892e8023542..1179695ea43 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5a4e79b41953b158.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5a4e79b41953b158.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5a774fede1a8b693.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5a774fede1a8b693.verified.txt index d4b90fdce99..fd90b4cd89a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5a774fede1a8b693.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5a774fede1a8b693.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5aa38c97ad625201.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5aa38c97ad625201.verified.txt index 4819ab2684f..3541835daca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5aa38c97ad625201.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5aa38c97ad625201.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5aa6095294b4e315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5aa6095294b4e315.verified.txt index a4ac6328ac1..449981d9b68 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5aa6095294b4e315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5aa6095294b4e315.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5aca2636f36d5a85.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5aca2636f36d5a85.verified.txt index d8a97c64699..e8b6dd5f7cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5aca2636f36d5a85.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5aca2636f36d5a85.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt index b31bfd224c3..2f957e52265 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5af19078558bef22.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b229a7250833d3b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b229a7250833d3b.verified.txt index 89780691f5b..f223f2ed602 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b229a7250833d3b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b229a7250833d3b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b2355013c37f4a3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b2355013c37f4a3.verified.txt index b52e6120589..fc9c29676f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b2355013c37f4a3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b2355013c37f4a3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt index 580384b0040..94d1f4a672d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4d2bfedf4bf30f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4ea340c55b0872.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4ea340c55b0872.verified.txt index 3b3f2d08d80..c99890f2f21 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4ea340c55b0872.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b4ea340c55b0872.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b601a9a850b9a5d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b601a9a850b9a5d.verified.txt index 6852200f9e1..7fef1accb86 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b601a9a850b9a5d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5b601a9a850b9a5d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bacb80303fdafee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bacb80303fdafee.verified.txt index 3d425847181..757a6ed7a4d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bacb80303fdafee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bacb80303fdafee.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt index 3f38416d2bd..60f13335e5e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bafbd037cbc4cda.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt index 27dcf4cf0a9..36be64a560f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf05d24d75004eb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf67f18dc7c4b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf67f18dc7c4b1b.verified.txt index fb8335e159b..3c3ce814be9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf67f18dc7c4b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5bf67f18dc7c4b1b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt index ecab53d0517..4a72c289ffd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c42d7c6b7b34b8a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c4dcbeb9c63ad0b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c4dcbeb9c63ad0b.verified.txt index fe3b1815e52..675a2fa4967 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c4dcbeb9c63ad0b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c4dcbeb9c63ad0b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c5312f30d4818c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c5312f30d4818c4.verified.txt index e43453ae6d6..aa96f4357a5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c5312f30d4818c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5c5312f30d4818c4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5ca4695a895071bb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5ca4695a895071bb.verified.txt index 65f5c7e864f..5d3a1a4ad74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5ca4695a895071bb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5ca4695a895071bb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5cfaf30d1848cd0d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5cfaf30d1848cd0d.verified.txt index 0e9a3617c67..d3d462c83c6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5cfaf30d1848cd0d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5cfaf30d1848cd0d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d14c1cf19ffedab.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d14c1cf19ffedab.verified.txt index 2051da384ff..366250dc5a7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d14c1cf19ffedab.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d14c1cf19ffedab.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d19523a7283dcad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d19523a7283dcad.verified.txt index a29d31ff327..3440fc9320e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d19523a7283dcad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d19523a7283dcad.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d1feb8b4a54fe83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d1feb8b4a54fe83.verified.txt index 3725782b658..175c123451b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d1feb8b4a54fe83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d1feb8b4a54fe83.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d38c1e1af59bb62.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d38c1e1af59bb62.verified.txt index acda80d4d74..e84b96f6489 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d38c1e1af59bb62.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d38c1e1af59bb62.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d8a68a445b61578.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d8a68a445b61578.verified.txt index 32f4de730bc..551c1ce8f30 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d8a68a445b61578.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5d8a68a445b61578.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5db612bdfa130760.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5db612bdfa130760.verified.txt index eb57746e1de..54820ae3dc4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5db612bdfa130760.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5db612bdfa130760.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5dfa4e64dd2f8ff6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5dfa4e64dd2f8ff6.verified.txt index bfcd6a87c9e..454dfcbc625 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5dfa4e64dd2f8ff6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5dfa4e64dd2f8ff6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5e025b806d1f6287.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5e025b806d1f6287.verified.txt index dd007d0d512..427bfbd9807 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5e025b806d1f6287.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5e025b806d1f6287.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5e46335c65f68a48.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5e46335c65f68a48.verified.txt index 3a84f8ecaad..130c3bb2490 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5e46335c65f68a48.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5e46335c65f68a48.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5e891d27051bd1bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5e891d27051bd1bc.verified.txt index 82ac764562a..c2041b4d9c8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5e891d27051bd1bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5e891d27051bd1bc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5eb3cf0a765e83ec.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5eb3cf0a765e83ec.verified.txt index f9235ab03ad..2caa37eceee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5eb3cf0a765e83ec.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5eb3cf0a765e83ec.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5ebee570727caefa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5ebee570727caefa.verified.txt index b4dafab8fb9..a80040c6fdf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5ebee570727caefa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5ebee570727caefa.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5eef664b6e716ed5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5eef664b6e716ed5.verified.txt index d6b308b315d..bc16e7bbf56 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5eef664b6e716ed5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5eef664b6e716ed5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5f69a5efefa4e515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5f69a5efefa4e515.verified.txt index 18f6c1c9cf6..4f915512a13 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5f69a5efefa4e515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5f69a5efefa4e515.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5f93f267242fa39d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5f93f267242fa39d.verified.txt index e6e801c84ef..7b862a2717f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5f93f267242fa39d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_5f93f267242fa39d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6016e750234580e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6016e750234580e0.verified.txt index 042de857f91..23fa9f530ad 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6016e750234580e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6016e750234580e0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_601bd44dcc6dceeb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_601bd44dcc6dceeb.verified.txt index c07ea9317fb..86f47e57d4b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_601bd44dcc6dceeb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_601bd44dcc6dceeb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt index 518cdae1b3a..c3f80073ca4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6049a1c6ea8c574f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6077a76c7b442f6e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6077a76c7b442f6e.verified.txt index c2948a95cba..05d3b16e527 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6077a76c7b442f6e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6077a76c7b442f6e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6086c56527d5c686.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6086c56527d5c686.verified.txt index 8d1b71f169b..f8b478329c3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6086c56527d5c686.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6086c56527d5c686.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt index a8e23076ffd..c955a8eae37 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_608e6edcd10a3d83.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_60931bab81fd88a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_60931bab81fd88a0.verified.txt index d85ee4f58e6..0136c30b681 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_60931bab81fd88a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_60931bab81fd88a0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_60c8641bf80b27e1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_60c8641bf80b27e1.verified.txt index 5a0041de71e..f6ba879cf58 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_60c8641bf80b27e1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_60c8641bf80b27e1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_60ea55c355163197.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_60ea55c355163197.verified.txt index 7a6a235ff19..a126f43363e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_60ea55c355163197.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_60ea55c355163197.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6112ac37cc3b18fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6112ac37cc3b18fa.verified.txt index dd11356bfd1..12fe29c7315 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6112ac37cc3b18fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6112ac37cc3b18fa.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_611d9befd71a5b90.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_611d9befd71a5b90.verified.txt index d57f6552d8a..670443573e8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_611d9befd71a5b90.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_611d9befd71a5b90.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_615502d945ceb714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_615502d945ceb714.verified.txt index 50df763b774..c6ccec9ac09 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_615502d945ceb714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_615502d945ceb714.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_621eb62242ff1655.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_621eb62242ff1655.verified.txt index b3d8d67ca1d..99b6632809e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_621eb62242ff1655.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_621eb62242ff1655.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62512b185bd25154.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62512b185bd25154.verified.txt index 2ff02369247..57c9a0c61b6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62512b185bd25154.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62512b185bd25154.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt index 9622bdb81d5..31cf3111d54 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6298f5fc986f7be3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c004614c56dfb6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c004614c56dfb6.verified.txt index 50e9374a907..b37adcc25ad 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c004614c56dfb6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c004614c56dfb6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt index 095956f3a76..2125b604ea2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c61cd9e73e4389.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c6bff3063056da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c6bff3063056da.verified.txt index 393bfbc8e67..184909790da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c6bff3063056da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62c6bff3063056da.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62eb66e88264a125.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62eb66e88264a125.verified.txt index 7268cc51c5c..feb396b4b6e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62eb66e88264a125.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_62eb66e88264a125.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6357244baf093f12.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6357244baf093f12.verified.txt index 36b933809a4..b5dd7b5f752 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6357244baf093f12.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6357244baf093f12.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_63ab180610a45df5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_63ab180610a45df5.verified.txt index 36322eddac7..656fd03fb9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_63ab180610a45df5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_63ab180610a45df5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_63f82c17dc6853ae.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_63f82c17dc6853ae.verified.txt index d0dfde2dda9..7b0ece145be 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_63f82c17dc6853ae.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_63f82c17dc6853ae.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt index 61712558a35..f442bfe2395 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64175d46d7146515.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_641af3ff9a203f7f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_641af3ff9a203f7f.verified.txt index 9575196bb4f..a7a0697683b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_641af3ff9a203f7f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_641af3ff9a203f7f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64a35b175d7f7ebc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64a35b175d7f7ebc.verified.txt index 51b124c92cb..19c1715f7f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64a35b175d7f7ebc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64a35b175d7f7ebc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64a62c4ab79a9392.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64a62c4ab79a9392.verified.txt index a686225f224..47316343863 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64a62c4ab79a9392.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_64a62c4ab79a9392.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65038f18d261e3bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65038f18d261e3bd.verified.txt index 1fad2ab2274..e275bd117c1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65038f18d261e3bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65038f18d261e3bd.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_651585a49f15ad93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_651585a49f15ad93.verified.txt index 15dda0e5cb6..b5843fedb11 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_651585a49f15ad93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_651585a49f15ad93.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65239be7d65684a5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65239be7d65684a5.verified.txt index d6f3e6df139..a08b9849542 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65239be7d65684a5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65239be7d65684a5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65759bfe64e6cb7b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65759bfe64e6cb7b.verified.txt index 7ecb0be03c2..96b4107342d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65759bfe64e6cb7b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65759bfe64e6cb7b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt index c2e8195a966..1dd97f2531b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65a095141c2b0327.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65ca3b147ffab1b8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65ca3b147ffab1b8.verified.txt index 36cfad41c9f..cab3e26e889 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65ca3b147ffab1b8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65ca3b147ffab1b8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65f750d6ebb96a9b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65f750d6ebb96a9b.verified.txt index 04334851d8c..b236f7063ea 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65f750d6ebb96a9b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_65f750d6ebb96a9b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt index 5ad2fc2b948..7a829d2c8b1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6622e6898bd2a60c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_66503a7931701755.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_66503a7931701755.verified.txt index 742e6fb9b61..bafaec8c9b3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_66503a7931701755.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_66503a7931701755.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_669b65892cf5fabe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_669b65892cf5fabe.verified.txt index da4d60ae472..dc5241c44e8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_669b65892cf5fabe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_669b65892cf5fabe.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_66c9a595c22a237f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_66c9a595c22a237f.verified.txt index d0a0121cdbf..7694c038061 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_66c9a595c22a237f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_66c9a595c22a237f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670ab20cc57d42b1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670ab20cc57d42b1.verified.txt index 5a83d64e792..548afe4f9ae 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670ab20cc57d42b1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670ab20cc57d42b1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt index c9bb8101ff4..3d7eb0e2904 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_670bc0a52047edef.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_672b95c1dbc627e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_672b95c1dbc627e7.verified.txt index c8ffe9a205e..a0977e3755e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_672b95c1dbc627e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_672b95c1dbc627e7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_672bd4669fd59744.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_672bd4669fd59744.verified.txt index dee061a621b..6d2f26cede0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_672bd4669fd59744.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_672bd4669fd59744.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_67ebb6544fe6c27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_67ebb6544fe6c27f.verified.txt index 52bd72e6676..41a70a890b4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_67ebb6544fe6c27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_67ebb6544fe6c27f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_67fcf919d818990e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_67fcf919d818990e.verified.txt index b6513e4d478..b4f795d904a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_67fcf919d818990e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_67fcf919d818990e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_68361028fcc5b28d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_68361028fcc5b28d.verified.txt index 22eabf6c52c..f6d2da765fa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_68361028fcc5b28d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_68361028fcc5b28d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_685a015000e838ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_685a015000e838ff.verified.txt index f71f76d2672..b2b423c8c43 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_685a015000e838ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_685a015000e838ff.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_697df73dace36249.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_697df73dace36249.verified.txt index 277e8f9828f..f9d119a1cdd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_697df73dace36249.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_697df73dace36249.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69c9a47cf814b2ec.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69c9a47cf814b2ec.verified.txt index e00258998d9..55057be2ef9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69c9a47cf814b2ec.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69c9a47cf814b2ec.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fc2f9aed9bdedb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fc2f9aed9bdedb.verified.txt index 47f507e624b..2996ea75a84 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fc2f9aed9bdedb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fc2f9aed9bdedb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt index ff67ec8381b..c072a119b3b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_69fcd2606de7a2ef.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6a3161ca50c7bbf6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6a3161ca50c7bbf6.verified.txt index 09d4f145634..4366c28d6d1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6a3161ca50c7bbf6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6a3161ca50c7bbf6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6a3fa153ba2f58c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6a3fa153ba2f58c4.verified.txt index ee8b50ba954..45049559987 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6a3fa153ba2f58c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6a3fa153ba2f58c4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6a4b03c335da7014.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6a4b03c335da7014.verified.txt index 399c85daa0a..d447e637ce4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6a4b03c335da7014.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6a4b03c335da7014.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ac53561d91a91d8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ac53561d91a91d8.verified.txt index 9180a968478..a838c2a904f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ac53561d91a91d8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ac53561d91a91d8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6aec4b1979c2a7a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6aec4b1979c2a7a1.verified.txt index c70edaab714..d12d8ba9495 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6aec4b1979c2a7a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6aec4b1979c2a7a1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6af92539ef70b33c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6af92539ef70b33c.verified.txt index 15e5dc8c8d3..4b621b6a1dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6af92539ef70b33c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6af92539ef70b33c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b0a6ed8147cbfdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b0a6ed8147cbfdb.verified.txt index b32939e781f..cdc3a88ab15 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b0a6ed8147cbfdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b0a6ed8147cbfdb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b4e57cec8ffb63e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b4e57cec8ffb63e.verified.txt index eba5badf3cc..775a9959042 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b4e57cec8ffb63e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b4e57cec8ffb63e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b8c42be7ead2777.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b8c42be7ead2777.verified.txt index cc2feede6c8..2644fe51115 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b8c42be7ead2777.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b8c42be7ead2777.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b8fd5857fb466ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b8fd5857fb466ea.verified.txt index 4ede9c099f2..899728382e3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b8fd5857fb466ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b8fd5857fb466ea.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b93f58a6c8e2866.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b93f58a6c8e2866.verified.txt index e4fcfc1adc3..cdf85857366 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b93f58a6c8e2866.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b93f58a6c8e2866.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b980c0ab9b89786.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b980c0ab9b89786.verified.txt index 3d30d044ef0..4d607916328 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b980c0ab9b89786.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6b980c0ab9b89786.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6bd32dd61fdd73d2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6bd32dd61fdd73d2.verified.txt index 1081af38043..9b552b37871 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6bd32dd61fdd73d2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6bd32dd61fdd73d2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6bedde57d52182e1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6bedde57d52182e1.verified.txt index 3d739183eeb..a9ee3928082 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6bedde57d52182e1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6bedde57d52182e1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt index 9398baab7c1..dbf01a4b75d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c198b9ba248881a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c3acf48437f4941.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c3acf48437f4941.verified.txt index 565db12846c..56438616fda 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c3acf48437f4941.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c3acf48437f4941.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c472d2da5a96300.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c472d2da5a96300.verified.txt index 6e19024b5c0..4df8d3702ac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c472d2da5a96300.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6c472d2da5a96300.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ced1bfee9bf22da.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ced1bfee9bf22da.verified.txt index 184062f9f22..06b42dbed4f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ced1bfee9bf22da.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ced1bfee9bf22da.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d37bb9cc47b1d49.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d37bb9cc47b1d49.verified.txt index 41f55dd8565..a0b3a9ae382 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d37bb9cc47b1d49.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d37bb9cc47b1d49.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d5693865c2b8d58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d5693865c2b8d58.verified.txt index 2466ab2c714..f59d33f9906 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d5693865c2b8d58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d5693865c2b8d58.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d5873dfe2f4e82b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d5873dfe2f4e82b.verified.txt index 5dfd01aa6e3..fac1c0db4bf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d5873dfe2f4e82b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d5873dfe2f4e82b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d755d73435de6db.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d755d73435de6db.verified.txt index 7e7a260bd21..d8b665e5ac2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d755d73435de6db.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6d755d73435de6db.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6e35012a7294be15.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6e35012a7294be15.verified.txt index 7cd5f97a97d..e323237e77e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6e35012a7294be15.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6e35012a7294be15.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6e75a3328c558a1a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6e75a3328c558a1a.verified.txt index e626e179144..08e5e627aaa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6e75a3328c558a1a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6e75a3328c558a1a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ec01b6cd0f12ee2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ec01b6cd0f12ee2.verified.txt index 28ce54e2ef4..999b26e4949 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ec01b6cd0f12ee2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ec01b6cd0f12ee2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt index 5155bce0f6a..57a1156dea6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6ecf9d4c2948b0ee.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt index 3a13d1387dd..47986a6feec 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_6edc0e333d7ca95b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7004a328de2e0ca3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7004a328de2e0ca3.verified.txt index bef621bb000..e92a21bb370 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7004a328de2e0ca3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7004a328de2e0ca3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_702f21c7445d42d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_702f21c7445d42d4.verified.txt index c6f94dfc1cf..46bdc45c8fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_702f21c7445d42d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_702f21c7445d42d4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_707e1d37084242f9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_707e1d37084242f9.verified.txt index 5a7ee944144..811aa8c91e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_707e1d37084242f9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_707e1d37084242f9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_70ac68ef35e988a5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_70ac68ef35e988a5.verified.txt index 83222c98726..a857bd9cbe2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_70ac68ef35e988a5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_70ac68ef35e988a5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_70f6d6cb63867d5a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_70f6d6cb63867d5a.verified.txt index c54e7752591..0a5ac3d07f6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_70f6d6cb63867d5a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_70f6d6cb63867d5a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt index 6336b5fac88..20d91efb287 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71145c65a5055538.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_719bcbcfd10c3314.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_719bcbcfd10c3314.verified.txt index f629d483aa1..575d3f95b33 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_719bcbcfd10c3314.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_719bcbcfd10c3314.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71e47d4e15567da6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71e47d4e15567da6.verified.txt index dc1840fa77f..f8340357c41 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71e47d4e15567da6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_71e47d4e15567da6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7256eca2416a2091.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7256eca2416a2091.verified.txt index 7b761f21ce5..5722de76974 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7256eca2416a2091.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7256eca2416a2091.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt index 4634b5a8fa0..4696834b074 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7258f6be8e2c828d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_726f57746ba1cb7a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_726f57746ba1cb7a.verified.txt index ef8c92bd4b5..4dd7a024c1d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_726f57746ba1cb7a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_726f57746ba1cb7a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt index 236c316fde1..9e13da24395 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72b0cb9c39c87b63.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72d2b1e76f447645.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72d2b1e76f447645.verified.txt index 7144e2c0569..8b49908ea30 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72d2b1e76f447645.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72d2b1e76f447645.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt index 64e53d332f7..812ddf6e456 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_72fd6e0d4ddc0d3f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_731d2ef406a0d5f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_731d2ef406a0d5f5.verified.txt index aaecaf429df..d18aaadb68e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_731d2ef406a0d5f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_731d2ef406a0d5f5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt index 0d964c16039..d76a3881bb9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_734f1d13b7cdbc1b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73804adbc23469d8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73804adbc23469d8.verified.txt index cc15fc4d036..46d5f1b9a8c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73804adbc23469d8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73804adbc23469d8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73a90dc69fec0a55.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73a90dc69fec0a55.verified.txt index 64ee9089f3d..d856cd40595 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73a90dc69fec0a55.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73a90dc69fec0a55.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73b50d03548740d0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73b50d03548740d0.verified.txt index 30d3cea4ce4..1384727c39b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73b50d03548740d0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73b50d03548740d0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt index dafdbaa6977..56c8253582f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73bbd244c82ae3fd.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt index e3ee779a529..0ddf2be2747 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c2839e94370620.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt index 1ed759aae8f..a9a9c26bd22 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_73c81238365479f6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7477ee6a9922c434.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7477ee6a9922c434.verified.txt index 456ee8388a3..fe096261c0e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7477ee6a9922c434.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7477ee6a9922c434.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_748901131c830f2a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_748901131c830f2a.verified.txt index bbc84d7294c..cdbc074bb77 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_748901131c830f2a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_748901131c830f2a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_748e699d4c94c206.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_748e699d4c94c206.verified.txt index ef1d444574c..b3392773f29 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_748e699d4c94c206.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_748e699d4c94c206.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_749518a425a23a07.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_749518a425a23a07.verified.txt index 346830bafe5..13b74944641 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_749518a425a23a07.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_749518a425a23a07.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7495272485356f8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7495272485356f8c.verified.txt index 18228a78910..4583ae6f641 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7495272485356f8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7495272485356f8c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_74a812b979852e89.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_74a812b979852e89.verified.txt index 6d64d016527..cc5ddd0ab63 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_74a812b979852e89.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_74a812b979852e89.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_74f28d1e19ca5b74.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_74f28d1e19ca5b74.verified.txt index b7b87670326..426b82b4d97 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_74f28d1e19ca5b74.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_74f28d1e19ca5b74.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt index 9eb7024c7fc..89996e0ea4a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_752db732ecb59b58.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7560eef87cd7423e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7560eef87cd7423e.verified.txt index 8a81a4e00f0..cd002af261d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7560eef87cd7423e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7560eef87cd7423e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_756ed6c87d399e54.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_756ed6c87d399e54.verified.txt index 9c3ae5e037f..bff94439422 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_756ed6c87d399e54.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_756ed6c87d399e54.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt index d039ec95b18..c8919c686d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_75d3e924cfc2a977.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7610949817c70349.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7610949817c70349.verified.txt index a9b25c5626f..c8c8689c5a0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7610949817c70349.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7610949817c70349.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76181d327aae1095.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76181d327aae1095.verified.txt index 7d09816706c..bf663e83c37 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76181d327aae1095.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76181d327aae1095.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_767903a02e8d245b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_767903a02e8d245b.verified.txt index 9ef4079ca98..bb77e070626 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_767903a02e8d245b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_767903a02e8d245b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_768143ea278759b2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_768143ea278759b2.verified.txt index 6508f5b38c0..7e36057731c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_768143ea278759b2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_768143ea278759b2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76ccb3657e3f1344.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76ccb3657e3f1344.verified.txt index f3efae1233f..a7be9703005 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76ccb3657e3f1344.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76ccb3657e3f1344.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt index aba3e0f779a..d66bae33e83 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_76f4f8df0b31dadb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_770f932096d7e999.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_770f932096d7e999.verified.txt index 90951443d72..03b5c376380 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_770f932096d7e999.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_770f932096d7e999.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_776377d1c302c535.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_776377d1c302c535.verified.txt index 577a58123ec..f0972625b45 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_776377d1c302c535.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_776377d1c302c535.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_77a1076f1ca4b706.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_77a1076f1ca4b706.verified.txt index 0c29218f811..597fd9aea0b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_77a1076f1ca4b706.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_77a1076f1ca4b706.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_77e34035d0f5dada.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_77e34035d0f5dada.verified.txt index ed86d481d61..d55438095a8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_77e34035d0f5dada.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_77e34035d0f5dada.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_77e93d2871a14998.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_77e93d2871a14998.verified.txt index 7a8a77ab647..0415fa30d02 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_77e93d2871a14998.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_77e93d2871a14998.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_780d0bcf92b7fd1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_780d0bcf92b7fd1b.verified.txt index d00bbd5ca79..1200df2f0f6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_780d0bcf92b7fd1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_780d0bcf92b7fd1b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7841cd14d87aa180.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7841cd14d87aa180.verified.txt index b268c5e2b67..7546506cbf7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7841cd14d87aa180.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7841cd14d87aa180.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_784962401092a09f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_784962401092a09f.verified.txt index 8fadca753a9..abee5728e92 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_784962401092a09f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_784962401092a09f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_785549e5f37cdc28.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_785549e5f37cdc28.verified.txt index 6b533d1be18..24bb64bfc4b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_785549e5f37cdc28.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_785549e5f37cdc28.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_787f97f09fcd6848.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_787f97f09fcd6848.verified.txt index 36f3045a8fc..e7877661799 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_787f97f09fcd6848.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_787f97f09fcd6848.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt index 944219403a6..d41084e68f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_78bdba894c070386.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7928d0dcf2a2297e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7928d0dcf2a2297e.verified.txt index 2cfe02628be..71245c839d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7928d0dcf2a2297e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7928d0dcf2a2297e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_799de54ca22aa3e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_799de54ca22aa3e3.verified.txt index 2a744fa9706..1b3d0a6a3c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_799de54ca22aa3e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_799de54ca22aa3e3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_79cc52cbd2abcc8a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_79cc52cbd2abcc8a.verified.txt index df739443060..6737e36c0ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_79cc52cbd2abcc8a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_79cc52cbd2abcc8a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_79d519b5e1f98552.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_79d519b5e1f98552.verified.txt index b2f0f669d32..5752b7e83ed 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_79d519b5e1f98552.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_79d519b5e1f98552.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a0d05a9249b753c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a0d05a9249b753c.verified.txt index 1ea989c78a2..b948de1ed0a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a0d05a9249b753c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a0d05a9249b753c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a29b132ef13465c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a29b132ef13465c.verified.txt index 7915f1e821b..b27b8a55075 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a29b132ef13465c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a29b132ef13465c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a34ee79c5d57b5e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a34ee79c5d57b5e.verified.txt index eaf52196485..0654c4a4be5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a34ee79c5d57b5e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a34ee79c5d57b5e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt index 2392d3694ba..bb50c38a100 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7a50710f3a13ffbe.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7afee78a76f51876.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7afee78a76f51876.verified.txt index 016e12248bd..cde31016b68 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7afee78a76f51876.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7afee78a76f51876.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7b4eb80c645cf2f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7b4eb80c645cf2f5.verified.txt index e910c2d5ffc..fd36cfa161b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7b4eb80c645cf2f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7b4eb80c645cf2f5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt index 1c841077c03..222c5ca8323 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7bbe9bb95d8a8d38.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt index 549c09969f0..61670f4b59b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7be5b701649dc247.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7c1c0bf2f29e0c88.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7c1c0bf2f29e0c88.verified.txt index 6553e74a3e8..6356ee94edc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7c1c0bf2f29e0c88.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7c1c0bf2f29e0c88.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7d0d1eda7ed7a804.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7d0d1eda7ed7a804.verified.txt index 880bb7f204d..2a292c0f6a5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7d0d1eda7ed7a804.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7d0d1eda7ed7a804.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7d3904d3efa1714e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7d3904d3efa1714e.verified.txt index 8f506295ecb..20e689bf604 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7d3904d3efa1714e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7d3904d3efa1714e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7d920e8e8c4b8f87.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7d920e8e8c4b8f87.verified.txt index ff7e39601ce..bf053a52f3a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7d920e8e8c4b8f87.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7d920e8e8c4b8f87.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7da06f0d215a684c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7da06f0d215a684c.verified.txt index bb36b227d6c..3a07002486f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7da06f0d215a684c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7da06f0d215a684c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7da2f0d86c94c2ae.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7da2f0d86c94c2ae.verified.txt index 93358d5085f..5c46b0632b7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7da2f0d86c94c2ae.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7da2f0d86c94c2ae.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt index 9326775c296..7f5d378928f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dbe84c313bbb914.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dc347eff85838e2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dc347eff85838e2.verified.txt index 30d25481347..000b6d0140e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dc347eff85838e2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7dc347eff85838e2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e06e5288ec02523.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e06e5288ec02523.verified.txt index 2c092c9d564..705829a9fbb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e06e5288ec02523.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e06e5288ec02523.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e3816db922bc9a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e3816db922bc9a4.verified.txt index ce71777f1e0..ada9d6844b8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e3816db922bc9a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e3816db922bc9a4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e488a7122cbf00f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e488a7122cbf00f.verified.txt index 661a4f70b01..208bfc1da0f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e488a7122cbf00f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e488a7122cbf00f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e9392cefb2ad327.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e9392cefb2ad327.verified.txt index fb3ae5e3f00..8239329ecab 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e9392cefb2ad327.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7e9392cefb2ad327.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7eb7720a6b8de284.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7eb7720a6b8de284.verified.txt index 2c80f4711fe..b5d529a9157 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7eb7720a6b8de284.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7eb7720a6b8de284.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7ec18e2d00093057.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7ec18e2d00093057.verified.txt index ea9af36ac43..179931973e0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7ec18e2d00093057.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7ec18e2d00093057.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7eceeee16efad14e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7eceeee16efad14e.verified.txt index 2c7dab8ce53..a5cd80822c1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7eceeee16efad14e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7eceeee16efad14e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7ee4864d34f0da96.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7ee4864d34f0da96.verified.txt index 6b168425301..15876b06d6e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7ee4864d34f0da96.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7ee4864d34f0da96.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7f4f0f13e9930623.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7f4f0f13e9930623.verified.txt index 04e95b047ad..c2f56a0010c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7f4f0f13e9930623.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7f4f0f13e9930623.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7fa36e846a272422.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7fa36e846a272422.verified.txt index 1d949eed600..edde4d985f7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7fa36e846a272422.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7fa36e846a272422.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7fa89b333b44720c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7fa89b333b44720c.verified.txt index 99907683093..647ebd3f3c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7fa89b333b44720c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7fa89b333b44720c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7fb8a49d4f184ea8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7fb8a49d4f184ea8.verified.txt index 60564eb5994..c7193a9cead 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7fb8a49d4f184ea8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_7fb8a49d4f184ea8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_802ab878f0a204c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_802ab878f0a204c4.verified.txt index df4e8070598..4fba23a8521 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_802ab878f0a204c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_802ab878f0a204c4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8043c15316a12438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8043c15316a12438.verified.txt index 6b821be9ed8..b8b578b8bbf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8043c15316a12438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8043c15316a12438.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8096173cf4c10c7b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8096173cf4c10c7b.verified.txt index 37b37cc93a8..da979ed6cb7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8096173cf4c10c7b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8096173cf4c10c7b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_80acfbba302d8f6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_80acfbba302d8f6f.verified.txt index 838e3867481..1814105b7a9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_80acfbba302d8f6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_80acfbba302d8f6f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_80d524b67e8349db.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_80d524b67e8349db.verified.txt index 6af3f71e1cb..bd4ce641ad2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_80d524b67e8349db.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_80d524b67e8349db.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_813e03ed99a26522.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_813e03ed99a26522.verified.txt index 87312bdfd39..e156ce66b94 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_813e03ed99a26522.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_813e03ed99a26522.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_815378d5348cacf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_815378d5348cacf1.verified.txt index 4019da7d16e..bace257cd00 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_815378d5348cacf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_815378d5348cacf1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_819f01ba9311fa18.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_819f01ba9311fa18.verified.txt index d8b0ad58d7a..a8bc6d00ca0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_819f01ba9311fa18.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_819f01ba9311fa18.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt index 126866ac969..b9cfd19e2f6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81bd438b544b74bd.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt index 51111d1e559..2ac9c5ffb7d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81eb306e4b98152e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt index 7d1d52db6b9..e10bb88a2dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_81ec725790703699.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_821b31527cb7ec1c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_821b31527cb7ec1c.verified.txt index 378ac4175ca..bd017af761d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_821b31527cb7ec1c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_821b31527cb7ec1c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8236af6b8373721b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8236af6b8373721b.verified.txt index 3b7638d7677..625ec3a30b8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8236af6b8373721b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8236af6b8373721b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8256717e1a136692.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8256717e1a136692.verified.txt index a987cc1fd0e..7576451bb8c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8256717e1a136692.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8256717e1a136692.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_82bbf1a8e6286b89.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_82bbf1a8e6286b89.verified.txt index 6879cc112a4..befd5f3b7b9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_82bbf1a8e6286b89.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_82bbf1a8e6286b89.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_830785d672195aa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_830785d672195aa0.verified.txt index 1c73647b1b1..ade52218013 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_830785d672195aa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_830785d672195aa0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_834310c7fc35f23c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_834310c7fc35f23c.verified.txt index 18dd4ad87bd..b12d407d4a9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_834310c7fc35f23c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_834310c7fc35f23c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_839f146f1f186c59.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_839f146f1f186c59.verified.txt index 38ab87805b6..b6b3ff10cd2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_839f146f1f186c59.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_839f146f1f186c59.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_83e3bd62e794f223.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_83e3bd62e794f223.verified.txt index 146ddd19ebc..ef8a7581116 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_83e3bd62e794f223.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_83e3bd62e794f223.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_83eafcb2c525d88c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_83eafcb2c525d88c.verified.txt index ed684e89f0e..bcbf994a7e4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_83eafcb2c525d88c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_83eafcb2c525d88c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8443e155374600d9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8443e155374600d9.verified.txt index 75e9d2c49fc..f1902b59387 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8443e155374600d9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8443e155374600d9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84569435b095aae7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84569435b095aae7.verified.txt index 4455f36fbe3..0b1c9bff28f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84569435b095aae7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84569435b095aae7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84cae70ff1e36dc6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84cae70ff1e36dc6.verified.txt index b331d6c11f4..e41317b9a80 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84cae70ff1e36dc6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84cae70ff1e36dc6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84d05a2a0923bd6d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84d05a2a0923bd6d.verified.txt index 48ac897cc81..428466e99d8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84d05a2a0923bd6d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84d05a2a0923bd6d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84e052b9b15a4dc3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84e052b9b15a4dc3.verified.txt index 7a930ebe84e..953a39f5300 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84e052b9b15a4dc3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_84e052b9b15a4dc3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_851ae6b0eb11f8cc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_851ae6b0eb11f8cc.verified.txt index 98569c7a69a..cf47bb14513 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_851ae6b0eb11f8cc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_851ae6b0eb11f8cc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_852291cb63a71e2e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_852291cb63a71e2e.verified.txt index be59ac93b1a..004bab064b3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_852291cb63a71e2e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_852291cb63a71e2e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85431e6f878152aa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85431e6f878152aa.verified.txt index 45eb587c295..3be8794765b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85431e6f878152aa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85431e6f878152aa.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8543931d8271ea03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8543931d8271ea03.verified.txt index f774c890e95..a79780054db 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8543931d8271ea03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8543931d8271ea03.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_857a000b885935fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_857a000b885935fa.verified.txt index 163516adebd..699650024a2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_857a000b885935fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_857a000b885935fa.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85ae57892966d4ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85ae57892966d4ff.verified.txt index 259e9e4b9dc..b60cae2292c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85ae57892966d4ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85ae57892966d4ff.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85b94a1ee11fd4e5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85b94a1ee11fd4e5.verified.txt index 607572d9d2a..379b59d39e3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85b94a1ee11fd4e5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85b94a1ee11fd4e5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85bdda0834299bf7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85bdda0834299bf7.verified.txt index 5fea721b16e..7cd9f41d591 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85bdda0834299bf7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85bdda0834299bf7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85f8eafe9d8ea985.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85f8eafe9d8ea985.verified.txt index 32bb931d4b2..06ea9a826d3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85f8eafe9d8ea985.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_85f8eafe9d8ea985.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_860dc6192199ac6e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_860dc6192199ac6e.verified.txt index 8fa41827f8e..c000f33c11a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_860dc6192199ac6e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_860dc6192199ac6e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt index 525488118fc..8a712140b38 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86105943e84e847f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8639e20bf634e23a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8639e20bf634e23a.verified.txt index 35efdc2606c..069c188e21d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8639e20bf634e23a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8639e20bf634e23a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_864f2e0953315b38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_864f2e0953315b38.verified.txt index 5b59bee5827..36b33845569 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_864f2e0953315b38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_864f2e0953315b38.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt index 0357a387d07..e1259e4f6c0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8655bfa3b8992c7c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_866d8182e8bb23a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_866d8182e8bb23a1.verified.txt index 27e9a9c580f..3689503d3af 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_866d8182e8bb23a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_866d8182e8bb23a1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86bf83c0066c558e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86bf83c0066c558e.verified.txt index 775b4baa1de..d8a3f13220f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86bf83c0066c558e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86bf83c0066c558e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt index 930f07f3c24..ea960b4efc9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_86fc6d2ce139945a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_871884b6ce15140e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_871884b6ce15140e.verified.txt index 0848211bf75..48a9f8b1ef4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_871884b6ce15140e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_871884b6ce15140e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_875b5dbafedda1c9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_875b5dbafedda1c9.verified.txt index 99a86472fed..cd94ceb85bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_875b5dbafedda1c9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_875b5dbafedda1c9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_87d6cabd2c87c4d8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_87d6cabd2c87c4d8.verified.txt index 544066f083a..565be07d014 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_87d6cabd2c87c4d8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_87d6cabd2c87c4d8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_883c9503e927010c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_883c9503e927010c.verified.txt index c26abfcb99e..bdf33ffde6e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_883c9503e927010c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_883c9503e927010c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8857c1803dc1266f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8857c1803dc1266f.verified.txt index 8f48f247beb..e3ba883a79f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8857c1803dc1266f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8857c1803dc1266f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt index 16b7149f79c..44ed75adf41 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_888520bd04bba958.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8891571acc26682e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8891571acc26682e.verified.txt index a8e1753bcb9..c4852349892 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8891571acc26682e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8891571acc26682e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_889eaff9287e3b3a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_889eaff9287e3b3a.verified.txt index b56d583e53f..8ec45e6c1e8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_889eaff9287e3b3a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_889eaff9287e3b3a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_88a13a408f467096.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_88a13a408f467096.verified.txt index 49bdbf18065..a8d924c9081 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_88a13a408f467096.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_88a13a408f467096.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_88af252d3a9520d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_88af252d3a9520d7.verified.txt index c49ef051d75..5f430288367 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_88af252d3a9520d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_88af252d3a9520d7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_890cc6225e927910.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_890cc6225e927910.verified.txt index fc588569095..2cb91da611f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_890cc6225e927910.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_890cc6225e927910.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt index ca75ad02f00..38cda1aaf8a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_895270e942df83ea.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_89bd27009f1555fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_89bd27009f1555fa.verified.txt index 406ef64d05c..31cfd4d0dd2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_89bd27009f1555fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_89bd27009f1555fa.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a09228131ea39b9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a09228131ea39b9.verified.txt index 5b142aba808..b73cab18b25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a09228131ea39b9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a09228131ea39b9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt index 1de25695906..bfc1602efb1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a78c2d195f51c4c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a9dc423d4ded57b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a9dc423d4ded57b.verified.txt index cb44655fe92..931e18b1234 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a9dc423d4ded57b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8a9dc423d4ded57b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8aa872f20216b6b1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8aa872f20216b6b1.verified.txt index 850f135bd9f..05c55168e02 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8aa872f20216b6b1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8aa872f20216b6b1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt index f42cc83e0fa..86959164adb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b225313a032ee08.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b64a093581255ad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b64a093581255ad.verified.txt index 02a579bec5c..ae79753c343 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b64a093581255ad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b64a093581255ad.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b970bb80581f61a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b970bb80581f61a.verified.txt index b8055908b6e..bac72d55e4a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b970bb80581f61a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8b970bb80581f61a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8bb4743f348362af.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8bb4743f348362af.verified.txt index 32c0ea090ac..9d8ac94c08b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8bb4743f348362af.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8bb4743f348362af.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8bc1ad81347d3c4e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8bc1ad81347d3c4e.verified.txt index 44205ecd136..df6741e738a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8bc1ad81347d3c4e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8bc1ad81347d3c4e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8c0f79f239648767.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8c0f79f239648767.verified.txt index 476fea47c21..0f879c7ae17 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8c0f79f239648767.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8c0f79f239648767.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt index ed831dc26dc..9c95ffca5e6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cba5794f0652371.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8ccc88fe6029a891.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8ccc88fe6029a891.verified.txt index b5dd7caa269..b7d93bccde0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8ccc88fe6029a891.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8ccc88fe6029a891.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8ce699b98d2a9700.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8ce699b98d2a9700.verified.txt index 32b54f48d59..6b3f0d19b30 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8ce699b98d2a9700.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8ce699b98d2a9700.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cfed8dcf1321694.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cfed8dcf1321694.verified.txt index 59ea33e1d03..2cab56a309b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cfed8dcf1321694.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8cfed8dcf1321694.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8d28ef5759f40ab9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8d28ef5759f40ab9.verified.txt index 4e4528510fc..0ae7988ac86 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8d28ef5759f40ab9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8d28ef5759f40ab9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8dbfe96c5dd947fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8dbfe96c5dd947fe.verified.txt index 290c408019b..e5f8b60de6a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8dbfe96c5dd947fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8dbfe96c5dd947fe.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8df3b73bea61f818.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8df3b73bea61f818.verified.txt index 7e37c58c153..78e5ab2b41e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8df3b73bea61f818.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8df3b73bea61f818.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8e3fcc91e2f6ee7a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8e3fcc91e2f6ee7a.verified.txt index 67fee6ffb77..7426cffcdb2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8e3fcc91e2f6ee7a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8e3fcc91e2f6ee7a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8e70c4ca896bf455.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8e70c4ca896bf455.verified.txt index df86b643ae7..40ea8f1b00b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8e70c4ca896bf455.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8e70c4ca896bf455.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8e93f50ead8fda3d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8e93f50ead8fda3d.verified.txt index 30a3f3a94bb..f82a5f8e40c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8e93f50ead8fda3d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8e93f50ead8fda3d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8eb5d8dd036bcc0a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8eb5d8dd036bcc0a.verified.txt index 9b700b57e4a..f29389fda9d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8eb5d8dd036bcc0a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8eb5d8dd036bcc0a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8eb66257e6eb852e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8eb66257e6eb852e.verified.txt index 6f2977060f8..62b8035fe1e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8eb66257e6eb852e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8eb66257e6eb852e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8f00974a4747fae2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8f00974a4747fae2.verified.txt index bfbbfe915b2..43e02e10fa7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8f00974a4747fae2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8f00974a4747fae2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8f4c45a11636deac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8f4c45a11636deac.verified.txt index e6abb90ff79..0a0880cdbc3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8f4c45a11636deac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8f4c45a11636deac.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8f54cd21a7daf71e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8f54cd21a7daf71e.verified.txt index 6b0ce367f49..1be1db079c1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8f54cd21a7daf71e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8f54cd21a7daf71e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fcfc0c8b3391054.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fcfc0c8b3391054.verified.txt index 056fc3c3a2d..cadfc107f0b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fcfc0c8b3391054.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fcfc0c8b3391054.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt index ac3b77bb366..736997d7673 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_8fd9804f5bd26a45.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_900dc8e2556d6efc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_900dc8e2556d6efc.verified.txt index 8640b50dd31..d6516d46d5a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_900dc8e2556d6efc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_900dc8e2556d6efc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90266d08324a2d4a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90266d08324a2d4a.verified.txt index 7a37e1b0b04..c1813c1d21c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90266d08324a2d4a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90266d08324a2d4a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90c7d4310f2e0896.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90c7d4310f2e0896.verified.txt index c64b7420848..1b656a79d3f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90c7d4310f2e0896.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90c7d4310f2e0896.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90e1be6de9347b30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90e1be6de9347b30.verified.txt index 399001736d1..092e20c5ae9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90e1be6de9347b30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90e1be6de9347b30.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90efdf9b0482da54.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90efdf9b0482da54.verified.txt index 8a9612e919a..18d2b021c6e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90efdf9b0482da54.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90efdf9b0482da54.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt index bf249fc60ef..dd782884601 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_90f1417ae7ed53de.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9154185dd3d11430.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9154185dd3d11430.verified.txt index 67c83c75a27..cd08b4e57e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9154185dd3d11430.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9154185dd3d11430.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt index 7e02d7cba92..833b0dbef0c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_91990b04953db393.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt index 2486dd676ce..72dae61d850 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9200ff452a0795bc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_928c9420c1bb63de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_928c9420c1bb63de.verified.txt index 07b43c4979c..fa39af43eff 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_928c9420c1bb63de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_928c9420c1bb63de.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt index 3e254d5379a..3098fe42c77 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_92edc4c62e75ebc2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9361c21355561fb9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9361c21355561fb9.verified.txt index 915145e48be..58931693048 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9361c21355561fb9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9361c21355561fb9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_936b2c7a1344cfc3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_936b2c7a1344cfc3.verified.txt index ce3d7a8ebf8..a1fa74f9adf 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_936b2c7a1344cfc3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_936b2c7a1344cfc3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9373fe3eec50413f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9373fe3eec50413f.verified.txt index f9415df1a19..feb2f0cefe3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9373fe3eec50413f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9373fe3eec50413f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_939a32d6927614d5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_939a32d6927614d5.verified.txt index 4bf419d984d..eece4244404 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_939a32d6927614d5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_939a32d6927614d5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt index 21408e14f26..a55aae28610 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93b9295d7d839d94.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93eac42dcba4c72e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93eac42dcba4c72e.verified.txt index 67bb44a59b4..c18cc1af342 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93eac42dcba4c72e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_93eac42dcba4c72e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt index d0e46415948..0d5d0820ae2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_941c98798b13301e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt index 805ab3de040..4ecbe809aba 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_945670831a185c84.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_94709de1c724d2f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_94709de1c724d2f3.verified.txt index 54caff202a7..c32d8c352fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_94709de1c724d2f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_94709de1c724d2f3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_949f6ff71de084b7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_949f6ff71de084b7.verified.txt index 19a6cd1d75c..d03593d632b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_949f6ff71de084b7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_949f6ff71de084b7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_94f79482c4eee122.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_94f79482c4eee122.verified.txt index faf8f57e9d4..e46dd49688b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_94f79482c4eee122.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_94f79482c4eee122.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95270ecbda245a79.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95270ecbda245a79.verified.txt index d9aadfac6cc..22048bbecaa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95270ecbda245a79.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95270ecbda245a79.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9557425ce6c2b7e1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9557425ce6c2b7e1.verified.txt index 38e20819e14..38f8a1dcef2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9557425ce6c2b7e1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9557425ce6c2b7e1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_955e251507792531.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_955e251507792531.verified.txt index a6abc111171..c2f5fdf8414 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_955e251507792531.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_955e251507792531.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt index 00bf9e8c477..02261ca6671 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_958fb5f6bad827c7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95b436d8d2391460.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95b436d8d2391460.verified.txt index 26d53550f2d..bb5a16e9056 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95b436d8d2391460.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95b436d8d2391460.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt index 239898b4e8d..c5fb735d05f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_95d56defa642382d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_964221e02460356b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_964221e02460356b.verified.txt index b433dbb3806..61c70195865 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_964221e02460356b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_964221e02460356b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_966ae614987d6c84.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_966ae614987d6c84.verified.txt index 1c09e8dca57..b2892b070de 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_966ae614987d6c84.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_966ae614987d6c84.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_966cc3f4037a7751.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_966cc3f4037a7751.verified.txt index 7bd81ee77ea..44b306e298e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_966cc3f4037a7751.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_966cc3f4037a7751.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_96bbfe158b17097f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_96bbfe158b17097f.verified.txt index fc6e9bd65ef..9e003574584 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_96bbfe158b17097f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_96bbfe158b17097f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_96c678b8a7bd5cd7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_96c678b8a7bd5cd7.verified.txt index 28c22ff7767..0d62837fa08 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_96c678b8a7bd5cd7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_96c678b8a7bd5cd7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97465862faa84c1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97465862faa84c1b.verified.txt index 85aa2513e03..a8dae783597 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97465862faa84c1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97465862faa84c1b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9758b3c8b77eefc7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9758b3c8b77eefc7.verified.txt index 2c9d00acdcc..ed5c63886d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9758b3c8b77eefc7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9758b3c8b77eefc7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_979f4e1d8778978d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_979f4e1d8778978d.verified.txt index c47cb151496..9af797336e9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_979f4e1d8778978d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_979f4e1d8778978d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97a4b2f2e9d0e8fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97a4b2f2e9d0e8fc.verified.txt index 06f43566535..ed3bf304687 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97a4b2f2e9d0e8fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97a4b2f2e9d0e8fc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt index e954628bfc0..701def96f5c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_97c94938b29f3cd8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9803af96862ec001.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9803af96862ec001.verified.txt index 6e817aa2cf1..4e4e43f0cec 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9803af96862ec001.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9803af96862ec001.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_98098a7569a690ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_98098a7569a690ed.verified.txt index 5a27f36287b..cab7dbd630a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_98098a7569a690ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_98098a7569a690ed.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_981186176ef2ec89.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_981186176ef2ec89.verified.txt index 851a616db9c..c6f34501b2b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_981186176ef2ec89.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_981186176ef2ec89.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt index 4ba4cda5c61..af61fc405e2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_982cabb729c12038.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_984e86bec72e91b8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_984e86bec72e91b8.verified.txt index e143c22bec0..f7eb87d4a4c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_984e86bec72e91b8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_984e86bec72e91b8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9889b062b29f0e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9889b062b29f0e60.verified.txt index c35a01350e7..f36d2dc2a84 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9889b062b29f0e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9889b062b29f0e60.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_98f47fdce5a9bb07.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_98f47fdce5a9bb07.verified.txt index 39d2de6b83f..c5c178c4d43 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_98f47fdce5a9bb07.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_98f47fdce5a9bb07.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_992a5a8cdfae182e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_992a5a8cdfae182e.verified.txt index 10011997a20..1714ff6013a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_992a5a8cdfae182e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_992a5a8cdfae182e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9961dd976b67edad.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9961dd976b67edad.verified.txt index 23d1ad2f99a..384cce61896 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9961dd976b67edad.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9961dd976b67edad.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99b6279fde80422d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99b6279fde80422d.verified.txt index dda62d3d4eb..394bc5c69a8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99b6279fde80422d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99b6279fde80422d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt index e027030b37d..f25c2df78e3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_99f3ec72142e73ac.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt index 04638974833..b6ad6340eb4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a1bd23b384ef683.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a2d043e82919de6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a2d043e82919de6.verified.txt index 1921ce0ff48..a85b170330e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a2d043e82919de6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a2d043e82919de6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a2e732ed923494c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a2e732ed923494c.verified.txt index c1f49946179..97c7f318921 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a2e732ed923494c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9a2e732ed923494c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9abcc5efd6040859.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9abcc5efd6040859.verified.txt index 80192d35599..63e544a82d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9abcc5efd6040859.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9abcc5efd6040859.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b405704783b6e4b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b405704783b6e4b.verified.txt index 8188e2d40c3..868c56ae3a6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b405704783b6e4b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b405704783b6e4b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b5890bfa5b4d99f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b5890bfa5b4d99f.verified.txt index 27e4d69ef96..3916941a00a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b5890bfa5b4d99f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b5890bfa5b4d99f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b64d988d4d8ce85.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b64d988d4d8ce85.verified.txt index 6b36de189bd..d8a169ab218 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b64d988d4d8ce85.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b64d988d4d8ce85.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt index d83a8a85db4..3240fb5eb09 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9b84c021f22516d6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt index fd9aa46cc6b..69f608573a6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9bb22f74e6137ab0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c3500a3e611e7b8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c3500a3e611e7b8.verified.txt index 31cfe7659f6..a0eb2a20efe 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c3500a3e611e7b8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c3500a3e611e7b8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c3a8804609498e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c3a8804609498e0.verified.txt index bb6f6efd04e..c7918fca28d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c3a8804609498e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c3a8804609498e0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c4be19559533f56.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c4be19559533f56.verified.txt index b60e12ef095..42abda8c415 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c4be19559533f56.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c4be19559533f56.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c4f1e5821ac82cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c4f1e5821ac82cb.verified.txt index 8d04834c9ff..cc7e8726302 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c4f1e5821ac82cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c4f1e5821ac82cb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt index 832d8ff2575..52001a601c1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c5059f1c406a6e0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c7ddcafcc8e81f2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c7ddcafcc8e81f2.verified.txt index 16b7897d2e2..f3ded59a7ac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c7ddcafcc8e81f2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c7ddcafcc8e81f2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c9feb793d139c18.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c9feb793d139c18.verified.txt index c30f1ea0ec8..5cdbcb2dcee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c9feb793d139c18.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9c9feb793d139c18.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9cb55c92bb21f55e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9cb55c92bb21f55e.verified.txt index 97fc92e3a27..8a71b90f61a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9cb55c92bb21f55e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9cb55c92bb21f55e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9cc462a576f0da80.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9cc462a576f0da80.verified.txt index 0755858dc26..11121c6c992 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9cc462a576f0da80.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9cc462a576f0da80.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9cd706d9e2ade979.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9cd706d9e2ade979.verified.txt index e3e1ef448af..aa2f60eae4b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9cd706d9e2ade979.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9cd706d9e2ade979.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d1e362cebedf68b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d1e362cebedf68b.verified.txt index 2cad68ac948..dfe26f670e5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d1e362cebedf68b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d1e362cebedf68b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt index 5377c86a15a..3b597407048 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d2386e4cdf4622c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d48fd5d58fbfea2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d48fd5d58fbfea2.verified.txt index 2364b43d740..edea18b0a30 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d48fd5d58fbfea2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d48fd5d58fbfea2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d632284ed11c729.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d632284ed11c729.verified.txt index 9f64f5897d4..470020d6a1f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d632284ed11c729.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9d632284ed11c729.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9de9214bc3816f44.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9de9214bc3816f44.verified.txt index fb8989f7ed4..363a45d2456 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9de9214bc3816f44.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9de9214bc3816f44.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt index 5a4caeeee45..e7e2d23b3b7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9deeda27f7a8acdf.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9df46a62d35fe8eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9df46a62d35fe8eb.verified.txt index 16ecad4f5b8..14769f1a23a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9df46a62d35fe8eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9df46a62d35fe8eb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e02aefecac068bb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e02aefecac068bb.verified.txt index b103b867b45..a1fae8ccd65 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e02aefecac068bb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e02aefecac068bb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt index f02087e920a..34e418794aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e1d6f77768563a0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt index 23f4c41e46d..e25814e1da5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e362fba77f22be4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e54a35ab1785004.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e54a35ab1785004.verified.txt index 5a1888be167..707f8b7c9bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e54a35ab1785004.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e54a35ab1785004.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e6bb96518d7a8fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e6bb96518d7a8fd.verified.txt index 67e4c15e820..4adc744b7d6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e6bb96518d7a8fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e6bb96518d7a8fd.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e7f6faafa6e6390.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e7f6faafa6e6390.verified.txt index 0f06df21bec..c414ac93d4a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e7f6faafa6e6390.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9e7f6faafa6e6390.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9ebef09ef84725e6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9ebef09ef84725e6.verified.txt index ddb8a6b7c0c..1b09f3b1fb7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9ebef09ef84725e6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9ebef09ef84725e6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9ef49dd99df28fd9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9ef49dd99df28fd9.verified.txt index fd8893f1f1f..61d14c72be6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9ef49dd99df28fd9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9ef49dd99df28fd9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2636db94a545a7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2636db94a545a7.verified.txt index c84b28ebf62..1daf7967afb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2636db94a545a7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2636db94a545a7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt index 8f7d2874b08..923e81f1268 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f2aa7b4f6246f6a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt index b3b0af7a0bc..f1c68f38c36 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f876f3fa4dc5e75.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt index b6cc453ec6c..89f76040783 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f92a05dc45c7f93.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt index 3e899e8b920..59cb88de3ff 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_9f96079551cd472e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a00ac5ce6fc5f2ef.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a00ac5ce6fc5f2ef.verified.txt index d926b782e2e..1ee2d8cec44 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a00ac5ce6fc5f2ef.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a00ac5ce6fc5f2ef.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt index 70a1c9c15e6..afc7b6825e9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a054f29bc225e27f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a090f55e49d78b85.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a090f55e49d78b85.verified.txt index 20654351706..2ea0de6d986 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a090f55e49d78b85.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a090f55e49d78b85.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a13e4337d80bb601.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a13e4337d80bb601.verified.txt index 5661e290303..19d7680743f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a13e4337d80bb601.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a13e4337d80bb601.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a17b315d2138f3a5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a17b315d2138f3a5.verified.txt index 824e1893768..31b841aa1d8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a17b315d2138f3a5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a17b315d2138f3a5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a18ee6a99eb155fb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a18ee6a99eb155fb.verified.txt index 139b14e7e74..32750c582c3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a18ee6a99eb155fb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a18ee6a99eb155fb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt index c4016209ea8..ed1c240eb99 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1b09cc31f803ee4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt index e60aa4dbce9..e5439ff3fd2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1d47755ff750dbc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1db8ad08b9c6f0b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1db8ad08b9c6f0b.verified.txt index f783214b411..7b9ff910b69 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1db8ad08b9c6f0b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a1db8ad08b9c6f0b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a20b9596fc19153a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a20b9596fc19153a.verified.txt index 7836c8d8d0d..980bcd3d2ac 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a20b9596fc19153a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a20b9596fc19153a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a21a2853ff5de6d7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a21a2853ff5de6d7.verified.txt index a991035a78f..535cae836ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a21a2853ff5de6d7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a21a2853ff5de6d7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a21a9623a129fce8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a21a9623a129fce8.verified.txt index bc916614e77..0cc26404094 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a21a9623a129fce8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a21a9623a129fce8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt index 4c6f11b1bb8..5bfa4f70cbc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a2a185228d8c2e8c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a38acb77fada9d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a38acb77fada9d38.verified.txt index 5efec083682..5a2eda96647 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a38acb77fada9d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a38acb77fada9d38.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt index 5c48850667c..495dadbbbff 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a39226592ded51a4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a397c68274cdf9e4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a397c68274cdf9e4.verified.txt index 34ab26cb3e9..32a303d85ea 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a397c68274cdf9e4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a397c68274cdf9e4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a449e70dc3829b06.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a449e70dc3829b06.verified.txt index 3897aadc557..1b80e0db1cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a449e70dc3829b06.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a449e70dc3829b06.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a449efdfb252cc09.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a449efdfb252cc09.verified.txt index 1a6cd831446..9171a075936 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a449efdfb252cc09.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a449efdfb252cc09.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a46640b3a2040cbd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a46640b3a2040cbd.verified.txt index 28f621cf5fd..139d2d5b0c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a46640b3a2040cbd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a46640b3a2040cbd.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a487ce53f8fe8e27.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a487ce53f8fe8e27.verified.txt index 07b2c5b734d..75bba679c39 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a487ce53f8fe8e27.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a487ce53f8fe8e27.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a4a8efb4c0321116.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a4a8efb4c0321116.verified.txt index 11dd8817562..c0a64e67156 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a4a8efb4c0321116.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a4a8efb4c0321116.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5279e66910e57f2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5279e66910e57f2.verified.txt index 0f8c858f4f4..cf2e8505893 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5279e66910e57f2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5279e66910e57f2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5285efa9638f31c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5285efa9638f31c.verified.txt index b98e43f572b..1b9873da386 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5285efa9638f31c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5285efa9638f31c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt index 6965d453f14..5146f52df3f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a54637d80474d1eb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5645dc9376f9cfb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5645dc9376f9cfb.verified.txt index 64ed96cd220..3603bc38a11 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5645dc9376f9cfb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5645dc9376f9cfb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5f7c1fc0aa09bb5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5f7c1fc0aa09bb5.verified.txt index 0b9f1922de4..a55d8f0a2c8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5f7c1fc0aa09bb5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a5f7c1fc0aa09bb5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60cf74e50ca74ae.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60cf74e50ca74ae.verified.txt index f10aed7ec6d..1aebbb2f1d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60cf74e50ca74ae.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60cf74e50ca74ae.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt index 71a717b91f3..e82aa602b6b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a60d5d9742196881.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt index 66f115aa4c1..066c911bbdb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a624efe430e681de.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a630fbfb7390a72e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a630fbfb7390a72e.verified.txt index 25adf0fb8f0..fb05a406bd2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a630fbfb7390a72e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a630fbfb7390a72e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt index 3e8e3d23e21..afbd4d6ec28 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a66bed7e68fe176a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6d206a79c0b11bc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6d206a79c0b11bc.verified.txt index e53a2ad53e3..c743d2792bb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6d206a79c0b11bc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6d206a79c0b11bc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6d238c89c6ed62b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6d238c89c6ed62b.verified.txt index 7f470a2c537..c26cb7efb04 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6d238c89c6ed62b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6d238c89c6ed62b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6e13051afa12d80.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6e13051afa12d80.verified.txt index 04492c5d32c..d7cf717d0de 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6e13051afa12d80.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6e13051afa12d80.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6edf3b92f83348b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6edf3b92f83348b.verified.txt index 71aab319262..dbbc70baccc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6edf3b92f83348b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a6edf3b92f83348b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a74ddb475aac1ddd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a74ddb475aac1ddd.verified.txt index cdcaa549196..c385b9bb83c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a74ddb475aac1ddd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a74ddb475aac1ddd.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a74f1e1358ee2cb8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a74f1e1358ee2cb8.verified.txt index d9bb6eb376c..277e8d4b4da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a74f1e1358ee2cb8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a74f1e1358ee2cb8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a777d74ca0dee686.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a777d74ca0dee686.verified.txt index b672d90a383..fc3a46f6463 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a777d74ca0dee686.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a777d74ca0dee686.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a796842c26dc0675.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a796842c26dc0675.verified.txt index ef1d75e0ef2..d973fa841ba 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a796842c26dc0675.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a796842c26dc0675.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a7c7eba5ec3f3cd6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a7c7eba5ec3f3cd6.verified.txt index d8fb279029f..eb68bff47bc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a7c7eba5ec3f3cd6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a7c7eba5ec3f3cd6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a82f26de8832eccf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a82f26de8832eccf.verified.txt index 289230debbd..32544c809fd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a82f26de8832eccf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a82f26de8832eccf.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a8348d8ce5e77a64.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a8348d8ce5e77a64.verified.txt index 227f0ee62bc..d7722781576 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a8348d8ce5e77a64.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a8348d8ce5e77a64.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a892b9f540fb3fbd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a892b9f540fb3fbd.verified.txt index 04f966b3ff3..2fbc74a62a7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a892b9f540fb3fbd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a892b9f540fb3fbd.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a8e0f89f302cf0ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a8e0f89f302cf0ac.verified.txt index 78c47e652a5..acbb3c2e85c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a8e0f89f302cf0ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a8e0f89f302cf0ac.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a92561fae528dd66.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a92561fae528dd66.verified.txt index 7eb7ca138c9..e77b83902ab 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a92561fae528dd66.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a92561fae528dd66.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a9710d6372e0627c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a9710d6372e0627c.verified.txt index 7674223000c..ed6fb9ae2fa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a9710d6372e0627c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a9710d6372e0627c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a9cce7dd1a7552db.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a9cce7dd1a7552db.verified.txt index 58b12cd3e6f..5c75c87af9c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a9cce7dd1a7552db.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a9cce7dd1a7552db.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a9f795c1a4a3dc7e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a9f795c1a4a3dc7e.verified.txt index eb8c6be3925..2061d70ec31 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a9f795c1a4a3dc7e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_a9f795c1a4a3dc7e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa5d6b47e3077133.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa5d6b47e3077133.verified.txt index d2afcc63725..aab718a3528 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa5d6b47e3077133.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa5d6b47e3077133.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt index 1d480184a87..4fd0102d1da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aa6d2a79b976e71d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt index fcebafe29ac..92fdbe8e94d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab37f66cfadaa3e7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab557800adb816a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab557800adb816a0.verified.txt index 196aee1a676..1d04d5fb70d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab557800adb816a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab557800adb816a0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab6c3870d7b072f5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab6c3870d7b072f5.verified.txt index 0172a882497..4c3366a882a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab6c3870d7b072f5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab6c3870d7b072f5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab6d6dac4001b394.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab6d6dac4001b394.verified.txt index 7224e6ce587..69b9fe30dec 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab6d6dac4001b394.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ab6d6dac4001b394.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt index a6373209f59..b3227633bf5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aba5fb5b005587ce.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_abbb1a9c3ca6dda8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_abbb1a9c3ca6dda8.verified.txt index 98ff3e0915e..95e740a662d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_abbb1a9c3ca6dda8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_abbb1a9c3ca6dda8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt index 30dda530cda..7618240b3e7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_accf8049754215f3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_acd834b5bd46cb01.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_acd834b5bd46cb01.verified.txt index bc85bd75cdb..2f34dc2a79e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_acd834b5bd46cb01.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_acd834b5bd46cb01.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ad103b557df72a81.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ad103b557df72a81.verified.txt index 395beb0d196..24397c69b71 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ad103b557df72a81.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ad103b557df72a81.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ad65b0052e93e330.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ad65b0052e93e330.verified.txt index 9f43ccb4ca9..3e5071fe1c5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ad65b0052e93e330.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ad65b0052e93e330.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_adc13c624670af54.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_adc13c624670af54.verified.txt index 9653a9b3562..6a1283136b8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_adc13c624670af54.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_adc13c624670af54.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ae59e98f0cc98878.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ae59e98f0cc98878.verified.txt index e6d610e63f5..7805767c28c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ae59e98f0cc98878.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ae59e98f0cc98878.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ae6a32601cd5623d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ae6a32601cd5623d.verified.txt index c653baeb026..7c53565a534 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ae6a32601cd5623d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ae6a32601cd5623d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ae6c52842acb98e2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ae6c52842acb98e2.verified.txt index c6179d7279b..6b95960402a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ae6c52842acb98e2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ae6c52842acb98e2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aed6013c5d56c9a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aed6013c5d56c9a0.verified.txt index ef4db34ad47..e181a4ba3df 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aed6013c5d56c9a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aed6013c5d56c9a0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_afa80fc141aac249.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_afa80fc141aac249.verified.txt index a5954565943..3f34b850884 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_afa80fc141aac249.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_afa80fc141aac249.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_afa94c0f5d9ed8f8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_afa94c0f5d9ed8f8.verified.txt index d0e35aa3afd..49af33dcade 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_afa94c0f5d9ed8f8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_afa94c0f5d9ed8f8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aff23a0ab1087672.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aff23a0ab1087672.verified.txt index 33ce73e82fc..be122564001 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aff23a0ab1087672.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_aff23a0ab1087672.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b03269d3742c3684.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b03269d3742c3684.verified.txt index 7e0ec29275a..7f0d8eba620 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b03269d3742c3684.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b03269d3742c3684.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b0437731d6257775.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b0437731d6257775.verified.txt index e874f27d03a..1baea30f8dc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b0437731d6257775.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b0437731d6257775.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b08b505cae33e323.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b08b505cae33e323.verified.txt index ccbfa224d35..3c8a455f342 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b08b505cae33e323.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b08b505cae33e323.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b08e0a8ba15a34f9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b08e0a8ba15a34f9.verified.txt index f531c04dab6..5da04c6e811 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b08e0a8ba15a34f9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b08e0a8ba15a34f9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b0953a2773dad710.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b0953a2773dad710.verified.txt index a56883fe1a9..e7721a81519 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b0953a2773dad710.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b0953a2773dad710.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b0bc842726317993.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b0bc842726317993.verified.txt index 07fde6b8f02..b9f354c7532 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b0bc842726317993.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b0bc842726317993.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b102417ccf7cd3ca.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b102417ccf7cd3ca.verified.txt index e6c17cae77c..a8260f1ff31 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b102417ccf7cd3ca.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b102417ccf7cd3ca.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b10b6a612bc75868.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b10b6a612bc75868.verified.txt index af57008e9ac..9157570130f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b10b6a612bc75868.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b10b6a612bc75868.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b11157f641c8cd81.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b11157f641c8cd81.verified.txt index c45a83b94ae..c93136a9300 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b11157f641c8cd81.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b11157f641c8cd81.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b17627ec5b2594b4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b17627ec5b2594b4.verified.txt index 858e1bbc46c..bdcdb26fa65 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b17627ec5b2594b4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b17627ec5b2594b4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt index dd20793ea6e..329bf31a471 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b18da007bdc0ae92.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1983b1b7873e212.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1983b1b7873e212.verified.txt index 6034512a799..0c6e3e29e51 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1983b1b7873e212.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1983b1b7873e212.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt index fd57e5e1c48..7a9b3ab46ec 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1bd7bea4d32bfa0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1d8d300b99f8cdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1d8d300b99f8cdb.verified.txt index 302c0e7f3cb..854a6df280d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1d8d300b99f8cdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b1d8d300b99f8cdb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b227222be18819fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b227222be18819fd.verified.txt index 077ab619e32..ed49566c94b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b227222be18819fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b227222be18819fd.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b271ce3dac5c3deb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b271ce3dac5c3deb.verified.txt index d5924fddf5b..981bc36edde 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b271ce3dac5c3deb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b271ce3dac5c3deb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b298d0292072722a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b298d0292072722a.verified.txt index b4ab8ec441c..246a9ff1eb9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b298d0292072722a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b298d0292072722a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b2b9db35e12a78e5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b2b9db35e12a78e5.verified.txt index f3e35d62d7f..764f2740645 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b2b9db35e12a78e5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b2b9db35e12a78e5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b2eca82355c60ed5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b2eca82355c60ed5.verified.txt index 532a18cebd1..897d4202413 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b2eca82355c60ed5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b2eca82355c60ed5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt index 62ebd210292..8103e708069 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b31a24b3f97f3c03.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b3339b84ff0fa2a5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b3339b84ff0fa2a5.verified.txt index 8202b985fe2..d8c6dde8939 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b3339b84ff0fa2a5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b3339b84ff0fa2a5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b33796c3e192797d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b33796c3e192797d.verified.txt index 9dc231776e9..9d1a2936c5c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b33796c3e192797d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b33796c3e192797d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b3a682de0c41d5e9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b3a682de0c41d5e9.verified.txt index 3723893c8b9..9ae1f4993e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b3a682de0c41d5e9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b3a682de0c41d5e9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b3cc198c0e6f40e2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b3cc198c0e6f40e2.verified.txt index 988efcc65ea..0096bdb01eb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b3cc198c0e6f40e2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b3cc198c0e6f40e2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt index 6ba1e357611..1662bc30156 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b40ebee9a376a06f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b4e74cdeef5dcc46.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b4e74cdeef5dcc46.verified.txt index c2f97ec4731..a74b6e39cb8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b4e74cdeef5dcc46.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b4e74cdeef5dcc46.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5d7f04a9c4666df.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5d7f04a9c4666df.verified.txt index a7505c18d3a..66768747d6b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5d7f04a9c4666df.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5d7f04a9c4666df.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt index 9f307c666f1..596ed15b491 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b5ef80563d878db0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6340dba18f32d03.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6340dba18f32d03.verified.txt index dd309ba0005..6629d7d6fd6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6340dba18f32d03.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6340dba18f32d03.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b669a14f6b612d77.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b669a14f6b612d77.verified.txt index 75eedeb57f7..118898f2aa8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b669a14f6b612d77.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b669a14f6b612d77.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6ab96abbec2894e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6ab96abbec2894e.verified.txt index 478abea7b98..77a2712d117 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6ab96abbec2894e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6ab96abbec2894e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6bcfcc767bf8aa8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6bcfcc767bf8aa8.verified.txt index a6efabd3cee..97f93aae44d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6bcfcc767bf8aa8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6bcfcc767bf8aa8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6ef6b672f0fd098.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6ef6b672f0fd098.verified.txt index 831b81a185b..6c90cd12a37 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6ef6b672f0fd098.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b6ef6b672f0fd098.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b77c5ff0006e8f97.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b77c5ff0006e8f97.verified.txt index 6e06494c707..258231d4433 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b77c5ff0006e8f97.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b77c5ff0006e8f97.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b7ac0bb3daa0fe51.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b7ac0bb3daa0fe51.verified.txt index 7769792545e..72125dc8073 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b7ac0bb3daa0fe51.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b7ac0bb3daa0fe51.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt index 3cd9bdf9401..129a44a6805 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8bebaeda49a0b9d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8e44296d5035084.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8e44296d5035084.verified.txt index 54986a6b3c8..db3295481f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8e44296d5035084.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b8e44296d5035084.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt index 00410b40351..404f1dcd43e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b92b2819d6600f42.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9302ddc3c71a56c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9302ddc3c71a56c.verified.txt index b0cee29989f..82338770ff4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9302ddc3c71a56c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9302ddc3c71a56c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b93d7e67828d46d0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b93d7e67828d46d0.verified.txt index d68b0b75e52..7341ad34296 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b93d7e67828d46d0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b93d7e67828d46d0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt index a18355fabe3..a32c676bf10 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b96e69acc89f6b8c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt index e1fcf54329e..395770d85c4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b989fabae157647b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b99c01fc4cc25050.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b99c01fc4cc25050.verified.txt index bf83189e9c7..83070278992 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b99c01fc4cc25050.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b99c01fc4cc25050.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b99fd451aa935623.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b99fd451aa935623.verified.txt index 1ca97505d5e..774e9def05d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b99fd451aa935623.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b99fd451aa935623.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b99fe093c03dcc56.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b99fe093c03dcc56.verified.txt index d6f7595ccd2..a828cf8003b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b99fe093c03dcc56.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b99fe093c03dcc56.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt index 46ace9e7d46..b0261f6c072 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9cbca8c3d93931d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9fe67bd137c8480.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9fe67bd137c8480.verified.txt index a406e692f5d..09a4d336761 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9fe67bd137c8480.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_b9fe67bd137c8480.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba4e189b80e92f49.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba4e189b80e92f49.verified.txt index 41a1a36f283..5eea0848054 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba4e189b80e92f49.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba4e189b80e92f49.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt index 11199cd3ff3..e9fda620dfc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ba5f0c9f4a062315.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bacbc0ddaffd2c7c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bacbc0ddaffd2c7c.verified.txt index 462499384e0..132e5c27112 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bacbc0ddaffd2c7c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bacbc0ddaffd2c7c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bb059858b3a4dd62.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bb059858b3a4dd62.verified.txt index 4bcc9715154..0e247ebe41a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bb059858b3a4dd62.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bb059858b3a4dd62.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bb317c7fca3ef64d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bb317c7fca3ef64d.verified.txt index 73f2721c92f..648c4bb892c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bb317c7fca3ef64d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bb317c7fca3ef64d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bb422f11df967bb1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bb422f11df967bb1.verified.txt index 50d2c1489b5..76fdf52ec96 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bb422f11df967bb1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bb422f11df967bb1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bbe2828aa2860386.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bbe2828aa2860386.verified.txt index acac0931dec..01ff8150c80 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bbe2828aa2860386.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bbe2828aa2860386.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bcdf6037107e346c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bcdf6037107e346c.verified.txt index ab568c57585..dc6c5618316 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bcdf6037107e346c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bcdf6037107e346c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bcec9e643465de10.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bcec9e643465de10.verified.txt index ecaa60c8406..4970890cba4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bcec9e643465de10.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bcec9e643465de10.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd113df7fb12fbbf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd113df7fb12fbbf.verified.txt index 839388922d3..07c2549672d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd113df7fb12fbbf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd113df7fb12fbbf.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd22691af6b80ce1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd22691af6b80ce1.verified.txt index 92314379b53..a14ae468ee3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd22691af6b80ce1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd22691af6b80ce1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd322b92a9f41865.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd322b92a9f41865.verified.txt index 452be48bd1c..a0b703dcc18 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd322b92a9f41865.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd322b92a9f41865.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd43f6d21bfce307.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd43f6d21bfce307.verified.txt index 0edf9aacce1..1346a7b3256 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd43f6d21bfce307.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bd43f6d21bfce307.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt index 61e8e9b9111..1899a186af4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bda82dcc9f2af714.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt index eccec144a3c..286e37ba7e3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be36f5676d91428e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be413772c825426a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be413772c825426a.verified.txt index 6070e8e6ab7..a441665ca61 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be413772c825426a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be413772c825426a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be66c192b4112576.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be66c192b4112576.verified.txt index edc48924440..d55a57004a5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be66c192b4112576.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be66c192b4112576.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be84d2974cc58cd0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be84d2974cc58cd0.verified.txt index 72b4ae9cdca..67b197abe3e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be84d2974cc58cd0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be84d2974cc58cd0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be9847c63eafbac8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be9847c63eafbac8.verified.txt index fa53fa5f229..d0361021519 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be9847c63eafbac8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_be9847c63eafbac8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bea14fe938cd2ea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bea14fe938cd2ea5.verified.txt index 8db24856f80..c7c65c79c73 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bea14fe938cd2ea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bea14fe938cd2ea5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bedf407f53289876.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bedf407f53289876.verified.txt index 22bdb086ca8..d59d88be966 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bedf407f53289876.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bedf407f53289876.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bf299a696eead5d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bf299a696eead5d4.verified.txt index d739ba6ce38..1a4ebe4b7b4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bf299a696eead5d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bf299a696eead5d4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bf604717274c31f2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bf604717274c31f2.verified.txt index f932c1e35eb..951f8075d59 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bf604717274c31f2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bf604717274c31f2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bf904685b1635430.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bf904685b1635430.verified.txt index aedd052f51e..c9bbae1cb07 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bf904685b1635430.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bf904685b1635430.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bfa8c08e086d1079.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bfa8c08e086d1079.verified.txt index 746e9014c6e..689f5758899 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bfa8c08e086d1079.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bfa8c08e086d1079.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bfc19447aaa8fa36.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bfc19447aaa8fa36.verified.txt index 341e731d156..db0b4759f3a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bfc19447aaa8fa36.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_bfc19447aaa8fa36.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt index c5bfccacbd8..d2432bc79fa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c00d48ce7c74dbfa.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c05e9dcf2f3c52b2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c05e9dcf2f3c52b2.verified.txt index e6ec9f02a58..41be92591aa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c05e9dcf2f3c52b2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c05e9dcf2f3c52b2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c06a091774709463.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c06a091774709463.verified.txt index bd2577d0c6a..4787b32e097 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c06a091774709463.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c06a091774709463.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c06a3317515dd82f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c06a3317515dd82f.verified.txt index 561b3d8d193..b3d0044cd50 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c06a3317515dd82f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c06a3317515dd82f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c06c38d61292585c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c06c38d61292585c.verified.txt index 854efcbb69a..ab6b4589664 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c06c38d61292585c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c06c38d61292585c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c0727a9dd03483c0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c0727a9dd03483c0.verified.txt index a58a106fdc9..009d17b2e33 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c0727a9dd03483c0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c0727a9dd03483c0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c0787b8410370563.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c0787b8410370563.verified.txt index a794631fd40..6a9f7a902c8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c0787b8410370563.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c0787b8410370563.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c0e27670f6aaf784.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c0e27670f6aaf784.verified.txt index de7dae89e74..bf50a329900 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c0e27670f6aaf784.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c0e27670f6aaf784.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c10dac9ba8e7346a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c10dac9ba8e7346a.verified.txt index 6a4d7eda94c..321526a9c3a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c10dac9ba8e7346a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c10dac9ba8e7346a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt index ad6f74c2232..dde9ffed524 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c11cd2165f60bbaf.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt index 05bac99292b..6e39c392fef 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1c9d3ac4859ee8e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1ef5e08f49adde8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1ef5e08f49adde8.verified.txt index 645ac5e2aca..ab2acfeebb8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1ef5e08f49adde8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c1ef5e08f49adde8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c277f0a19b7b5653.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c277f0a19b7b5653.verified.txt index 372e789bf9e..b475e0931cc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c277f0a19b7b5653.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c277f0a19b7b5653.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c288932f9ffc3e6c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c288932f9ffc3e6c.verified.txt index 5a0fd5be709..e718f4e9047 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c288932f9ffc3e6c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c288932f9ffc3e6c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt index e4a8546b9f1..6aafe78e2f3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c29ddc1f6001050b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt index e029383b666..fbd56229b18 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c2b5fe975d4c1e4d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c3dc723beef1fce7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c3dc723beef1fce7.verified.txt index 2ddd26e3485..57e5bbbea24 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c3dc723beef1fce7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c3dc723beef1fce7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4232bde52281574.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4232bde52281574.verified.txt index 111a70b11d3..81a5805cbf9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4232bde52281574.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4232bde52281574.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c453cd131112230f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c453cd131112230f.verified.txt index 7f6fa76931a..0672368dde9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c453cd131112230f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c453cd131112230f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c46a6db053398641.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c46a6db053398641.verified.txt index 5e7ccabaa7e..fd591de1457 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c46a6db053398641.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c46a6db053398641.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt index e60a7a8eced..3cbc7a21bf9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4a522bebc04b8c4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4b7946411c5e27c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4b7946411c5e27c.verified.txt index d64930d7653..c834aed9016 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4b7946411c5e27c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4b7946411c5e27c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4c90437940e756d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4c90437940e756d.verified.txt index 6b724e51838..a63311d1d0b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4c90437940e756d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4c90437940e756d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4f3f4ae3c59c2e3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4f3f4ae3c59c2e3.verified.txt index 4d2e5d9b0dd..4d4e04f7431 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4f3f4ae3c59c2e3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4f3f4ae3c59c2e3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt index 64ca517850b..b539a5c35b1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c4fe9eb36be08aa1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c50fe9b0ce9d8735.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c50fe9b0ce9d8735.verified.txt index a1f62f597d6..9dadb57cefb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c50fe9b0ce9d8735.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c50fe9b0ce9d8735.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c512bae79c0fbcc7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c512bae79c0fbcc7.verified.txt index 2516994a044..5dbed64dc7d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c512bae79c0fbcc7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c512bae79c0fbcc7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c528e3f2e01a5759.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c528e3f2e01a5759.verified.txt index b33a51c6ded..b71bab2e013 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c528e3f2e01a5759.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c528e3f2e01a5759.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5b6fe8ad21b79f2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5b6fe8ad21b79f2.verified.txt index 5c1cd398b25..40802c9f8ef 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5b6fe8ad21b79f2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5b6fe8ad21b79f2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5bd9dcdf03b2dc2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5bd9dcdf03b2dc2.verified.txt index 021bd364c9d..28c2c8aed54 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5bd9dcdf03b2dc2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5bd9dcdf03b2dc2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5dba07fa2fa4277.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5dba07fa2fa4277.verified.txt index 57ac5f1962b..29fc841404f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5dba07fa2fa4277.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5dba07fa2fa4277.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5e837d745d45067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5e837d745d45067.verified.txt index ade18100ecb..c7c8ca11799 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5e837d745d45067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c5e837d745d45067.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c6bb85518edce940.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c6bb85518edce940.verified.txt index be19093af0c..12a8481f047 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c6bb85518edce940.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c6bb85518edce940.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c71202fc43157eca.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c71202fc43157eca.verified.txt index 8f81429c248..ab0d343d0a6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c71202fc43157eca.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c71202fc43157eca.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c729e69e40b974d4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c729e69e40b974d4.verified.txt index 6f8de0cce73..8cb88fd63f4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c729e69e40b974d4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c729e69e40b974d4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c73a726a6e16643f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c73a726a6e16643f.verified.txt index f265501de09..f0e2600f984 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c73a726a6e16643f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c73a726a6e16643f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt index eecb0efe03f..0c5c2a5bea3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7471f617ca8fd47.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c75435bf65655137.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c75435bf65655137.verified.txt index 2f2b3b3a8d2..3aa00f0bca7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c75435bf65655137.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c75435bf65655137.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7dbd32ca29fab23.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7dbd32ca29fab23.verified.txt index 8dcb060b430..2fd409bcc47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7dbd32ca29fab23.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c7dbd32ca29fab23.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8154863dce70d9c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8154863dce70d9c.verified.txt index 4dff816e4f8..1d7e8ab0f98 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8154863dce70d9c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8154863dce70d9c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt index bef9cee9ce6..8d97dc52e13 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c82dcabd58f1b178.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt index 2a3e246f703..fa3a2effe69 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c84077e206d1f99b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c841a8bf41b79d61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c841a8bf41b79d61.verified.txt index cfe59cccdab..3255e57c45f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c841a8bf41b79d61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c841a8bf41b79d61.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c86bc06ac3e471f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c86bc06ac3e471f3.verified.txt index f03b9f935c9..0babee3bdf5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c86bc06ac3e471f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c86bc06ac3e471f3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8d3f13f09c4cba2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8d3f13f09c4cba2.verified.txt index 9305df6d580..aa002def61f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8d3f13f09c4cba2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8d3f13f09c4cba2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8ec49e619492f16.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8ec49e619492f16.verified.txt index cc5d418de06..7f3a11350a4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8ec49e619492f16.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8ec49e619492f16.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8edc11e7b3a0937.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8edc11e7b3a0937.verified.txt index ae7166f1322..c2df66cfc03 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8edc11e7b3a0937.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c8edc11e7b3a0937.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c91fed278cff06b7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c91fed278cff06b7.verified.txt index 30d2fdb7198..1a1f2be3e4d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c91fed278cff06b7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c91fed278cff06b7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9225241b59d840e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9225241b59d840e.verified.txt index d12576c1bd9..7203ab38fc4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9225241b59d840e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9225241b59d840e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c954cd8a0d77017d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c954cd8a0d77017d.verified.txt index a0dba125896..4616a92abe9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c954cd8a0d77017d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c954cd8a0d77017d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt index 5d668b89e38..050aa0e8bf4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c987aa4c35829f13.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt index 3c8d0814681..ad2fded8ac4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9917fb063d2ccf1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9946dff3951db97.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9946dff3951db97.verified.txt index 9d9689bc38a..b97ecfab6ff 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9946dff3951db97.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9946dff3951db97.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9954182de948eca.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9954182de948eca.verified.txt index 6e9c2f2d44c..c1ef5c47439 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9954182de948eca.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9954182de948eca.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c99cb0de17c1cfa5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c99cb0de17c1cfa5.verified.txt index cd682b2074e..f237887a157 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c99cb0de17c1cfa5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c99cb0de17c1cfa5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9a4b628a007cf9c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9a4b628a007cf9c.verified.txt index 07e204568bd..791b35ca509 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9a4b628a007cf9c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9a4b628a007cf9c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9b1906d396e911c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9b1906d396e911c.verified.txt index f1e1307593e..8fe085ea433 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9b1906d396e911c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9b1906d396e911c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9c1357248b5681f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9c1357248b5681f.verified.txt index 6224aebb4f0..75ebde4fb7f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9c1357248b5681f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9c1357248b5681f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9c47221a0a929b1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9c47221a0a929b1.verified.txt index 6d72e7566c5..d2e1815a45f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9c47221a0a929b1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9c47221a0a929b1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9d2bb455edc7f63.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9d2bb455edc7f63.verified.txt index 1c45cfc04ba..3d71b281b41 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9d2bb455edc7f63.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_c9d2bb455edc7f63.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca0ee81f642af861.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca0ee81f642af861.verified.txt index 358ead47c14..9023bc5d343 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca0ee81f642af861.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca0ee81f642af861.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt index 590991d4c9f..72a010c43a9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca1e82fccc708e60.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca2cf956d0628a4e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca2cf956d0628a4e.verified.txt index 5ba0995226e..26cbdf79055 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca2cf956d0628a4e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca2cf956d0628a4e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4a058c10d84f7a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4a058c10d84f7a.verified.txt index 3e0792dfb4b..844124eb362 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4a058c10d84f7a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4a058c10d84f7a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt index 63bb5fbcd4b..ea4a64a9524 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca4ee236342bfea5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca77d52a3f4c58cf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca77d52a3f4c58cf.verified.txt index feb0ccd2e8f..1c924c6e14a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca77d52a3f4c58cf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca77d52a3f4c58cf.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca7b5ac10d54b826.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca7b5ac10d54b826.verified.txt index 767a13693a1..32ef840c705 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca7b5ac10d54b826.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ca7b5ac10d54b826.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cacf1ce1efd2b9ae.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cacf1ce1efd2b9ae.verified.txt index 31972b584eb..fbe55cce972 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cacf1ce1efd2b9ae.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cacf1ce1efd2b9ae.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt index 9b3839d61c1..0a05ad6e72e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb1c98c311689647.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb391c721779c6ce.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb391c721779c6ce.verified.txt index e7025cf86e6..37aacd2de61 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb391c721779c6ce.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb391c721779c6ce.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb424edfb24483ee.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb424edfb24483ee.verified.txt index 4e257316e51..3ee253cb306 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb424edfb24483ee.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cb424edfb24483ee.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cbd46a6612dba294.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cbd46a6612dba294.verified.txt index 69dfa2b5cd3..f8b01e74b8e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cbd46a6612dba294.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cbd46a6612dba294.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cc34f458ffcb8a14.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cc34f458ffcb8a14.verified.txt index 8c3a1e17648..a6f07c13f6a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cc34f458ffcb8a14.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cc34f458ffcb8a14.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ccf48e805e039fd0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ccf48e805e039fd0.verified.txt index fe96e483378..95c1b98a911 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ccf48e805e039fd0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ccf48e805e039fd0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cd2c57a2a56ee290.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cd2c57a2a56ee290.verified.txt index 86ea23a544d..8f4871305c9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cd2c57a2a56ee290.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cd2c57a2a56ee290.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cd6519e005201bbc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cd6519e005201bbc.verified.txt index 11f21b73bef..5dfad1b24ba 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cd6519e005201bbc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cd6519e005201bbc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cd96bd32f1659839.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cd96bd32f1659839.verified.txt index 0fd7ac5f21e..10be04c2501 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cd96bd32f1659839.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cd96bd32f1659839.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce13a09934485df1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce13a09934485df1.verified.txt index 6fc9a9f77bc..2324befbafa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce13a09934485df1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce13a09934485df1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt index a04ba45d175..f93af432157 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce617d3138e25438.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce788e453ea2147e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce788e453ea2147e.verified.txt index 514034c6672..5df8d4885a2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce788e453ea2147e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce788e453ea2147e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt index a800699d4e3..473deb93ab8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ce939348f1017824.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cef80047e475246e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cef80047e475246e.verified.txt index 8e0d22568e3..9f99c72c9b6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cef80047e475246e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cef80047e475246e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cf1fd0660620a6af.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cf1fd0660620a6af.verified.txt index a1d26c50fef..70ccf4befa3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cf1fd0660620a6af.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cf1fd0660620a6af.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cf54b9d469656cd2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cf54b9d469656cd2.verified.txt index 891b79eb02a..b3ff3be5251 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cf54b9d469656cd2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cf54b9d469656cd2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cf8e6dbf384f7a98.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cf8e6dbf384f7a98.verified.txt index 231c32cdae7..c079f01eb01 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cf8e6dbf384f7a98.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cf8e6dbf384f7a98.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cfa9c25e4e066413.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cfa9c25e4e066413.verified.txt index e16c490c8e4..6f18e4766d0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cfa9c25e4e066413.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_cfa9c25e4e066413.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0b0dc32687d30fa.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0b0dc32687d30fa.verified.txt index d0e0005345d..6bcde9b51ec 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0b0dc32687d30fa.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0b0dc32687d30fa.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt index f21192c4001..4c6bec6fe3a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d0cce4d493d71942.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d121f938867a4aff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d121f938867a4aff.verified.txt index 66a4f643481..44e13894be6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d121f938867a4aff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d121f938867a4aff.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt index 37a99052155..345b6564849 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1354de3e9fae8f4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1b4474334c5117d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1b4474334c5117d.verified.txt index aeca791fc95..a54fb8060fd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1b4474334c5117d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d1b4474334c5117d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d216ef0460c3a7b4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d216ef0460c3a7b4.verified.txt index cb239737911..00960dc2ae2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d216ef0460c3a7b4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d216ef0460c3a7b4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d21dbb3a099da395.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d21dbb3a099da395.verified.txt index 90d9b541a39..c61287421c2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d21dbb3a099da395.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d21dbb3a099da395.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt index d73dbbd3f45..58d91109f6e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2472ba47fe70f93.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt index 317fdadf006..342c09f9a17 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d2562fefd66b1f02.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt index b605a9f3a0f..f927f7ad5b4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d35e91e202b9a7f3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d38d4411139602de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d38d4411139602de.verified.txt index 0faa9e8e54f..597a6dc79c5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d38d4411139602de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d38d4411139602de.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d3f9fcab39089b82.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d3f9fcab39089b82.verified.txt index 4d947fbd1de..1c6229aeab2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d3f9fcab39089b82.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d3f9fcab39089b82.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt index 6dbd7110573..073f93c8a58 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4627929e7d82733.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d47072e0a523c117.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d47072e0a523c117.verified.txt index 3d0cc29ca2d..230b713e5a0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d47072e0a523c117.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d47072e0a523c117.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d486f72aa5acfe2f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d486f72aa5acfe2f.verified.txt index edd9e82eb2b..fe7f3a404ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d486f72aa5acfe2f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d486f72aa5acfe2f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48a31a11778fec5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48a31a11778fec5.verified.txt index 00d90be9a56..8161e46d132 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48a31a11778fec5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48a31a11778fec5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt index 44a0df50118..b13ecce9c7a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d48bf6cf87134eac.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d49e85834d3ae9e1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d49e85834d3ae9e1.verified.txt index 5873b3d6fc6..5e2d953507c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d49e85834d3ae9e1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d49e85834d3ae9e1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4be99e310c5484e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4be99e310c5484e.verified.txt index de9bb301fde..e389cedeb0d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4be99e310c5484e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d4be99e310c5484e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt index 3d86e354b8e..9d873718be8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d512997de79bdb40.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d59853a76e29ffb5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d59853a76e29ffb5.verified.txt index cecdad0d826..6260046b461 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d59853a76e29ffb5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d59853a76e29ffb5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt index b9368566f99..79887006d69 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d5d8bc5e8c982f99.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d63cf40f531399a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d63cf40f531399a1.verified.txt index 7b238b3308c..9fb654021d0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d63cf40f531399a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d63cf40f531399a1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt index fbae1ef44e8..607be63460c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d663737b6d1af602.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d73b823f27173add.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d73b823f27173add.verified.txt index a5f1bcb79f5..806affd0583 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d73b823f27173add.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d73b823f27173add.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d77ba88ce2553d9b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d77ba88ce2553d9b.verified.txt index 0a6ce25aef6..38847ea6f2e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d77ba88ce2553d9b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d77ba88ce2553d9b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d794093c16027d04.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d794093c16027d04.verified.txt index d7a701707b8..910c97c0b4f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d794093c16027d04.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d794093c16027d04.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d7ffcf75a79ab366.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d7ffcf75a79ab366.verified.txt index 17216b17cd4..bcc3068e657 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d7ffcf75a79ab366.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d7ffcf75a79ab366.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d87ea6b71573f2ac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d87ea6b71573f2ac.verified.txt index b99b8af0b77..b95660a3bb2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d87ea6b71573f2ac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d87ea6b71573f2ac.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt index ddb094861df..8c7b5504fa3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d883246e5727ab30.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d89db75876ceb58d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d89db75876ceb58d.verified.txt index c035feb1d63..38e6fdf6d73 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d89db75876ceb58d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d89db75876ceb58d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt index 8574eeec608..c238f0f375c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d8ae2ca1009d50dd.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d91efac105621c68.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d91efac105621c68.verified.txt index 7e616cd0b80..a9a123c968a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d91efac105621c68.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d91efac105621c68.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d932f99c8f13a13f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d932f99c8f13a13f.verified.txt index e1698cd1bda..b6a6738d49f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d932f99c8f13a13f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d932f99c8f13a13f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d96570e7fbd41cd3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d96570e7fbd41cd3.verified.txt index 7c9474e02bf..c73df3a1cc2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d96570e7fbd41cd3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d96570e7fbd41cd3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d9aa484e68a7fccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d9aa484e68a7fccb.verified.txt index 5f3866c044b..07f7e1c0595 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d9aa484e68a7fccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_d9aa484e68a7fccb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da22f3089f5b0814.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da22f3089f5b0814.verified.txt index 11d67b80831..f2665d3bc99 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da22f3089f5b0814.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da22f3089f5b0814.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da617283139df772.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da617283139df772.verified.txt index bc9c5e57a5d..64baadc950a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da617283139df772.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da617283139df772.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da6789b08b169f9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da6789b08b169f9d.verified.txt index e09867b53c5..86c8a54591c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da6789b08b169f9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da6789b08b169f9d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt index bbe815e418b..fad019c9fd3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da8897ebb8784e2d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da96115322311483.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da96115322311483.verified.txt index 5c5c1ad2f94..31d88e03f0a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da96115322311483.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da96115322311483.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da9b24b8e9bc0583.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da9b24b8e9bc0583.verified.txt index 45917ba5c24..b94a670494c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da9b24b8e9bc0583.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_da9b24b8e9bc0583.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dafd02a6fbcefccc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dafd02a6fbcefccc.verified.txt index cda988f9231..fe94cf20777 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dafd02a6fbcefccc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dafd02a6fbcefccc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_db00c53fe732922e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_db00c53fe732922e.verified.txt index b0495395797..d79d588d6b4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_db00c53fe732922e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_db00c53fe732922e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_db4b0acf25630ea7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_db4b0acf25630ea7.verified.txt index bef13314971..4693e604f2c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_db4b0acf25630ea7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_db4b0acf25630ea7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbaa935a1190f66f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbaa935a1190f66f.verified.txt index 1695911fb44..e3d88ecac2a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbaa935a1190f66f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbaa935a1190f66f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbb104c413d6321f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbb104c413d6321f.verified.txt index ee3fcb2ec8d..0b8456f9a23 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbb104c413d6321f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbb104c413d6321f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbe0f975e2bc684c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbe0f975e2bc684c.verified.txt index 119a2889809..931fda2f47a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbe0f975e2bc684c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbe0f975e2bc684c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbf64ac344cb4fe7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbf64ac344cb4fe7.verified.txt index 88a21772656..7b36b710a9f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbf64ac344cb4fe7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dbf64ac344cb4fe7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt index f2b14f468cc..87cf27f940b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dc0886a61829b0fd.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dcc0b7ed2e5a6e29.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dcc0b7ed2e5a6e29.verified.txt index 218910d986c..9659c848512 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dcc0b7ed2e5a6e29.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dcc0b7ed2e5a6e29.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dccaaac6244b115f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dccaaac6244b115f.verified.txt index 27783c07721..26048cd48ca 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dccaaac6244b115f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dccaaac6244b115f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt index eb366cc2ce7..ce47ff40833 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dd0ee5b0c8cd3a94.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ddd86eda076cf4c0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ddd86eda076cf4c0.verified.txt index cefcc72df10..20eb610332a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ddd86eda076cf4c0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ddd86eda076cf4c0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ddeff71a9b3cf261.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ddeff71a9b3cf261.verified.txt index 56a8db3c7b6..60ab22c8e47 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ddeff71a9b3cf261.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ddeff71a9b3cf261.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_de24f0aabba674d3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_de24f0aabba674d3.verified.txt index 16871c28f9e..a88984da48a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_de24f0aabba674d3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_de24f0aabba674d3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_de7b1899726e8402.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_de7b1899726e8402.verified.txt index 153667c0940..cad9ead174d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_de7b1899726e8402.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_de7b1899726e8402.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dec85c1ed5439c19.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dec85c1ed5439c19.verified.txt index af2d02a449b..ed5821bc176 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dec85c1ed5439c19.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dec85c1ed5439c19.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt index 007cfeebcbf..ca49576f8f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_df82e6ddad53d5de.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt index 178cf4af383..25ba00df1a2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfa31d30d8934ccb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfdeb98c15757187.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfdeb98c15757187.verified.txt index 22d8cd1287c..01ac6805532 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfdeb98c15757187.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_dfdeb98c15757187.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e0045c5b324a8c38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e0045c5b324a8c38.verified.txt index 28df9fe5ed8..a7828425222 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e0045c5b324a8c38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e0045c5b324a8c38.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt index 53682891255..adf76cbd1f6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e01fe49115fcf6b0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e03eccfc917d77f8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e03eccfc917d77f8.verified.txt index 1e09ee9bf62..18dcde7de2b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e03eccfc917d77f8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e03eccfc917d77f8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e06ddd14adcd3568.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e06ddd14adcd3568.verified.txt index e138af023f6..e4c02cfd14f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e06ddd14adcd3568.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e06ddd14adcd3568.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e0b1500cada1c6b4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e0b1500cada1c6b4.verified.txt index ed063ba60f4..89661485092 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e0b1500cada1c6b4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e0b1500cada1c6b4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e0bfaae7c3781b2e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e0bfaae7c3781b2e.verified.txt index cdf6e669388..df1cbe96e84 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e0bfaae7c3781b2e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e0bfaae7c3781b2e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e110eadf0cd68359.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e110eadf0cd68359.verified.txt index d73df37737c..eb775b2310b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e110eadf0cd68359.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e110eadf0cd68359.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e11643ae26f075e8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e11643ae26f075e8.verified.txt index 5b149a958bf..e998d48703d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e11643ae26f075e8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e11643ae26f075e8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e12336a23be92453.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e12336a23be92453.verified.txt index cb974853618..5a708fd6575 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e12336a23be92453.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e12336a23be92453.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e126575458ee4aa1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e126575458ee4aa1.verified.txt index a20e3c2ea01..fb3c23068a6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e126575458ee4aa1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e126575458ee4aa1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e13506a79bdcfcd2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e13506a79bdcfcd2.verified.txt index 9a0adfe1d0e..f3337e1f33d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e13506a79bdcfcd2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e13506a79bdcfcd2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e16cfd70ba60d700.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e16cfd70ba60d700.verified.txt index 9b4c4afa007..780a9fac61a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e16cfd70ba60d700.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e16cfd70ba60d700.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt index b129242b52b..f940485f9ab 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e1e6dac3de0acebe.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e21f2a2278bb2fc7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e21f2a2278bb2fc7.verified.txt index 13cdc61a644..072fb2ceacc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e21f2a2278bb2fc7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e21f2a2278bb2fc7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e224d796c25ba863.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e224d796c25ba863.verified.txt index f9525fa452a..d2281a6a137 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e224d796c25ba863.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e224d796c25ba863.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e249608ddaa5b9a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e249608ddaa5b9a2.verified.txt index 81992baa3cf..cd9bd1e7c86 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e249608ddaa5b9a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e249608ddaa5b9a2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt index 9af2fd0ed96..f3c1d9773b1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e277854a2c4a06a1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e30d5add6ea73af6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e30d5add6ea73af6.verified.txt index 89b2ff74972..d31a96970bd 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e30d5add6ea73af6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e30d5add6ea73af6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e34feb378629efb2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e34feb378629efb2.verified.txt index 762c050ff51..49989e2e139 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e34feb378629efb2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e34feb378629efb2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt index ad86bdb229c..f5d0bcc6863 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e387c177c339a656.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e3cf4fcd9442043e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e3cf4fcd9442043e.verified.txt index f45a8385efe..5e3ff5524d9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e3cf4fcd9442043e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e3cf4fcd9442043e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e3cfa61ca18d8d38.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e3cfa61ca18d8d38.verified.txt index 01f219762ba..2f8a5f83a41 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e3cfa61ca18d8d38.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e3cfa61ca18d8d38.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt index caa3d22dfb3..c1a5db2d954 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e40acbf5919b0649.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e4147acf90bd6ae1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e4147acf90bd6ae1.verified.txt index 40e2806c2b3..b33b71f83e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e4147acf90bd6ae1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e4147acf90bd6ae1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e4157ded2142a665.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e4157ded2142a665.verified.txt index 921fe02f977..a7a8658d900 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e4157ded2142a665.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e4157ded2142a665.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e419c934080154d3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e419c934080154d3.verified.txt index 3b1e27da775..a0f28092514 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e419c934080154d3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e419c934080154d3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e43482890f0efed9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e43482890f0efed9.verified.txt index 281969fb089..9f01998475f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e43482890f0efed9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e43482890f0efed9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e4553d89cbb731f4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e4553d89cbb731f4.verified.txt index a59588207f6..47f719d0172 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e4553d89cbb731f4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e4553d89cbb731f4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt index e532cb28065..5d1e89e7e2d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e467068e6ca0ff61.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e50da49a47dc87cc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e50da49a47dc87cc.verified.txt index 7a5e70ed02f..485de7965ad 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e50da49a47dc87cc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e50da49a47dc87cc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt index 623170eb94f..baa86f15572 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e53aaaec90a49199.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e56f31bd449409bf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e56f31bd449409bf.verified.txt index e92e126c8b4..e9f20d3be79 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e56f31bd449409bf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e56f31bd449409bf.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e57a80e69d260d46.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e57a80e69d260d46.verified.txt index 7f04bb5b8a2..22412787470 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e57a80e69d260d46.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e57a80e69d260d46.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e57ece18706c5547.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e57ece18706c5547.verified.txt index 2356a5aef77..abb56cb065a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e57ece18706c5547.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e57ece18706c5547.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e5f56ba207491782.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e5f56ba207491782.verified.txt index d12b72040d5..e5ada5e9889 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e5f56ba207491782.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e5f56ba207491782.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6240b1fb5be6acf.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6240b1fb5be6acf.verified.txt index 636285bf799..73ad6713528 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6240b1fb5be6acf.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6240b1fb5be6acf.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e63eab4bf226b92f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e63eab4bf226b92f.verified.txt index 5ccbcefb052..432f95397f0 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e63eab4bf226b92f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e63eab4bf226b92f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e64b094c6a5c5102.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e64b094c6a5c5102.verified.txt index 4d2e4d27f78..6bebe5505ce 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e64b094c6a5c5102.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e64b094c6a5c5102.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e659a4068e7e31c9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e659a4068e7e31c9.verified.txt index 6902f899a29..df96bee3b73 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e659a4068e7e31c9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e659a4068e7e31c9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e664681d0d43d7f0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e664681d0d43d7f0.verified.txt index fa8be1dca28..3805acbf175 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e664681d0d43d7f0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e664681d0d43d7f0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6902083efb6da26.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6902083efb6da26.verified.txt index 63596d94377..20cc3f8b357 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6902083efb6da26.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6902083efb6da26.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6bff376febb2d96.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6bff376febb2d96.verified.txt index 60047d6e35b..f38e10f1259 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6bff376febb2d96.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6bff376febb2d96.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6eadfbb315ade9f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6eadfbb315ade9f.verified.txt index 572dbe6cce4..78d5a7820a3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6eadfbb315ade9f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6eadfbb315ade9f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6f6c8b6235cd59b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6f6c8b6235cd59b.verified.txt index 12c5c182575..228b15a1985 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6f6c8b6235cd59b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e6f6c8b6235cd59b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e70176e0489e356a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e70176e0489e356a.verified.txt index d712a4f4536..569f60a6e1c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e70176e0489e356a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e70176e0489e356a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e771787defee4a4b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e771787defee4a4b.verified.txt index 982020af07a..6fd626dc5e9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e771787defee4a4b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e771787defee4a4b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e793f2f212e89480.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e793f2f212e89480.verified.txt index d4cf8009cc4..1ca58c71d90 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e793f2f212e89480.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e793f2f212e89480.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e7b775428eb9240f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e7b775428eb9240f.verified.txt index fd5ac3566f8..1851f400d56 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e7b775428eb9240f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e7b775428eb9240f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e7d03c097ffdf692.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e7d03c097ffdf692.verified.txt index 4bc95729dc8..de5541ecb38 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e7d03c097ffdf692.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e7d03c097ffdf692.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8224c98b7673d46.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8224c98b7673d46.verified.txt index 49a19a9e167..7e60b2675bb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8224c98b7673d46.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8224c98b7673d46.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e82368f327d3c64c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e82368f327d3c64c.verified.txt index 28b773052e5..f379201feec 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e82368f327d3c64c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e82368f327d3c64c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e837757415cf9a87.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e837757415cf9a87.verified.txt index 69d62911e77..a2dcc097a71 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e837757415cf9a87.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e837757415cf9a87.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt index 637003aa6eb..c0eabadb428 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8ab41f6c2551162.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8fb38ce7a501fb4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8fb38ce7a501fb4.verified.txt index e205c6957d0..1986ff49e7f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8fb38ce7a501fb4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e8fb38ce7a501fb4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt index f4688c7fd3b..dd3191a6587 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e90739ee77f59479.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e915f7eb20aab958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e915f7eb20aab958.verified.txt index 44d794d2d21..9447b512007 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e915f7eb20aab958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e915f7eb20aab958.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e93ac5ecdd8dd0ca.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e93ac5ecdd8dd0ca.verified.txt index 1629d62247d..fcadbc334e1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e93ac5ecdd8dd0ca.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e93ac5ecdd8dd0ca.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e960e1679f126480.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e960e1679f126480.verified.txt index 4c4d80c6879..900eaab6e84 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e960e1679f126480.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e960e1679f126480.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt index 0ea9882b5c6..af1485a416e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9618be5f9ed361a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e2add4c0418f13.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e2add4c0418f13.verified.txt index 1ce0f305cb2..754a5136f7d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e2add4c0418f13.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e2add4c0418f13.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt index 84c6c4a3698..065c005e9e7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9e9ee18eeea2c6a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9f123caf0dee076.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9f123caf0dee076.verified.txt index 0c42d23ab45..2ad9201107f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9f123caf0dee076.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_e9f123caf0dee076.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea0b947d150a50df.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea0b947d150a50df.verified.txt index e67bc9f3866..2869c9f9990 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea0b947d150a50df.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea0b947d150a50df.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt index 69d3e4599d9..d4290025c00 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea3ea92fbacf24dc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea5cf282ab8113f7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea5cf282ab8113f7.verified.txt index 6ec9f3236bd..64efa364a10 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea5cf282ab8113f7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea5cf282ab8113f7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea6fe6dc9dcb8362.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea6fe6dc9dcb8362.verified.txt index fdd8ff6a7c0..d3597918b01 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea6fe6dc9dcb8362.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ea6fe6dc9dcb8362.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ead8d26ce2607cd3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ead8d26ce2607cd3.verified.txt index e995e57de1c..732b4b40ca1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ead8d26ce2607cd3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ead8d26ce2607cd3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_eb442e78731d096a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_eb442e78731d096a.verified.txt index 593be23706e..2e191e6b255 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_eb442e78731d096a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_eb442e78731d096a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ebf71e6be56c90c6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ebf71e6be56c90c6.verified.txt index 9d7f8eb6072..8b44cce9246 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ebf71e6be56c90c6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ebf71e6be56c90c6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ebfc93a613cf6dff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ebfc93a613cf6dff.verified.txt index 3dee5a43f3a..f6803358db9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ebfc93a613cf6dff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ebfc93a613cf6dff.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ec30ed4bf879e7c8.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ec30ed4bf879e7c8.verified.txt index 7ad72a1cabb..54e3d6aeda1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ec30ed4bf879e7c8.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ec30ed4bf879e7c8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ec71225de502a222.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ec71225de502a222.verified.txt index f8e2ac24ecc..d95288cdfe3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ec71225de502a222.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ec71225de502a222.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ecbdaa5b67718b11.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ecbdaa5b67718b11.verified.txt index 79dc89162a2..7ad0a4bd63b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ecbdaa5b67718b11.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ecbdaa5b67718b11.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ece7ac813f957972.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ece7ac813f957972.verified.txt index 628d484e85a..a02775d589a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ece7ac813f957972.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ece7ac813f957972.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed3822db65bdc7b2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed3822db65bdc7b2.verified.txt index f1de148f619..5982f3f6d74 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed3822db65bdc7b2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed3822db65bdc7b2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt index 4873c4c7598..90072b9cb00 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed42bf4f42cdccdb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed8974d12fcd58d2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed8974d12fcd58d2.verified.txt index 10ae6a3268a..6ab1892756a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed8974d12fcd58d2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ed8974d12fcd58d2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee39b4936c6fe74e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee39b4936c6fe74e.verified.txt index 4e89002e49d..6b240ac22b1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee39b4936c6fe74e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee39b4936c6fe74e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee519273ae3efa0c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee519273ae3efa0c.verified.txt index 7e4cee76dfa..d6179422222 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee519273ae3efa0c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee519273ae3efa0c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee5f295ceb50175d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee5f295ceb50175d.verified.txt index 92becf3189c..c4a0ef8fa65 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee5f295ceb50175d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee5f295ceb50175d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt index d49b4c75898..0dfa67609c9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ee6d718ab7d85638.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_eebcb11e9d0c1bec.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_eebcb11e9d0c1bec.verified.txt index 0b157aefe29..8a6cec1c174 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_eebcb11e9d0c1bec.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_eebcb11e9d0c1bec.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef3bd3b0553a82a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef3bd3b0553a82a9.verified.txt index 1a3842f0cf9..b48dd82b2f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef3bd3b0553a82a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef3bd3b0553a82a9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt index a172f00aef4..1d4d74695d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef720282f80f163d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef7b1c443c4d2b2f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef7b1c443c4d2b2f.verified.txt index a8a905c6b45..34fecd0b311 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef7b1c443c4d2b2f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ef7b1c443c4d2b2f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_efacab428af8a540.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_efacab428af8a540.verified.txt index 7b071b6f2aa..8794601793d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_efacab428af8a540.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_efacab428af8a540.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_efcf3f3288fd9f3a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_efcf3f3288fd9f3a.verified.txt index 3e12f10de2f..1f2c00e2263 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_efcf3f3288fd9f3a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_efcf3f3288fd9f3a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_eff79cb015e434ae.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_eff79cb015e434ae.verified.txt index a6e8567ba7b..a51e8bdbec7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_eff79cb015e434ae.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_eff79cb015e434ae.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f0cb1bc4c1868d05.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f0cb1bc4c1868d05.verified.txt index 2a34a3921f1..5d3730ae8eb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f0cb1bc4c1868d05.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f0cb1bc4c1868d05.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f0d0defc91082b1b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f0d0defc91082b1b.verified.txt index 83760b4a075..1ab9ad8b10a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f0d0defc91082b1b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f0d0defc91082b1b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f0f20b4d0dee5d9e.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f0f20b4d0dee5d9e.verified.txt index aaa7ae10b56..6a30f7a1b99 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f0f20b4d0dee5d9e.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f0f20b4d0dee5d9e.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f11f7363f14d8dca.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f11f7363f14d8dca.verified.txt index 39de9c40473..f4e4ff8f269 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f11f7363f14d8dca.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f11f7363f14d8dca.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1344614e2193f8b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1344614e2193f8b.verified.txt index d46fcf665ff..9a3adf3e704 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1344614e2193f8b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1344614e2193f8b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f13c0604f043ba83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f13c0604f043ba83.verified.txt index 548b4935545..53b160f8810 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f13c0604f043ba83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f13c0604f043ba83.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f16a660ddc43c15c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f16a660ddc43c15c.verified.txt index fbf3f139dc0..c343c54a2df 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f16a660ddc43c15c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f16a660ddc43c15c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt index d18865387f8..7203a272883 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1b0c0a8b6a1e7fc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt index 9e51e980468..29658525516 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1d44dd71d288957.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1e0ff765a22a5a0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1e0ff765a22a5a0.verified.txt index 352179ece42..9e8f93a2d6b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1e0ff765a22a5a0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1e0ff765a22a5a0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1f54648829805a7.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1f54648829805a7.verified.txt index 1cc73e3d3a2..7313ca64797 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1f54648829805a7.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f1f54648829805a7.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt index 5b5fb57ca6a..cd0d61de9ad 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f22764bf85dd7067.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f23391beb1a84fe3.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f23391beb1a84fe3.verified.txt index 2b9d8bafaec..c706bd25c95 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f23391beb1a84fe3.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f23391beb1a84fe3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f26346ed293c1fd0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f26346ed293c1fd0.verified.txt index 2f0dffda06d..dbc768e1f72 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f26346ed293c1fd0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f26346ed293c1fd0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f2bcc50a6485ac87.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f2bcc50a6485ac87.verified.txt index d8cc3e786ed..7ac4012504e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f2bcc50a6485ac87.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f2bcc50a6485ac87.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f2dba8f6d12006fb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f2dba8f6d12006fb.verified.txt index ca8e161c35b..ed5c564fed2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f2dba8f6d12006fb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f2dba8f6d12006fb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f2de388451b846cb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f2de388451b846cb.verified.txt index bbe022877aa..7e208282107 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f2de388451b846cb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f2de388451b846cb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt index 15585a91df3..c4bf0402fc2 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f301c12f0099fa83.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f35ca87e848fe958.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f35ca87e848fe958.verified.txt index 5c8a442bc5b..d5af0ec0051 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f35ca87e848fe958.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f35ca87e848fe958.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt index 9ea32d9625f..5a8cf37bbb6 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f36e259cea8673c5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f38e9dab6ac824ed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f38e9dab6ac824ed.verified.txt index 7b6d5c13dbb..a415a644da7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f38e9dab6ac824ed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f38e9dab6ac824ed.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt index ab2274ca20a..5ed4cf66de9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f396c3d0094f3511.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f397f2a2b36d12c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f397f2a2b36d12c5.verified.txt index f193f1c490e..f264056a84c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f397f2a2b36d12c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f397f2a2b36d12c5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f3b4556818570ae6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f3b4556818570ae6.verified.txt index 54767f456e6..b3adbf3c994 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f3b4556818570ae6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f3b4556818570ae6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt index 138eb8b47d8..8cf92ac5782 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f41f68eb3459ae9d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f45565ee0aefb58f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f45565ee0aefb58f.verified.txt index a9680d4f9ee..90b469e1042 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f45565ee0aefb58f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f45565ee0aefb58f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f4d81be4e42d003b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f4d81be4e42d003b.verified.txt index f0affb97ff0..00b29c4f8fc 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f4d81be4e42d003b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f4d81be4e42d003b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5012163c88d6f7a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5012163c88d6f7a.verified.txt index 16dd5886e6d..920bb4eed8c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5012163c88d6f7a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5012163c88d6f7a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt index 120ef5b66c2..bc3be20a7da 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5be229116372875.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5cb71c3dcc47563.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5cb71c3dcc47563.verified.txt index 77b070d1754..e35c94c9dd4 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5cb71c3dcc47563.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f5cb71c3dcc47563.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt index ee169995134..bf4cede083e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61b10fdcf0f518a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61c87fa9ac2da4b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61c87fa9ac2da4b.verified.txt index 0fea15d2f12..b0a097bc5ee 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61c87fa9ac2da4b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f61c87fa9ac2da4b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt index 71c7d9590c3..b112cc6176c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f620a7aa9bfb56b0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f67051ace0e3fbed.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f67051ace0e3fbed.verified.txt index 13a4c998f9b..a9f3fea56df 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f67051ace0e3fbed.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f67051ace0e3fbed.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6859535ce1bf3a6.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6859535ce1bf3a6.verified.txt index ea04b8cb970..108e19ae0d8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6859535ce1bf3a6.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6859535ce1bf3a6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt index e71ae1059a9..0d37025dd94 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f68c19de8a394152.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt index dcf6f4976e2..dd88240c1ef 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6b60ade6a11fa6f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6c47f6472ded299.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6c47f6472ded299.verified.txt index 55b8dfa83c5..68ff0059661 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6c47f6472ded299.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6c47f6472ded299.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6e158a4537ff6c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6e158a4537ff6c4.verified.txt index b161b0e34b0..ee811fcf667 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6e158a4537ff6c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6e158a4537ff6c4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6ec22721fee54fb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6ec22721fee54fb.verified.txt index 3c8f0ee7012..8cb00b85b6a 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6ec22721fee54fb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6ec22721fee54fb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6f5b66c115cfe4f.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6f5b66c115cfe4f.verified.txt index 996d38f9fe2..3627237db05 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6f5b66c115cfe4f.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f6f5b66c115cfe4f.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt index 6371ddc0a9d..deaace554eb 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f73d1178640672c5.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f7d1815b7ccbd657.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f7d1815b7ccbd657.verified.txt index 9456fc22a8b..efcb5c537c8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f7d1815b7ccbd657.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f7d1815b7ccbd657.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f80e8de1fae6a65d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f80e8de1fae6a65d.verified.txt index e30f9b9f66e..3e58db2ed39 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f80e8de1fae6a65d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f80e8de1fae6a65d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f8ac86eb8b8128e0.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f8ac86eb8b8128e0.verified.txt index c971c1a6dad..39a77c18ae1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f8ac86eb8b8128e0.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f8ac86eb8b8128e0.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f8fb4df98fdc6b64.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f8fb4df98fdc6b64.verified.txt index c3cbc67c5e8..5a6bd59f12f 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f8fb4df98fdc6b64.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f8fb4df98fdc6b64.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f900b4d5e2f0e655.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f900b4d5e2f0e655.verified.txt index 828ee8cd60b..4f96f2b499d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f900b4d5e2f0e655.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f900b4d5e2f0e655.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f93c141db3998dac.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f93c141db3998dac.verified.txt index 6244e978a59..3082474f2d5 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f93c141db3998dac.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f93c141db3998dac.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f9c7a1815b335404.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f9c7a1815b335404.verified.txt index 6b82c0a5d6d..88fd92ab4fa 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f9c7a1815b335404.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_f9c7a1815b335404.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fa336c022f1543c1.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fa336c022f1543c1.verified.txt index c9eb39f6c22..476ad35e49d 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fa336c022f1543c1.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fa336c022f1543c1.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fa4656d0f8876774.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fa4656d0f8876774.verified.txt index 13c13b32761..c9e5f2ee360 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fa4656d0f8876774.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fa4656d0f8876774.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fa53b606e523ceff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fa53b606e523ceff.verified.txt index 68a9635ea44..62b14bc3ef8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fa53b606e523ceff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fa53b606e523ceff.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt index 30837e98ce7..e51455a4c79 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faa1e6703da506fe.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faf49716d0cf46ff.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faf49716d0cf46ff.verified.txt index 779c9750a78..71ad3be6559 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faf49716d0cf46ff.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_faf49716d0cf46ff.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbb53840fa015194.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbb53840fa015194.verified.txt index c98936fcdac..6a187ab2e9b 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbb53840fa015194.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbb53840fa015194.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbb5fdbf3a11b087.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbb5fdbf3a11b087.verified.txt index f84ae66b904..8c79da82ec9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbb5fdbf3a11b087.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbb5fdbf3a11b087.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbdc6d16b8c535c4.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbdc6d16b8c535c4.verified.txt index 0424a08a735..ab37d00445e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbdc6d16b8c535c4.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbdc6d16b8c535c4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbf26a4b7ceb8eba.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbf26a4b7ceb8eba.verified.txt index 763405001ff..15b78fba026 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbf26a4b7ceb8eba.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fbf26a4b7ceb8eba.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc06b5017bfaf9f9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc06b5017bfaf9f9.verified.txt index dadf838c08e..ae27e846104 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc06b5017bfaf9f9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc06b5017bfaf9f9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc0dff4be7b8f19d.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc0dff4be7b8f19d.verified.txt index 7a690db2123..c1d40174313 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc0dff4be7b8f19d.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc0dff4be7b8f19d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc4c0e372635b0dc.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc4c0e372635b0dc.verified.txt index b8a139e44c8..952c76a2689 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc4c0e372635b0dc.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc4c0e372635b0dc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc587ef5e7021a3a.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc587ef5e7021a3a.verified.txt index 76c1b1e18f8..57bd3562279 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc587ef5e7021a3a.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fc587ef5e7021a3a.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt index 53357eda183..9a1e889042c 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fcf161275df488ea.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fd0b3567be8115ae.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fd0b3567be8115ae.verified.txt index 36b3f799e0b..751566d23e8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fd0b3567be8115ae.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fd0b3567be8115ae.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fdcce74b1bf18b70.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fdcce74b1bf18b70.verified.txt index 6450801df36..ae45033e805 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fdcce74b1bf18b70.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fdcce74b1bf18b70.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fde1254e77d89b21.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fde1254e77d89b21.verified.txt index eedeb9732a4..5a4a2ff9934 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fde1254e77d89b21.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fde1254e77d89b21.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe0ec33aa9c76d20.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe0ec33aa9c76d20.verified.txt index 7d3f66e702b..02993ce4116 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe0ec33aa9c76d20.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe0ec33aa9c76d20.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt index b17cf7e0fb0..436b0f1a0c7 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe306410050dd481.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe378db7b3dd5824.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe378db7b3dd5824.verified.txt index f36de12ae37..6bc3fc411a3 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe378db7b3dd5824.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe378db7b3dd5824.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe40f87af1f241a2.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe40f87af1f241a2.verified.txt index 8b76df9820d..3f964f5ac43 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe40f87af1f241a2.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fe40f87af1f241a2.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt index 13a8b14bf3e..762564695f9 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fea89883ed414cbb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_feaaced6d234c67c.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_feaaced6d234c67c.verified.txt index af63ff1a16d..7d6cab93df1 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_feaaced6d234c67c.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_feaaced6d234c67c.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fef7c5bb53311179.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fef7c5bb53311179.verified.txt index 9142d50fc65..877642b833e 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fef7c5bb53311179.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_fef7c5bb53311179.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ff05c6e0200c7b3b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ff05c6e0200c7b3b.verified.txt index 0959f7aa589..d0fb4933476 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ff05c6e0200c7b3b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ff05c6e0200c7b3b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ff12c2487827736b.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ff12c2487827736b.verified.txt index 3f228d7b605..5098efd3a85 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ff12c2487827736b.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ff12c2487827736b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ffc1d2d9ac4983a9.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ffc1d2d9ac4983a9.verified.txt index 5c8b6cf3874..3d21a5a3e25 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ffc1d2d9ac4983a9.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ffc1d2d9ac4983a9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ffcf94ee020af0bb.verified.txt b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ffcf94ee020af0bb.verified.txt index 2e7ce126a44..1241d1840c8 100644 --- a/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ffcf94ee020af0bb.verified.txt +++ b/tests/SnapshotTests/Casting/snapshots/snap-v9.0/CastingGenerationTests.Can_specify_casting_at_the_global_config_level_ffcf94ee020af0bb.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt index 61258fd6108..dae76ba3acc 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Conversion_and_exceptions_override.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Customization_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Customization_override.verified.txt index 9064064733d..668903a6713 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Customization_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Customization_override.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt index d6672a29a6c..8aa687e2f64 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Disable_stack_trace_recording_in_debug.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt index d8a19f85d31..59e339b2f62 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Enable_stack_trace_recoding_in_debug.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Exception_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Exception_override.verified.txt index 50dc7a37dbb..1f2880d1c52 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Exception_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Exception_override.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt index 85ca8deb762..ac954cc8603 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Exception_override_in_different_namespace.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt index 9e6340d0c4e..a78416aab43 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.OmitDebugAttributes_override.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Override_all.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Override_all.verified.txt index e5c629e9abd..baad97bc121 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Override_all.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Override_all.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Type_override.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Type_override.verified.txt index 6cf2ff770bc..276228a7172 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Type_override.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v9.0/GlobalConfigTests.Type_override.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/Config/snapshots/snap-v9.0/LocalConfigTests.Override_global_config_locally.verified.txt b/tests/SnapshotTests/Config/snapshots/snap-v9.0/LocalConfigTests.Override_global_config_locally.verified.txt index af013149e3f..aa213673e41 100644 --- a/tests/SnapshotTests/Config/snapshots/snap-v9.0/LocalConfigTests.Override_global_config_locally.verified.txt +++ b/tests/SnapshotTests/Config/snapshots/snap-v9.0/LocalConfigTests.Override_global_config_locally.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/EfCoreGeneration/EfCoreGenerationTests.cs b/tests/SnapshotTests/EfCoreGeneration/EfCoreGenerationTests.cs index 00697ed0f9d..1518c08e71d 100644 --- a/tests/SnapshotTests/EfCoreGeneration/EfCoreGenerationTests.cs +++ b/tests/SnapshotTests/EfCoreGeneration/EfCoreGenerationTests.cs @@ -4,9 +4,6 @@ namespace SnapshotTests.EfCoreGeneration; -// contrib: An idea place to start a new feature. Write a new test for the feature here to get it working, then -// add more tests. Move these tests if there are several of them, and it makes sense to group them. - public class EfCoreGenerationTests { [Fact] diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/0Rjlo8wVsY.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/0Rjlo8wVsY.verified.txt index a11a6819bb7..1fbc2d17886 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/0Rjlo8wVsY.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/0Rjlo8wVsY.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/GeneralTests.No_stack_trace_recording.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/GeneralTests.No_stack_trace_recording.verified.txt index 57853e85b67..13f8afbb783 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/GeneralTests.No_stack_trace_recording.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/GeneralTests.No_stack_trace_recording.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/LZDZ0jdOF6.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/LZDZ0jdOF6.verified.txt index f701edc64f3..0c8909c2e01 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/LZDZ0jdOF6.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/LZDZ0jdOF6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/jXZ79bcjc9.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/jXZ79bcjc9.verified.txt index 4ba5b7fd4e5..b59517312bf 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/jXZ79bcjc9.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/jXZ79bcjc9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/r69L6MTLWN.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/r69L6MTLWN.verified.txt index 6113263b865..b6de8b62436 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/r69L6MTLWN.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-v9.0/r69L6MTLWN.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-vAspNetCore8.0/GeneralTests.Can_specify_both_swashbuckle_filter_and_MapType_extension_method_generation_for_openapi.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-vAspNetCore8.0/GeneralTests.Can_specify_both_swashbuckle_filter_and_MapType_extension_method_generation_for_openapi.verified.txt index e11784b44f8..cbfc2c65e52 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-vAspNetCore8.0/GeneralTests.Can_specify_both_swashbuckle_filter_and_MapType_extension_method_generation_for_openapi.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-vAspNetCore8.0/GeneralTests.Can_specify_both_swashbuckle_filter_and_MapType_extension_method_generation_for_openapi.verified.txt @@ -24,7 +24,7 @@ using System.Reflection; [global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")] -public class VogenSchemaFilterIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter +public class VogenSchemaFilterMapVogenTypesIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter { private const BindingFlags _flags = BindingFlags.Public | BindingFlags.Instance; public void Apply(global::Microsoft.OpenApi.Models.OpenApiSchema schema, global::Swashbuckle.AspNetCore.SwaggerGen.SchemaFilterContext context) @@ -99,7 +99,7 @@ public class VogenSchemaFilterIngenerator : global::Swashbuckle.AspNetCore.Swagg public static class VogenSwashbuckleExtensions { - public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) + public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesMapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) { global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = false }); global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "number", Nullable = false }); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-vAspNetCore8.0/GeneralTests.Can_specify_swashbuckle_MapType_extension_method_generation_for_openapi.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-vAspNetCore8.0/GeneralTests.Can_specify_swashbuckle_MapType_extension_method_generation_for_openapi.verified.txt index 3a94a9ae1a8..1a62be45e35 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-vAspNetCore8.0/GeneralTests.Can_specify_swashbuckle_MapType_extension_method_generation_for_openapi.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-vAspNetCore8.0/GeneralTests.Can_specify_swashbuckle_MapType_extension_method_generation_for_openapi.verified.txt @@ -28,7 +28,7 @@ public static class VogenSwashbuckleExtensions { - public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) + public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesMapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) { global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = false }); global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "number", Nullable = false }); diff --git a/tests/SnapshotTests/GeneralStuff/snapshots/snap-vAspNetCore8.0/GeneralTests.Can_specify_swashbuckle_filter_generation_for_openapi.verified.txt b/tests/SnapshotTests/GeneralStuff/snapshots/snap-vAspNetCore8.0/GeneralTests.Can_specify_swashbuckle_filter_generation_for_openapi.verified.txt index 79b1ad7b8f1..39379b3c984 100644 --- a/tests/SnapshotTests/GeneralStuff/snapshots/snap-vAspNetCore8.0/GeneralTests.Can_specify_swashbuckle_filter_generation_for_openapi.verified.txt +++ b/tests/SnapshotTests/GeneralStuff/snapshots/snap-vAspNetCore8.0/GeneralTests.Can_specify_swashbuckle_filter_generation_for_openapi.verified.txt @@ -24,7 +24,7 @@ using System.Reflection; [global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")] -public class VogenSchemaFilterIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter +public class VogenSchemaFilterMapVogenTypesIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter { private const BindingFlags _flags = BindingFlags.Public | BindingFlags.Instance; public void Apply(global::Microsoft.OpenApi.Models.OpenApiSchema schema, global::Swashbuckle.AspNetCore.SwaggerGen.SchemaFilterContext context) diff --git a/tests/SnapshotTests/InternalDiagnostics/GeneralTests.cs b/tests/SnapshotTests/InternalDiagnostics/GeneralTests.cs index 1940fe4e049..bbf097da616 100644 --- a/tests/SnapshotTests/InternalDiagnostics/GeneralTests.cs +++ b/tests/SnapshotTests/InternalDiagnostics/GeneralTests.cs @@ -4,9 +4,6 @@ namespace SnapshotTests.InternalDiagnostics; -// contrib: An ideal place to start a new feature. Write a new test for the feature here to get it working, then -// add more tests. Move these tests if there are several of them, and it makes sense to group them. - public class InternalDiagnosticsTests { [Fact] diff --git a/tests/SnapshotTests/Markers/OpenApiTests.cs b/tests/SnapshotTests/Markers/OpenApiTests.cs new file mode 100644 index 00000000000..0faab05e9e3 --- /dev/null +++ b/tests/SnapshotTests/Markers/OpenApiTests.cs @@ -0,0 +1,34 @@ +// using System.Threading.Tasks; +// using Shared; +// using Vogen; +// +// namespace SnapshotTests.Markers; +// +// public class OpenApiTests +// { +// [Fact] +// public async Task Writes() +// { +// var source = """ +// using System; +// using Vogen; +// +// namespace Foo +// { +// [ValueObject] +// public partial struct Vo1; +// +// [ValueObject] +// public partial struct Vo2; +// +// [OpenApiMarker] +// [OpenApiMarker] +// public partial class OpenApiMarkers; +// } +// """; +// +// await new SnapshotRunner() +// .WithSource(source) +// .RunOn(TargetFramework.AspNetCore9_0); +// } +// } \ No newline at end of file diff --git a/tests/SnapshotTests/OpenApi/SwashbuckleTests.cs b/tests/SnapshotTests/OpenApi/SwashbuckleTests.cs index ffa58b8bfac..32ef40a5ae5 100644 --- a/tests/SnapshotTests/OpenApi/SwashbuckleTests.cs +++ b/tests/SnapshotTests/OpenApi/SwashbuckleTests.cs @@ -4,9 +4,6 @@ namespace SnapshotTests.OpenApi; -// contrib: An ideal place to start a new feature. Write a new test for the feature here to get it working, then -// add more tests. Move these tests if there are several of them, and it makes sense to group them. - public class SwashbuckleTests { [Theory] diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Generates_OpenApiMappingExtensionMethod_32176bb7ed8221dd.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Generates_OpenApiMappingExtensionMethod_32176bb7ed8221dd.verified.txt index eadf0eb6eda..4a8634a5536 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Generates_OpenApiMappingExtensionMethod_32176bb7ed8221dd.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Generates_OpenApiMappingExtensionMethod_32176bb7ed8221dd.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Generates_OpenApiMappingExtensionMethod_999bbcbfced9b3f8.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Generates_OpenApiMappingExtensionMethod_999bbcbfced9b3f8.verified.txt index 99e11b824dd..b8f71efae49 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Generates_OpenApiMappingExtensionMethod_999bbcbfced9b3f8.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Generates_OpenApiMappingExtensionMethod_999bbcbfced9b3f8.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Generates_OpenApiMappingExtensionMethod_c61bd4ba08e7d371.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Generates_OpenApiMappingExtensionMethod_c61bd4ba08e7d371.verified.txt index 91d90a9eda8..48b8c986d0d 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Generates_OpenApiMappingExtensionMethod_c61bd4ba08e7d371.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Generates_OpenApiMappingExtensionMethod_c61bd4ba08e7d371.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_02b3c4469da8bcf3.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_02b3c4469da8bcf3.verified.txt index a94166e83a9..9e67bf142a1 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_02b3c4469da8bcf3.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_02b3c4469da8bcf3.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_11919b072576dd0b.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_11919b072576dd0b.verified.txt index 60f3ee14180..819b0a44e54 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_11919b072576dd0b.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_11919b072576dd0b.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_152db79a4a6294cc.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_152db79a4a6294cc.verified.txt index a62fd0339a8..bd9a22e497d 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_152db79a4a6294cc.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_152db79a4a6294cc.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_180eab2724098a76.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_180eab2724098a76.verified.txt index b07d4a52208..45d83daef57 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_180eab2724098a76.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_180eab2724098a76.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_27f9427d955e30d9.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_27f9427d955e30d9.verified.txt index f9eb2e03a1e..9c29e5baca1 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_27f9427d955e30d9.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_27f9427d955e30d9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_30c90460a412631d.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_30c90460a412631d.verified.txt index b07d4a52208..45d83daef57 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_30c90460a412631d.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_30c90460a412631d.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_5cd412becf8e1bb9.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_5cd412becf8e1bb9.verified.txt index aaa2906b3b8..88df54c8fa0 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_5cd412becf8e1bb9.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_5cd412becf8e1bb9.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_72da95b4a0a661aa.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_72da95b4a0a661aa.verified.txt index 4cbf5596a7d..2a75a7691bb 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_72da95b4a0a661aa.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_72da95b4a0a661aa.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_875ea8807fc42733.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_875ea8807fc42733.verified.txt index bbe40269f05..0f63dd257f7 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_875ea8807fc42733.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_875ea8807fc42733.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_a208bec0efab2582.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_a208bec0efab2582.verified.txt index 4cbf5596a7d..2a75a7691bb 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_a208bec0efab2582.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_a208bec0efab2582.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_a258602a645377ab.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_a258602a645377ab.verified.txt index bbe40269f05..0f63dd257f7 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_a258602a645377ab.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_a258602a645377ab.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_d36819e608b8e6b4.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_d36819e608b8e6b4.verified.txt index 60f3ee14180..819b0a44e54 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_d36819e608b8e6b4.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_d36819e608b8e6b4.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_e2e6e6559d711eb6.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_e2e6e6559d711eb6.verified.txt index 3e48c47b0bc..2827b86f0a6 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_e2e6e6559d711eb6.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-v9.0/OpenApiTests.Treats_IParsable_primitives_as_strings_e2e6e6559d711eb6.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_both_filter_and_MapType_extension_method_999bbcbfced9b3f8.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_both_filter_and_MapType_extension_method_999bbcbfced9b3f8.verified.txt index a3bdabf0313..f259d2f138b 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_both_filter_and_MapType_extension_method_999bbcbfced9b3f8.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_both_filter_and_MapType_extension_method_999bbcbfced9b3f8.verified.txt @@ -24,7 +24,7 @@ using System.Reflection; [global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")] -public class VogenSchemaFilterIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter +public class VogenSchemaFilterMapVogenTypesIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter { private const BindingFlags _flags = BindingFlags.Public | BindingFlags.Instance; public void Apply(global::Microsoft.OpenApi.Models.OpenApiSchema schema, global::Swashbuckle.AspNetCore.SwaggerGen.SchemaFilterContext context) @@ -99,7 +99,7 @@ public class VogenSchemaFilterIngenerator : global::Swashbuckle.AspNetCore.Swagg public static class VogenSwashbuckleExtensions { - public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) + public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesMapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) { global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = false }); global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "number", Nullable = false }); diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_both_filter_and_MapType_extension_method_c61bd4ba08e7d371.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_both_filter_and_MapType_extension_method_c61bd4ba08e7d371.verified.txt index e11784b44f8..cbfc2c65e52 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_both_filter_and_MapType_extension_method_c61bd4ba08e7d371.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_both_filter_and_MapType_extension_method_c61bd4ba08e7d371.verified.txt @@ -24,7 +24,7 @@ using System.Reflection; [global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")] -public class VogenSchemaFilterIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter +public class VogenSchemaFilterMapVogenTypesIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter { private const BindingFlags _flags = BindingFlags.Public | BindingFlags.Instance; public void Apply(global::Microsoft.OpenApi.Models.OpenApiSchema schema, global::Swashbuckle.AspNetCore.SwaggerGen.SchemaFilterContext context) @@ -99,7 +99,7 @@ public class VogenSchemaFilterIngenerator : global::Swashbuckle.AspNetCore.Swagg public static class VogenSwashbuckleExtensions { - public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) + public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesMapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) { global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = false }); global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "number", Nullable = false }); diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_extension_method_for_mapping_types_32176bb7ed8221dd.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_extension_method_for_mapping_types_32176bb7ed8221dd.verified.txt index bccfa49f832..0e5de6b8b35 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_extension_method_for_mapping_types_32176bb7ed8221dd.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_extension_method_for_mapping_types_32176bb7ed8221dd.verified.txt @@ -28,7 +28,7 @@ public static class VogenSwashbuckleExtensions { - public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) + public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesMapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) { global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = false }); global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "number", Nullable = false }); diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_extension_method_for_mapping_types_999bbcbfced9b3f8.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_extension_method_for_mapping_types_999bbcbfced9b3f8.verified.txt index b49f3d325cc..058fc6887f4 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_extension_method_for_mapping_types_999bbcbfced9b3f8.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_extension_method_for_mapping_types_999bbcbfced9b3f8.verified.txt @@ -28,7 +28,7 @@ public static class VogenSwashbuckleExtensions { - public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) + public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesMapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) { global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = false }); global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "number", Nullable = false }); diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_extension_method_for_mapping_types_c61bd4ba08e7d371.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_extension_method_for_mapping_types_c61bd4ba08e7d371.verified.txt index 40634cbf86c..e3a93bb359c 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_extension_method_for_mapping_types_c61bd4ba08e7d371.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_extension_method_for_mapping_types_c61bd4ba08e7d371.verified.txt @@ -28,7 +28,7 @@ public static class VogenSwashbuckleExtensions { - public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) + public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesMapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) { global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = false }); global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "number", Nullable = false }); diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_filter_code_32176bb7ed8221dd.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_filter_code_32176bb7ed8221dd.verified.txt index 951c67e291b..47a0f7591fa 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_filter_code_32176bb7ed8221dd.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_filter_code_32176bb7ed8221dd.verified.txt @@ -24,7 +24,7 @@ using System.Reflection; [global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")] -public class VogenSchemaFilterIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter +public class VogenSchemaFilterMapVogenTypesIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter { private const BindingFlags _flags = BindingFlags.Public | BindingFlags.Instance; public void Apply(global::Microsoft.OpenApi.Models.OpenApiSchema schema, global::Swashbuckle.AspNetCore.SwaggerGen.SchemaFilterContext context) diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_filter_code_999bbcbfced9b3f8.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_filter_code_999bbcbfced9b3f8.verified.txt index 2bc91be1ea9..0aec37b7912 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_filter_code_999bbcbfced9b3f8.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_filter_code_999bbcbfced9b3f8.verified.txt @@ -24,7 +24,7 @@ using System.Reflection; [global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")] -public class VogenSchemaFilterIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter +public class VogenSchemaFilterMapVogenTypesIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter { private const BindingFlags _flags = BindingFlags.Public | BindingFlags.Instance; public void Apply(global::Microsoft.OpenApi.Models.OpenApiSchema schema, global::Swashbuckle.AspNetCore.SwaggerGen.SchemaFilterContext context) diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_filter_code_c61bd4ba08e7d371.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_filter_code_c61bd4ba08e7d371.verified.txt index 79b1ad7b8f1..39379b3c984 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_filter_code_c61bd4ba08e7d371.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Generates_filter_code_c61bd4ba08e7d371.verified.txt @@ -24,7 +24,7 @@ using System.Reflection; [global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Vogen", "1.0.0.0")] -public class VogenSchemaFilterIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter +public class VogenSchemaFilterMapVogenTypesIngenerator : global::Swashbuckle.AspNetCore.SwaggerGen.ISchemaFilter { private const BindingFlags _flags = BindingFlags.Public | BindingFlags.Instance; public void Apply(global::Microsoft.OpenApi.Models.OpenApiSchema schema, global::Swashbuckle.AspNetCore.SwaggerGen.SchemaFilterContext context) diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Treats_custom_IParsable_as_string.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Treats_custom_IParsable_as_string.verified.txt index 68d820dda3d..f1597e2807e 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Treats_custom_IParsable_as_string.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore8.0/SwashbuckleTests.Treats_custom_IParsable_as_string.verified.txt @@ -28,7 +28,7 @@ public static class VogenSwashbuckleExtensions { - public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) + public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesMapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) { global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "string", Nullable = false }); diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Generates_both_OpenApiMappingExtensionMethod_SwaggerMappingExtensionMethod_32176bb7ed8221dd.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Generates_both_OpenApiMappingExtensionMethod_SwaggerMappingExtensionMethod_32176bb7ed8221dd.verified.txt index d148ec505d4..6c53b12e772 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Generates_both_OpenApiMappingExtensionMethod_SwaggerMappingExtensionMethod_32176bb7ed8221dd.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Generates_both_OpenApiMappingExtensionMethod_SwaggerMappingExtensionMethod_32176bb7ed8221dd.verified.txt @@ -28,7 +28,7 @@ public static class VogenSwashbuckleExtensions { - public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) + public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesMapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) { global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = false }); global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "number", Nullable = false }); @@ -71,7 +71,7 @@ global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.Map // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Generates_both_OpenApiMappingExtensionMethod_SwaggerMappingExtensionMethod_999bbcbfced9b3f8.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Generates_both_OpenApiMappingExtensionMethod_SwaggerMappingExtensionMethod_999bbcbfced9b3f8.verified.txt index 00af6698b79..5e2789568c8 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Generates_both_OpenApiMappingExtensionMethod_SwaggerMappingExtensionMethod_999bbcbfced9b3f8.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Generates_both_OpenApiMappingExtensionMethod_SwaggerMappingExtensionMethod_999bbcbfced9b3f8.verified.txt @@ -28,7 +28,7 @@ public static class VogenSwashbuckleExtensions { - public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) + public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesMapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) { global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = false }); global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "number", Nullable = false }); @@ -71,7 +71,7 @@ global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.Map // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Generates_both_OpenApiMappingExtensionMethod_SwaggerMappingExtensionMethod_c61bd4ba08e7d371.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Generates_both_OpenApiMappingExtensionMethod_SwaggerMappingExtensionMethod_c61bd4ba08e7d371.verified.txt index c36eba5d9e8..59070f55d46 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Generates_both_OpenApiMappingExtensionMethod_SwaggerMappingExtensionMethod_c61bd4ba08e7d371.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Generates_both_OpenApiMappingExtensionMethod_SwaggerMappingExtensionMethod_c61bd4ba08e7d371.verified.txt @@ -28,7 +28,7 @@ public static class VogenSwashbuckleExtensions { - public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) + public static global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions MapVogenTypesMapVogenTypesIngenerator(this global::Swashbuckle.AspNetCore.SwaggerGen.SwaggerGenOptions o) { global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "integer", Format = "int32", Nullable = false }); global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.MapType(o, () => new global::Microsoft.OpenApi.Models.OpenApiSchema { Type = "number", Nullable = false }); @@ -71,7 +71,7 @@ global::Microsoft.Extensions.DependencyInjection.SwaggerGenOptionsExtensions.Map // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) { diff --git a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Treats_custom_IParsable_as_string.verified.txt b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Treats_custom_IParsable_as_string.verified.txt index 28b7795a064..e4df7a9229c 100644 --- a/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Treats_custom_IParsable_as_string.verified.txt +++ b/tests/SnapshotTests/OpenApi/snapshots/snap-vAspNetCore9.0/OpenApiTests.Treats_custom_IParsable_as_string.verified.txt @@ -26,7 +26,7 @@ // Suppress warnings about CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' #pragma warning disable CS1591 -public static class VogenOpenApiExtensions +public static partial class VogenOpenApiExtensions { public static global::Microsoft.AspNetCore.OpenApi.OpenApiOptions MapVogenTypesIngenerator(this global::Microsoft.AspNetCore.OpenApi.OpenApiOptions options) {