💬 Added links to specification rule #444
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#338
This pull request involves several changes aimed at cleaning up unused
using
directives and adding global using directives to theGlobalUsings.cs
file. Below is a summary of the most important changes:Removal of Unused
using
Directives:src/Domain/Common/Base/AggregateRoot.cs
: Removed unusedusing
directives (SSW.CleanArchitecture.Domain.Common.Interfaces
andSystem.ComponentModel.DataAnnotations.Schema
).src/Domain/Common/Base/Auditable.cs
: Removed unusedusing
directive (SSW.CleanArchitecture.Domain.Common.Interfaces
).src/Domain/Common/EventualConsistency/EventualConsistencyError.cs
: Removed unusedusing
directive (ErrorOr
).src/Domain/Common/EventualConsistency/EventualConsistencyException.cs
: Removed unusedusing
directive (ErrorOr
).src/Domain/Heroes/Hero.cs
: Removed unusedusing
directive (Vogen
).src/Domain/Heroes/HeroErrors.cs
: Removed unusedusing
directive (ErrorOr
).src/Domain/Heroes/PowerLevelUpdatedEvent.cs
: Removed unusedusing
directives (ErrorOr
,SSW.CleanArchitecture.Domain.Common.EventualConsistency
, andSSW.CleanArchitecture.Domain.Common.Interfaces
).src/Domain/Heroes/TeamByIdSpec.cs
: Removed unusedusing
directive (Ardalis.Specification
).src/Domain/Teams/Mission.cs
: Removed unusedusing
directive (Vogen
).src/Domain/Teams/MissionErrors.cs
: Removed unusedusing
directive (ErrorOr
).src/Domain/Teams/Team.cs
: Removed unusedusing
directive (Vogen
).src/Domain/Teams/TeamByIdSpec.cs
: Removed unusedusing
directive (Ardalis.Specification
).src/Domain/Teams/TeamErrors.cs
: Removed unusedusing
directive (ErrorOr
).src/Infrastructure/Middleware/EventualConsistencyMiddleware.cs
: Removed unusedusing
directives (Microsoft.EntityFrameworkCore.Storage
andSystem.Transactions
).tools/MigrationService/Worker.cs
: Removed unusedusing
directive (OpenTelemetry.Trace
).Addition of Global Using Directives:
src/Domain/GlobalUsings.cs
: Added global using directives forArdalis.Specification
andVogen
.No