Adliance.Buddy.CodeStyle
8.0.0.8
Prefix Reserved
dotnet add package Adliance.Buddy.CodeStyle --version 8.0.0.8
NuGet\Install-Package Adliance.Buddy.CodeStyle -Version 8.0.0.8
<PackageReference Include="Adliance.Buddy.CodeStyle" Version="8.0.0.8" />
paket add Adliance.Buddy.CodeStyle --version 8.0.0.8
#r "nuget: Adliance.Buddy.CodeStyle, 8.0.0.8"
// Install Adliance.Buddy.CodeStyle as a Cake Addin #addin nuget:?package=Adliance.Buddy.CodeStyle&version=8.0.0.8 // Install Adliance.Buddy.CodeStyle as a Cake Tool #tool nuget:?package=Adliance.Buddy.CodeStyle&version=8.0.0.8
Adliance.Buddy.CodeStyle
This package is used to distribute a common .editorconfig file. During the build an .editorconfig file is copied from the nuget package to the project folder.
Usage
Add a Directory.Build.props file to your solution root with the following content. Replace the version by the desired nuget package version. Now the Nuget package will be installed to all projects. Alternatively the nuget package can also be directly installed in each project if desired.
<Project>
<PropertyGroup>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Adliance.Buddy.CodeStyle" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles;analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>
The copied .editorconfig files from the nuget package should be ignored via your .gitignore file.
dotnet format
The dotnet format
command also picks up the .editorconfig files.
It can be used to format and apply fixes automatically wherever possible.
dotnet format --verify-no-changes
can be used to verify if there are potential issues or not.
https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-format
EnforceCodeStyleInBuild
When the CodeStyle is enforced during build the warnings/errors are only displayed on clean builds.
Possibility for clean builds:
- use
dotnet clean
beforedotnet build
- delete
bin
andobj
directories dotnet build --no-incremental
Incremental builds do not show any warnings/errors as the build is potentially cached locally.
CI
The .editorconfig files must be in place in all project directories before formatting/building in a CI environment to ensure it is picked up correctly.
This can be done for each project with these commands:
- restore all packages with
dotnet restore
- execute the target from the nuget package manually to copy the .editorconfig file
dotnet msbuild /t:CopyEditorConfig
This can be executed like this in an Azure DevOps Pipeline:
steps:
- task: DotNetCoreCLI@2
displayName: 'Restore'
inputs:
command: restore
projects: '**/*.csproj'
- task: DotNetCoreCLI@2
displayName: 'CopyEditorConfig'
inputs:
command: custom
custom: 'msbuild'
arguments: '/t:CopyEditorConfig'
projects: '**/*.csproj'`
- task: DotNetCoreCLI@2
displayName: 'Lint'
inputs:
command: custom
projects: '**/*.csproj'
custom: format
arguments: '-v d --verify-no-changes'
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- No dependencies.
NuGet packages (10)
Showing the top 5 NuGet packages that depend on Adliance.Buddy.CodeStyle:
Package | Downloads |
---|---|
Adliance.AspNetCore.Buddy.Pdf
Library of utility methods and common functionality that are useful for most Adliance projects. |
|
Adliance.AspNetCore.Buddy.Email.Mailjet
Library of utility methods and common functionality that are useful for most Adliance projects. |
|
Adliance.OtysClient
Package Description |
|
Adliance.Storyblok
Easily integrate the Storyblok headless CMS into your ASP.NET core application. |
|
Adliance.AspNetCore.Buddy.Email.SendGrid
Library of utility methods and common functionality that are useful for most Adliance projects. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
8.0.0.8 | 3,017 | 7/25/2024 |
8.0.0.7 | 2,740 | 7/2/2024 |
8.0.0.6 | 209 | 6/24/2024 |
8.0.0.5 | 2,706 | 3/15/2024 |
8.0.0.2 | 96 | 6/24/2024 |
8.0.0.1 | 114 | 4/11/2024 |
7.0.0.11 | 2,929 | 11/22/2023 |
7.0.0.10 | 137 | 11/20/2023 |
7.0.0.6 | 219 | 10/25/2023 |
7.0.0.5 | 149 | 10/23/2023 |
7.0.0.4 | 3,272 | 8/21/2023 |
7.0.0.3 | 165 | 8/21/2023 |
7.0.0.2 | 437 | 6/26/2023 |