Apply dotnet format with new editorconfig rules
Automated formatting: BOM removal, using sort order, final newlines, whitespace normalization across all projects. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
a4525bad6a
commit
fdee02c960
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.Abstractions.Attributes;
|
namespace Svrnty.CQRS.Abstractions.Attributes;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.Abstractions.Attributes;
|
namespace Svrnty.CQRS.Abstractions.Attributes;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using Svrnty.CQRS.Abstractions.Attributes;
|
using Svrnty.CQRS.Abstractions.Attributes;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.Abstractions.Discovery;
|
namespace Svrnty.CQRS.Abstractions.Discovery;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.Abstractions.Discovery;
|
namespace Svrnty.CQRS.Abstractions.Discovery;
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.Abstractions.Discovery;
|
namespace Svrnty.CQRS.Abstractions.Discovery;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using Svrnty.CQRS.Abstractions.Attributes;
|
using Svrnty.CQRS.Abstractions.Attributes;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.Abstractions;
|
namespace Svrnty.CQRS.Abstractions;
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.Abstractions;
|
namespace Svrnty.CQRS.Abstractions;
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Svrnty.CQRS.Abstractions.Security;
|
namespace Svrnty.CQRS.Abstractions.Security;
|
||||||
|
|
||||||
public enum AuthorizationResult
|
public enum AuthorizationResult
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System.Diagnostics.CodeAnalysis;
|
using System.Diagnostics.CodeAnalysis;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Svrnty.CQRS.Abstractions.Discovery;
|
using Svrnty.CQRS.Abstractions.Discovery;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.DynamicQuery.Abstractions;
|
namespace Svrnty.CQRS.DynamicQuery.Abstractions;
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using PoweredSoft.DynamicQuery.Core;
|
using PoweredSoft.DynamicQuery.Core;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.DynamicQuery.Abstractions;
|
namespace Svrnty.CQRS.DynamicQuery.Abstractions;
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.DynamicQuery.Abstractions;
|
namespace Svrnty.CQRS.DynamicQuery.Abstractions;
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Svrnty.CQRS.DynamicQuery.Abstractions;
|
namespace Svrnty.CQRS.DynamicQuery.Abstractions;
|
||||||
|
|
||||||
public interface IDynamicQueryParams<out TParams>
|
public interface IDynamicQueryParams<out TParams>
|
||||||
where TParams : class
|
where TParams : class
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
|||||||
@ -7,6 +7,7 @@ using Microsoft.AspNetCore.Builder;
|
|||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
using Microsoft.AspNetCore.Routing;
|
using Microsoft.AspNetCore.Routing;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
using PoweredSoft.DynamicQuery.Core;
|
||||||
using Svrnty.CQRS.Abstractions;
|
using Svrnty.CQRS.Abstractions;
|
||||||
using Svrnty.CQRS.Abstractions.Attributes;
|
using Svrnty.CQRS.Abstractions.Attributes;
|
||||||
using Svrnty.CQRS.Abstractions.Discovery;
|
using Svrnty.CQRS.Abstractions.Discovery;
|
||||||
@ -14,7 +15,6 @@ using Svrnty.CQRS.Abstractions.Security;
|
|||||||
using Svrnty.CQRS.DynamicQuery;
|
using Svrnty.CQRS.DynamicQuery;
|
||||||
using Svrnty.CQRS.DynamicQuery.Abstractions;
|
using Svrnty.CQRS.DynamicQuery.Abstractions;
|
||||||
using Svrnty.CQRS.DynamicQuery.Discover;
|
using Svrnty.CQRS.DynamicQuery.Discover;
|
||||||
using PoweredSoft.DynamicQuery.Core;
|
|
||||||
|
|
||||||
namespace Svrnty.CQRS.DynamicQuery.MinimalApi;
|
namespace Svrnty.CQRS.DynamicQuery.MinimalApi;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using Pluralize.NET;
|
using Pluralize.NET;
|
||||||
using Svrnty.CQRS.Abstractions.Discovery;
|
using Svrnty.CQRS.Abstractions.Discovery;
|
||||||
|
|
||||||
|
|||||||
@ -1,8 +1,8 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Svrnty.CQRS.DynamicQuery.Abstractions;
|
|
||||||
using PoweredSoft.DynamicQuery;
|
using PoweredSoft.DynamicQuery;
|
||||||
using PoweredSoft.DynamicQuery.Core;
|
using PoweredSoft.DynamicQuery.Core;
|
||||||
|
using Svrnty.CQRS.DynamicQuery.Abstractions;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.DynamicQuery;
|
namespace Svrnty.CQRS.DynamicQuery;
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
|
using System;
|
||||||
using PoweredSoft.DynamicQuery;
|
using PoweredSoft.DynamicQuery;
|
||||||
using PoweredSoft.DynamicQuery.Core;
|
using PoweredSoft.DynamicQuery.Core;
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace Svrnty.CQRS.DynamicQuery;
|
namespace Svrnty.CQRS.DynamicQuery;
|
||||||
|
|
||||||
|
|||||||
@ -1,10 +1,10 @@
|
|||||||
using Svrnty.CQRS.DynamicQuery.Abstractions;
|
|
||||||
using PoweredSoft.DynamicQuery.Core;
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using PoweredSoft.DynamicQuery.Core;
|
||||||
|
using Svrnty.CQRS.DynamicQuery.Abstractions;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.DynamicQuery;
|
namespace Svrnty.CQRS.DynamicQuery;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics.CodeAnalysis;
|
using System.Diagnostics.CodeAnalysis;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
@ -6,9 +6,9 @@ using System.Linq;
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Svrnty.CQRS.DynamicQuery.Abstractions;
|
|
||||||
using PoweredSoft.DynamicQuery;
|
using PoweredSoft.DynamicQuery;
|
||||||
using PoweredSoft.DynamicQuery.Core;
|
using PoweredSoft.DynamicQuery.Core;
|
||||||
|
using Svrnty.CQRS.DynamicQuery.Abstractions;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.DynamicQuery;
|
namespace Svrnty.CQRS.DynamicQuery;
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System.Diagnostics.CodeAnalysis;
|
using System.Diagnostics.CodeAnalysis;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Microsoft.Extensions.DependencyInjection.Extensions;
|
using Microsoft.Extensions.DependencyInjection.Extensions;
|
||||||
using PoweredSoft.Data.Core;
|
using PoweredSoft.Data.Core;
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System.Diagnostics.CodeAnalysis;
|
using System.Diagnostics.CodeAnalysis;
|
||||||
using FluentValidation;
|
using FluentValidation;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Svrnty.CQRS.Abstractions;
|
using Svrnty.CQRS.Abstractions;
|
||||||
|
|||||||
@ -1,13 +1,13 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
using Microsoft.CodeAnalysis;
|
using Microsoft.CodeAnalysis;
|
||||||
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
||||||
using Svrnty.CQRS.Grpc.Generators.Helpers;
|
using Svrnty.CQRS.Grpc.Generators.Helpers;
|
||||||
using Svrnty.CQRS.Grpc.Generators.Models;
|
using Svrnty.CQRS.Grpc.Generators.Models;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace Svrnty.CQRS.Grpc.Generators
|
namespace Svrnty.CQRS.Grpc.Generators;
|
||||||
{
|
|
||||||
[Generator]
|
[Generator]
|
||||||
public class GrpcGenerator : IIncrementalGenerator
|
public class GrpcGenerator : IIncrementalGenerator
|
||||||
{
|
{
|
||||||
@ -3359,4 +3359,3 @@ namespace Svrnty.CQRS.Grpc.Generators
|
|||||||
p.Length > 0 ? char.ToUpperInvariant(p[0]) + p.Substring(1).ToLowerInvariant() : ""));
|
p.Length > 0 ? char.ToUpperInvariant(p[0]) + p.Substring(1).ToLowerInvariant() : ""));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.Grpc.Generators.Helpers
|
namespace Svrnty.CQRS.Grpc.Generators.Helpers;
|
||||||
{
|
|
||||||
internal static class ProtoTypeMapper
|
internal static class ProtoTypeMapper
|
||||||
{
|
{
|
||||||
private static readonly Dictionary<string, string> TypeMap = new Dictionary<string, string>
|
private static readonly Dictionary<string, string> TypeMap = new Dictionary<string, string>
|
||||||
@ -99,4 +99,3 @@ namespace Svrnty.CQRS.Grpc.Generators.Helpers
|
|||||||
return csharpType.Replace("?", "");
|
return csharpType.Replace("?", "");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|||||||
@ -1,8 +1,8 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Microsoft.CodeAnalysis;
|
using Microsoft.CodeAnalysis;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.Grpc.Generators.Models
|
namespace Svrnty.CQRS.Grpc.Generators.Models;
|
||||||
{
|
|
||||||
public class CommandInfo
|
public class CommandInfo
|
||||||
{
|
{
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
@ -80,4 +80,3 @@ namespace Svrnty.CQRS.Grpc.Generators.Models
|
|||||||
IsElementGuid = false;
|
IsElementGuid = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
namespace Svrnty.CQRS.Grpc.Generators.Models
|
namespace Svrnty.CQRS.Grpc.Generators.Models;
|
||||||
{
|
|
||||||
public class DynamicQueryInfo
|
public class DynamicQueryInfo
|
||||||
{
|
{
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
@ -25,4 +25,3 @@ namespace Svrnty.CQRS.Grpc.Generators.Models
|
|||||||
HasParams = false;
|
HasParams = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.Grpc.Generators.Models
|
namespace Svrnty.CQRS.Grpc.Generators.Models;
|
||||||
{
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents a discovered streaming notification type for proto/gRPC generation.
|
/// Represents a discovered streaming notification type for proto/gRPC generation.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -47,4 +47,3 @@ namespace Svrnty.CQRS.Grpc.Generators.Models
|
|||||||
Properties = new List<PropertyInfo>();
|
Properties = new List<PropertyInfo>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Svrnty.CQRS.Grpc.Generators.Models
|
namespace Svrnty.CQRS.Grpc.Generators.Models;
|
||||||
{
|
|
||||||
public class QueryInfo
|
public class QueryInfo
|
||||||
{
|
{
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
@ -27,4 +27,3 @@ namespace Svrnty.CQRS.Grpc.Generators.Models
|
|||||||
IsResultPrimitiveType = false;
|
IsResultPrimitiveType = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
|
using System.Diagnostics.CodeAnalysis;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Svrnty.CQRS.Abstractions;
|
using Svrnty.CQRS.Abstractions;
|
||||||
using Svrnty.CQRS.Discovery;
|
using Svrnty.CQRS.Discovery;
|
||||||
@ -43,7 +44,7 @@ public class CqrsBuilder
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Adds a command handler to the CQRS pipeline
|
/// Adds a command handler to the CQRS pipeline
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public CqrsBuilder AddCommand<TCommand, TCommandHandler>()
|
public CqrsBuilder AddCommand<TCommand, [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicConstructors)] TCommandHandler>()
|
||||||
where TCommand : class
|
where TCommand : class
|
||||||
where TCommandHandler : class, ICommandHandler<TCommand>
|
where TCommandHandler : class, ICommandHandler<TCommand>
|
||||||
{
|
{
|
||||||
@ -54,7 +55,7 @@ public class CqrsBuilder
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Adds a command handler with result to the CQRS pipeline
|
/// Adds a command handler with result to the CQRS pipeline
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public CqrsBuilder AddCommand<TCommand, TResult, TCommandHandler>()
|
public CqrsBuilder AddCommand<TCommand, TResult, [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicConstructors)] TCommandHandler>()
|
||||||
where TCommand : class
|
where TCommand : class
|
||||||
where TCommandHandler : class, ICommandHandler<TCommand, TResult>
|
where TCommandHandler : class, ICommandHandler<TCommand, TResult>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Svrnty.CQRS.Abstractions.Discovery;
|
using Svrnty.CQRS.Abstractions.Discovery;
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Svrnty.CQRS.Abstractions.Discovery;
|
using Svrnty.CQRS.Abstractions.Discovery;
|
||||||
|
|||||||
@ -1,11 +1,11 @@
|
|||||||
using Microsoft.AspNetCore.Server.Kestrel.Core;
|
using Microsoft.AspNetCore.Server.Kestrel.Core;
|
||||||
using Svrnty.CQRS;
|
using Svrnty.CQRS;
|
||||||
|
using Svrnty.CQRS.Abstractions;
|
||||||
|
using Svrnty.CQRS.DynamicQuery;
|
||||||
using Svrnty.CQRS.FluentValidation;
|
using Svrnty.CQRS.FluentValidation;
|
||||||
using Svrnty.CQRS.Grpc;
|
using Svrnty.CQRS.Grpc;
|
||||||
using Svrnty.Sample;
|
|
||||||
using Svrnty.CQRS.MinimalApi;
|
using Svrnty.CQRS.MinimalApi;
|
||||||
using Svrnty.CQRS.DynamicQuery;
|
using Svrnty.Sample;
|
||||||
using Svrnty.CQRS.Abstractions;
|
|
||||||
|
|
||||||
var builder = WebApplication.CreateBuilder(args);
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
using PoweredSoft.Data.Core;
|
|
||||||
using System.Linq.Expressions;
|
using System.Linq.Expressions;
|
||||||
|
using PoweredSoft.Data.Core;
|
||||||
|
|
||||||
namespace Svrnty.Sample;
|
namespace Svrnty.Sample;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user