devolutions-crypto 0.9.2

An abstraction layer for the cryptography used by Devolutions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Check C# Code Format
description: Ensure that the C# code format is compliant
runs:
  using: composite
  steps:
    - name: Download Config
      uses: actions/download-artifact@v4
      with:
        name: config.txt
        path: ./wrappers/csharp

    - name: Run .NET format
      shell: bash
      working-directory: ./wrappers/csharp/src/
      run: |
        dotnet tool install -g dotnet-format
        dotnet format devolutions-crypto.csproj --verify-no-changes