Skip to content

Build: update build arguments for .NET 8 #33

Build: update build arguments for .NET 8

Build: update build arguments for .NET 8 #33

Workflow file for this run

name: FileHashGenerator
on:
push:
paths:
- 'src/**'
- '.github/workflows/**'
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build x64
run: dotnet build ./src/FileHashGenerator/FileHashGenerator.Presentation/ -c Release --no-self-contained /p:Platform=x64
- name: Build arm64
run: dotnet build ./src/FileHashGenerator/FileHashGenerator.Presentation/ -c Release --no-self-contained /p:Platform=arm64
- name: Test
run: dotnet test ./src/FileHashGenerator/FileHashGenerator.sln -c Release