Allegro.DotnetSdk 2.2.2

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
<Sdk Name="Allegro.DotnetSdk" Version="2.2.2" />
For projects that support Sdk, copy this XML node into the project file to reference the package.

Allegro .NET SDK

About

The Allegro .NET SDK provides common and importable project settings, such as build properties, coding styles, analyzers configuration etc.

The SDK is versioned and published on nuget. It can be imported into dotnet projects.

Using the SDK

The SDK is meant to be easily importable - only a few initial config lines are required to bring its benefits. The SDK also makes it possible to override any of its default settings. Version 2+ will work only with .NET SDK v8+.

Importing

The sections below list the changes required in order to import the SDK.

Additional information can be found in the docs - Reference a project SDK.

global.json

It's necessary to include Allegro.DotnetSdk with the desired version in global.json in the repository root:

{
  "sdk": {
    "version": "8.0.100",
    "rollForward": "latestFeature"
  },
  "msbuild-sdks": {
    "Allegro.DotnetSdk": "2.2.2"
  }
}

Directory.Build.props

The Directory.Build.props file should be updated in order to actually import the SDK:

<Project>
    <Sdk Name="Allegro.DotnetSdk" />
    
    
</Project>

Project settings

Most properties are only set in the SDK if not configured by the project.

To configure the SDK, the following properties can be added into Directory.Build.props or .*proj files:

  • AllegroDotnetSdkEnableXmlDocAdjustments (default: true) - enable doc file generation, suppress missing-comments warning (1591) - completely in test projects, as errors otherwise (keep as warning).
  • AllegroDotnetSdkTreatWarningsAsErrors (default: true in CI and Rider IDE) - to enable in local shell or other IDEs, just set your own user environment variable TreatWarningsAsErrors=true.
  • AllegroDotnetSdkEnableGlobalEditorConfig (default: true) - add editorconfig.global analyzer configuration file.
  • AllegroDotnetSdkEnablePackAdjustments (default: true) - sets PublishRepositoryUrl and enables .snupkg symbols.
  • AllegroDotnetSdkEnableAzureArtifactsAdjustments (default: false) - disables .snupkg and instead embeds PDBs in .nupkg.

For C# only:

  • AllegroDotnetSdkEnableImplicitUsingsAdjustments (default: true for C#) - add System.Collections.Immutable and remove Microsoft.Extensions.Logging and System.Net.Http implicit usings.
  • AllegroDotnetSdkEnableStyleCopConfig (default: true for C#) - references a preset stylecop.json.

Configure in Directory.Build.props - repo wide:

<Project>

    <Sdk Name="Allegro.DotnetSdk" />

    <PropertyGroup>
        
        <Nullable>disable</Nullable>
        
        <AllegroDotnetSdkEnableStyleCopConfig>false</AllegroDotnetSdkEnableStyleCopConfig>
    </PropertyGroup>

</Project>

Configure in *.csproj - project settings:

<Project Sdk="Microsoft.NET.Sdk">

    <PropertyGroup>
        
        <AllegroDotnetSdkEnableImplicitUsingsAdjustments>false</AllegroDotnetSdkEnableImplicitUsingsAdjustments>
    </PropertyGroup>

</Project>

Analyzers

This SDK provides some default configuration (rules severity) for selected analyzers: StyleCop, Meziantou and AsyncFixer. It doesn't actually reference them. Avoiding direct references ensures that developers can seamlessly apply and update analyzers without being tied to specific versions.

To add analyzers, include the following in your Directory.Build.props or Directory.Packages.props file:

<Project>
    
    <ItemGroup>
        <GlobalPackageReference Include="AsyncFixer" Version="1.6.0"/>
        <GlobalPackageReference Include="Meziantou.Analyzer" Version="1.0.758"/>
        <GlobalPackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435"/>
    </ItemGroup>
    
</Project>

Editor config

The SDK contains a global analyzer config file containing the default configuration for various analyzers and formatters.

Its entries can be also overridden by entries from .editorconfig. Such editor config files are merged with the imported global config file.

More about the analyzer and editor config files can be found in the docs.

IDEs support

Rider

Make sure you have enabled:

  • Preferences → Editor → Code Style → Enable StyleCop support (Ruleset files)
  • Preferences → Editor → Code Style → Enable EditorConfig support
  • Preferences → Editor → Inspection Settings → Read settings from editorconfig, project settings and rule sets
  • Preferences → Editor → Inspection Settings → Roslyn → Enable Roslyn analyzers and Source Generators
  • Preferences → Editor → Inspection Settings → Roslyn → Include Roslyn analyzers in Solution-Wide Analysis

Be aware! Only some analyzers's warnings can be addressed by auto-format or code cleanup. Some of the warnings are not covered by Rider, and its settings need to be adjusted.
For that, in editor.globalconfig is # ReSharper properties section with some already defined settings which align with analyzers. If you find some inconsistency and you find appropriate settings in Rider, which will fix it - please, contribute! 😃

License

Copyright Allegro Group

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • net8.0

    • 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
2.2.2 101 4/10/2024
2.2.1 150 4/3/2024
2.1.1 264 1/29/2024
2.1.0 181 1/17/2024
2.0.0 250 1/10/2024
1.2.2 2,028 6/15/2023
1.2.1 9,535 1/31/2023
1.2.0 262 1/30/2023
1.1.0 274 1/27/2023
1.0.3 1,288 11/23/2022
1.0.2 962 10/17/2022
1.0.1 404 10/14/2022