CodeSmellAnnotations 1.0.1-alpha.0.3

This is a prerelease version of CodeSmellAnnotations.
dotnet add package CodeSmellAnnotations --version 1.0.1-alpha.0.3
NuGet\Install-Package CodeSmellAnnotations -Version 1.0.1-alpha.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CodeSmellAnnotations" Version="1.0.1-alpha.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CodeSmellAnnotations --version 1.0.1-alpha.0.3
#r "nuget: CodeSmellAnnotations, 1.0.1-alpha.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CodeSmellAnnotations as a Cake Addin
#addin nuget:?package=CodeSmellAnnotations&version=1.0.1-alpha.0.3&prerelease

// Install CodeSmellAnnotations as a Cake Tool
#tool nuget:?package=CodeSmellAnnotations&version=1.0.1-alpha.0.3&prerelease

CodeSmellAnnotations

License

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 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. 
.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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.3 799 9/14/2023