Skip to content

fix: Target net6.0 and net8.0 #41

fix: Target net6.0 and net8.0

fix: Target net6.0 and net8.0 #41

Workflow file for this run


on:
pull_request:
types: [ assigned, opened, synchronize, reopened ]
push:
branches:
- 'feature/**'
jobs:
build:
runs-on: windows-latest
name: Building
steps:
- name: Checkout code base
uses: actions/checkout@v2
- uses: actions/setup-dotnet@v3
with:
global-json-file: ./global.json
- name: Cleaning
run: dotnet clean -c Release
#- name: Restore NuGet packages
# run: dotnet restore EAVFW.Extensions.Manifest.ManifestEnricherTool.sln
- name: Build solution
run: dotnet build -c Release
#- name: Archive build to artifacts
# uses: actions/upload-artifact@v2
# with:
# name: build
# path: |
# build/*
# retention-days: 5