Skip to content

+ Added support net8 also #6

+ Added support net8 also

+ Added support net8 also #6

Workflow file for this run

name: CI and Build Package
on:
push:
branches: [ "main" ]
jobs:
windows64:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Restore dependencies
run: dotnet restore src/FlowCommandLine/FlowCommandLine.sln
- name: Build
run: dotnet build --configuration Release src/FlowCommandLine/FlowCommandLine.sln
- name: Tests
run: dotnet test --configuration Release src/FlowCommandLine/FlowCommandLine.sln
- name: Pack package
run: dotnet pack --configuration Release --no-build --output . src/FlowCommandLine/FlowCommandLine.csproj