Aksio.Defaults.Specs 1.4.9

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Aksio.Defaults.Specs --version 1.4.9
NuGet\Install-Package Aksio.Defaults.Specs -Version 1.4.9
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="Aksio.Defaults.Specs" Version="1.4.9" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aksio.Defaults.Specs --version 1.4.9
#r "nuget: Aksio.Defaults.Specs, 1.4.9"
#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 Aksio.Defaults.Specs as a Cake Addin
#addin nuget:?package=Aksio.Defaults.Specs&version=1.4.9

// Install Aksio.Defaults.Specs as a Cake Tool
#tool nuget:?package=Aksio.Defaults.Specs&version=1.4.9

Defaults

Build Nuget Nuget

This repository contains the default setup for projects with properties for how they should build and also static code analysis for projects. It contains custom rules and the default rule-sets with the tuned rules we care about.

Read more about the custom analyzers here.

Getting Started

In your project all you need is to add a PackageReference to the package. The dotnet tool-chain will during build include any .props or .targets files found in the package by convention. From the .props file you'll get a lot of default configuration set up, it will put in package information saying it is an Aksio package and all the defaults of Aksio. This can be overridden if you're only interested in parts of the configuration.

If you're using an IDE such as Visual Studio, add a reference to the Aksio.Defaults package from the UI.

If you're using the dotnet tool you add the reference by doing the following from your terminal:

$ dotnet add package Aksio.Defaults

Or manually add the following to your .csproj - obviously for good measure, you should just add the <PackageReference> inside an existing <ItemGroup> with package references.

<ItemGroup>
    <PackageReference Include="Aksio.Defaults" Version="1.*" PrivateAssets="All"/>
</ItemGroup>

Note: The PrivateAssets="All" is important to not let the rules and setup affect any consumer of your package.

By using a wildcard for minor in the version of the packages, you're guaranteed to have the latest of the package.

For your spec projects there is a second package with specific rules for that context as we tend to write the specs differently; Aksio.Defaults.Specs.

MSBuild

This project relies heavily on MSBuild and its capabilities. It leverages both reserved well known properties and common project properties. It takes advantage of a feature in MSBuild that by convention will include props from a file named the same as its package name in any consumers. In our case this is the Aksio.Defaults.props and Aksio.Defaults.Specs.props.

Static Code Analysis

The props files configures a default behavior for builds with a common set of static code analysis rules and stylecop rules. In addition to this it provides a set of default NuGet metadata properties to ease the creation of projects that are to be published as NuGet packages.

Read more about the ruleset format and the default rulset. In addition, we leverage a 3rd party ruleset - read more about the different rules here.

This repository also adds custom Aksio rules. Read the documentation on the different rules.

With the introduction of Global AnalyserConfig one can take typical things one would hav ein .editorconfig files and package for reuse. This project does so as well by adding a global editorconfig. For examples on how these can be set up look here or here.

Packages

NuGet packages that are published on the public NuGet feed should adhere to the defined best practices. The default props file puts in most of the metadata, but some of it is specific to each project and should be included specifically in the .csproj or Directory.Build.props.

Add the following properties and configure them according to your project:

<PropertyGroup>
    <IsPackable>true</IsPackable>
    <RepositoryUrl>https://github.com/aksio-system/{repository}</RepositoryUrl>
    <PackageProjectUrl>https://github.com/aksio-system/{repository}</PackageProjectUrl>
</PropertyGroup>

In addition you might want to include the README file of your project. Add the following with the correct relative filepath to the README file:

<PropertyGroup>
    <PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
    <Content Include="../README.md" PackagePath="/" />
</ItemGroup>
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.

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.6.10 8,383 5/11/2023
1.6.9 84 5/11/2023
1.6.8 2,066 10/14/2022
1.6.7 123 9/30/2022
1.6.6 340 9/6/2022
1.6.6-pr83.33f98e0 93 9/30/2022
1.6.5 96 9/6/2022
1.6.4 321 5/24/2022
1.6.3 181 5/4/2022
1.6.2 118 5/4/2022
1.6.1 120 5/4/2022
1.6.0 124 5/4/2022
1.5.15 133 4/24/2022
1.5.14 123 4/18/2022
1.5.13 121 4/18/2022
1.5.12 118 4/17/2022
1.5.11 123 4/16/2022
1.5.10 247 3/25/2022
1.5.9 116 3/25/2022
1.5.8 168 1/15/2022
1.5.7 129 1/15/2022
1.5.6 137 1/15/2022
1.5.5 136 1/15/2022
1.5.4 139 1/14/2022
1.5.3 134 1/14/2022
1.5.2 136 1/14/2022
1.5.1 135 1/14/2022
1.5.0 135 1/14/2022
1.4.12 190 12/16/2021
1.4.11 148 12/16/2021
1.4.10 145 12/16/2021
1.4.9 170 12/16/2021
1.4.8 149 12/15/2021
1.4.7 157 12/15/2021
1.4.6 165 12/15/2021
1.4.5 155 12/15/2021
1.4.4 158 12/15/2021
1.4.3 157 12/15/2021
1.4.2 156 12/15/2021
1.4.1 160 12/15/2021
1.4.0 148 12/15/2021
1.3.1 147 12/15/2021
1.2.6 166 12/15/2021
1.2.5 157 12/15/2021
1.2.4 145 12/14/2021
1.2.3 143 12/14/2021
1.2.2 144 12/14/2021
1.2.1 155 12/6/2021
1.2.0 157 12/6/2021
1.1.19 145 11/23/2021
1.1.18 162 10/28/2021
1.1.17 245 10/27/2021
1.1.16 167 10/26/2021
1.1.15 166 10/13/2021
1.1.14 149 10/13/2021
1.1.13 166 10/6/2021
1.1.12 164 10/1/2021
1.1.11 202 9/22/2021
1.1.10 193 9/17/2021
1.1.9 298 9/15/2021
1.1.8 291 9/15/2021
1.1.7 304 9/15/2021
1.1.6 308 9/15/2021
1.1.5 292 9/15/2021
1.1.4 269 9/14/2021
1.1.3 305 9/14/2021
1.1.2 301 9/14/2021
1.1.1 311 9/14/2021
1.1.0 294 9/14/2021
1.0.2 308 9/14/2021
1.0.1 357 9/14/2021