Update .editorconfig to suggest expression body for methods when on s… #184
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.x' | |
- name: Build command line app | |
run: dotnet build src/CrackSharp.Cmd --configuration Release | |
- name: Build WebAPI app | |
run: dotnet build src/CrackSharp.Api --configuration Release |