Skip to content

Commit

Permalink
Update to v4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ardalis committed Jun 1, 2023
1 parent 5515961 commit 60831a0
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 38 deletions.
27 changes: 24 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
indent_style = space
# Code files
[*.{cs,csx,vb,vbx}]
indent_size =2
indent_size = 2
insert_final_newline = true
charset = utf-8-bom
###############################
Expand Down Expand Up @@ -54,11 +54,17 @@ dotnet_naming_style.pascal_case_style.capitalization = pascal_case
# Use PascalCase for constant fields
dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields
dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style
dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style
dotnet_naming_symbols.constant_fields.applicable_kinds = field
dotnet_naming_symbols.constant_fields.applicable_accessibilities = *
dotnet_naming_symbols.constant_fields.required_modifiers = const
tab_width=2
tab_width= 2
dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
dotnet_style_prefer_compound_assignment = true:suggestion
dotnet_style_prefer_simplified_interpolation = true:suggestion
dotnet_style_namespace_match_folder = true:suggestion
dotnet_style_operator_placement_when_wrapping = beginning_of_line
end_of_line = crlf
###############################
# C# Coding Conventions #
###############################
Expand Down Expand Up @@ -118,6 +124,21 @@ csharp_space_between_method_call_empty_parameter_list_parentheses = false
# Wrapping preferences
csharp_preserve_single_line_statements = true
csharp_preserve_single_line_blocks = true
csharp_using_directive_placement = outside_namespace:silent
csharp_prefer_simple_using_statement = true:suggestion
csharp_style_namespace_declarations = file_scoped:warning
csharp_style_prefer_method_group_conversion = true:silent
csharp_style_prefer_top_level_statements = true:silent
csharp_style_expression_bodied_lambdas = true:silent
csharp_style_expression_bodied_local_functions = false:silent
csharp_style_prefer_null_check_over_type_check = true:suggestion
csharp_style_prefer_local_over_anonymous_function = true:suggestion
csharp_style_prefer_index_operator = true:suggestion
csharp_style_prefer_range_operator = true:suggestion
csharp_style_implicit_object_creation_when_type_is_apparent = true:suggestion
csharp_style_prefer_tuple_swap = true:suggestion
csharp_style_prefer_utf8_string_literals = true:suggestion
csharp_style_unused_value_assignment_preference = discard_variable:suggestion
###############################
# VB Coding Conventions #
###############################
Expand Down
30 changes: 15 additions & 15 deletions src/Ardalis.ApiEndpoints.NSwag/Ardalis.ApiEndpoints.NSwag.csproj
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<PackageId>Ardalis.ApiEndpoints.NSwag</PackageId>
<Version>4.0.1</Version>
<Authors>Steve Smith (@ardalis), Maksym Koshovyi</Authors>
<Description>OpenAPI support for ApiEndpoints using NSwag</Description>
<Summary>OpenAPI support for ApiEndpoints using NSwag</Summary>
<PackageTags>api endpoints openapi nswag</PackageTags>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NSwag.Generation.AspNetCore" Version="13.0.0" />
</ItemGroup>
<PropertyGroup>
<PackageId>Ardalis.ApiEndpoints.NSwag</PackageId>
<Version>4.1.0</Version>
<Authors>Steve Smith (@ardalis), Maksym Koshovyi</Authors>
<Description>OpenAPI support for ApiEndpoints using NSwag</Description>
<Summary>OpenAPI support for ApiEndpoints using NSwag</Summary>
<PackageTags>api endpoints openapi nswag</PackageTags>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Ardalis.ApiEndpoints\Ardalis.ApiEndpoints.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NSwag.Generation.AspNetCore" Version="13.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Ardalis.ApiEndpoints\Ardalis.ApiEndpoints.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<PackageId>Ardalis.ApiEndpoints.Swashbuckle</PackageId>
<Version>4.0.1</Version>
<Authors>Steve Smith (@ardalis), Maksym Koshovyi</Authors>
<Description>OpenAPI support for ApiEndpoints using Swashbuckle</Description>
<Summary>OpenAPI support for ApiEndpoints using Swashbuckle</Summary>
<PackageTags>api endpoints openapi swashbuckle</PackageTags>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="4.0.0" />
</ItemGroup>
<PropertyGroup>
<PackageId>Ardalis.ApiEndpoints.Swashbuckle</PackageId>
<Version>4.1.0</Version>
<Authors>Steve Smith (@ardalis), Maksym Koshovyi</Authors>
<Description>OpenAPI support for ApiEndpoints using Swashbuckle</Description>
<Summary>OpenAPI support for ApiEndpoints using Swashbuckle</Summary>
<PackageTags>api endpoints openapi swashbuckle</PackageTags>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="4.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Ardalis.ApiEndpoints\Ardalis.ApiEndpoints.csproj" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Ardalis.ApiEndpoints\Ardalis.ApiEndpoints.csproj" />
</ItemGroup>

</Project>
6 changes: 2 additions & 4 deletions src/Ardalis.ApiEndpoints/Ardalis.ApiEndpoints.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@
<Description>An alternative to Controllers for ASP.NET Core API Endpoints.</Description>
<Summary>Controllers promote creating bloated classes that lack cohesion. This project provides a simpler alternative that follows SOLID principles. An alternative to Controllers for ASP.NET Core API Endpoints.</Summary>
<PackageTags>aspnet asp.net aspnetcore asp.net core api web api rest endpoint controller</PackageTags>
<PackageReleaseNotes>See README for breaking changes and migration guide.

4.0.1 Updates reference to Ardalis.ApiEndpoints.CodeAnalyzers to non-prerelease.</PackageReleaseNotes>
<Version>4.0.1</Version>
<PackageReleaseNotes>Add IAsyncEnumerable Support; other minor fixes</PackageReleaseNotes>
<Version>4.1.0</Version>
<AssemblyName>Ardalis.ApiEndpoints</AssemblyName>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
Expand Down

0 comments on commit 60831a0

Please sign in to comment.