Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Actions #55

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish_fluentvalidation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
NET_VERSION: '8.x'
PROJECT_NAME: src/MinimalHelpers.FluentValidation
PROJECT_FILE: MinimalHelpers.FluentValidation.csproj
TAG_NAME: routing
TAG_NAME: fluentvalidation
RELEASE_NAME: MinimalHelpers.FluentValidation

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
NET_VERSION: '8.x'
PROJECT_NAME: src/MinimalHelpers.Validation
PROJECT_FILE: MinimalHelpers.Validation.csproj
TAG_NAME: routing
TAG_NAME: validation
RELEASE_NAME: MinimalHelpers.Validation

jobs:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static class RouteHandlerBuilderExtensions
/// </summary>
/// <typeparam name="T">The type of the object to validate.</typeparam>
/// <param name="builder">The <see cref="RouteHandlerBuilder"/> to add validation filter to.</param>
/// <returns>The <see cref="RouteHandlerBuilder"/> with validation filter added.</returns>
/// <returns>The <see cref="RouteHandlerBuilder"/> with the added validation filter.</returns>
/// <remarks>The validation is performed using <a href="https://fluentvalidation.net">FluentValidation</a>.</remarks>
public static RouteHandlerBuilder WithValidation<T>(this RouteHandlerBuilder builder) where T : class
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static class RouteHandlerBuilderExtensions
/// </summary>
/// <typeparam name="T">The type of the object to validate.</typeparam>
/// <param name="builder">The <see cref="RouteHandlerBuilder"/> to add validation filter to.</param>
/// <returns>The <see cref="RouteHandlerBuilder"/> with validation filter added.</returns>
/// <returns>The <see cref="RouteHandlerBuilder"/> with the added validation filter.</returns>
/// <remarks>The validation is performed with Data annotations, using <a href="https://github.com/DamianEdwards/MiniValidation">MiniValidation</a>.</remarks>
public static RouteHandlerBuilder WithValidation<T>(this RouteHandlerBuilder builder) where T : class
{
Expand Down
Loading