CodeSmellAnnotations 1.0.1-alpha.0.7
dotnet add package CodeSmellAnnotations --version 1.0.1-alpha.0.7
NuGet\Install-Package CodeSmellAnnotations -Version 1.0.1-alpha.0.7
<PackageReference Include="CodeSmellAnnotations" Version="1.0.1-alpha.0.7" />
paket add CodeSmellAnnotations --version 1.0.1-alpha.0.7
#r "nuget: CodeSmellAnnotations, 1.0.1-alpha.0.7"
// Install CodeSmellAnnotations as a Cake Addin #addin nuget:?package=CodeSmellAnnotations&version=1.0.1-alpha.0.7&prerelease // Install CodeSmellAnnotations as a Cake Tool #tool nuget:?package=CodeSmellAnnotations&version=1.0.1-alpha.0.7&prerelease
CodeSmellAnnotations
Annotate your C# codebase with attribute-based code quality remarks, which are hard to ignore.
netstandard2.0 compliant
Objective
How many times have we spotted a code smell but didn't have enough time to fix it right away? Then what do we do? Add a comment, hoping that some day we or somebody else will see this comment and get into fixing the smell?
Well, that just never happens.
With this library we can add code smell annotations that will appear as warnings in our build as well as in the IDE. These warnings will bug us and our collegues until someone fixes them.
Key features:
- Attributes to annotate the code, which get picked by the compiler.
- A number of predefined common code smells, allowing for quick annotation of bad code.
Usage
- Chose the most appropriate one of the following attributes:
[CodeSmell(Kind.[PredefinedSmellType])]
// or
[CodeSmell(Kind.General, Reason = "unclear intentions")]
// or
[DuplicateOf("MyDoppleganger")]
// or
[DuplicateOf("MyNotExactDoppleganger", Kind = DuplicationKind.OddballSolution)]
// or
[SolidViolation(SolidPrinciple.SingleResponsibility)]
- Annotate the code
using CodeSmellAnnotations.Attributes;
public class StoreItem
{
public string Name { get; set; }
[CodeSmell(Kind.PrimitiveObsession, Reason = "use a custom money class with currency info")]
public decimal Price { get; set; }
}
The code above will result in build warnings, which are easy to spot. Plus, it is easy to navigate to the source of the warnings in the IDE.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.1-alpha.0.7 | 348 | 8/1/2024 |
1.0.1-alpha.0.6 | 69 | 7/8/2024 |
1.0.1-alpha.0.5 | 61 | 7/8/2024 |
1.0.1-alpha.0.4 | 58 | 7/8/2024 |
1.0.1-alpha.0.3 | 1,108 | 9/14/2023 |