Skip to content

Update .editorconfig to suggest expression body for methods when on s… #184

Update .editorconfig to suggest expression body for methods when on s…

Update .editorconfig to suggest expression body for methods when on s… #184

Workflow file for this run

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