Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use consistent dotnet/C# code-style #100

Merged

Commits on May 15, 2023

  1. add .editorconfig

    hoffmann-stefan committed May 15, 2023
    Configuration menu
    Copy the full SHA
    fd95a63 View commit details
    Browse the repository at this point in the history
  2. format code using dotnet format

    This was done with an temporary *.csproj file in the root of the repository:
    
    ```xml
    <Project Sdk="Microsoft.NET.Sdk">
      <PropertyGroup>
        <TargetFramework>netstandard2.0</TargetFramework>
      </PropertyGroup>
    </Project>
    ```
    
    Then run command `dotnet format` (from .NET6) in the root of the repository.
    
    Did some manual whitespace changes as well, mainly indented wrapped parameters.
    hoffmann-stefan committed May 15, 2023
    Configuration menu
    Copy the full SHA
    6655355 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f4a03f2 View commit details
    Browse the repository at this point in the history
  4. fix xunit waring

    hoffmann-stefan committed May 15, 2023
    Configuration menu
    Copy the full SHA
    217d522 View commit details
    Browse the repository at this point in the history