HellBrick.Diagnostics 1.4.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package HellBrick.Diagnostics --version 1.4.2
NuGet\Install-Package HellBrick.Diagnostics -Version 1.4.2
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="HellBrick.Diagnostics" Version="1.4.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HellBrick.Diagnostics --version 1.4.2
#r "nuget: HellBrick.Diagnostics, 1.4.2"
#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 HellBrick.Diagnostics as a Cake Addin
#addin nuget:?package=HellBrick.Diagnostics&version=1.4.2

// Install HellBrick.Diagnostics as a Cake Tool
#tool nuget:?package=HellBrick.Diagnostics&version=1.4.2

Diagnostics

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on HellBrick.Diagnostics:

Package Downloads
ZeroORM.Extensibility

Core package for ZeroORM developing. Contains main service interfaces for extending ZeroORM by adding new metadata sources, DB drivers and so on. Is not intended for linking directly in non-ZeroORM projects.

ZeroORM

ZeroORM core package containing all of the data-dealing methods

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on HellBrick.Diagnostics:

Repository Stars
HellBrick/AsyncCollections
A .NET library that contains a set of lock-free thread-safe collections designed to be used asynchronously.
Version Downloads Last updated
6.0.0 220 11/24/2023
5.0.2 479 9/23/2022
5.0.1 471 1/18/2022
5.0.0 445 1/17/2022
4.0.0 2,213 12/26/2019
3.3.0 994 3/24/2019
3.2.0 699 2/18/2019
3.1.1 7,050 6/24/2018
3.1.0 1,018 6/12/2018
3.0.2 1,244 4/18/2018
3.0.1 2,820 2/5/2018
3.0.0 1,880 1/8/2018
2.0.0 2,479 8/20/2017
1.7.1 1,043 1/17/2017
1.7.0 1,027 12/21/2016
1.6.0 1,257 7/23/2016
1.5.1 1,019 7/23/2016
1.5.0 1,136 3/7/2016
1.4.5 1,573 1/18/2016
1.4.4 1,118 12/22/2015
1.4.3 1,121 12/4/2015
1.4.2 1,449 10/4/2015
1.4.1 1,434 10/4/2015
1.4.0 1,139 9/27/2015
1.3.0 1,118 9/20/2015
1.2.1 1,107 9/20/2015
1.2.0 1,165 7/27/2015
1.1.0 1,134 7/25/2015
1.0.2 1,104 7/24/2015
1.0.1 1,507 7/13/2015
1.0.0 1,350 7/11/2015

v1.4.2:
- an attempt to fix the FormattingAnalyzer warning issued on VS loading it from a nuget package

v1.4.1:
- merged in the analyzer that enforces ConfigureAwait()
- fixed a bunch of bugs

v1.4.0:
- an analyzer that enforces explicit access modifiers
- an analyzer that enforces immutability and equatability on structs
- all analyzers ignore auto-generated code

v1.3.0:
- an analyzer that enforces the proper code formatting
- a refactoring to convert one-line properties to expression-bodied properties

v1.2.1:
- fixed Nuget package installation issues
- readonly modifier can now be enforced on fields of primitive types
- var can be converted to explicit type inside the using declaration block
- var can no longer be converted if it's generic type with anonymous arguments
- conversion to expression-bodied member is no longer suggested for the methods that can't be converted
- the reference is no longer considered unused if a method that returns a type declared in it is invoked

v1.2.0:
- a refactoring to convert String.Format() call to an interpolated string
- a refactoring to convert var to explicit type name and back

v1.1.0:
- unused project references are reported to the error/information list

v1.0.2:
- upgraded to VS 2015 RTM

v1.0.1:
- readonly modifier is no longer enforced on value type fields (to avoid SpinLock-like issues)

v1.0.0:
- enforce readonly modifier on fields
- convert one-line methods to expression-bodied methods