Skip to content

Fix working directory for dependency installation #661

Fix working directory for dependency installation

Fix working directory for dependency installation #661

Workflow file for this run

name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-2022
strategy:
matrix:
dotnet-version: [8, 9, 10]
steps:
- uses: actions/checkout@v2
- name: Setup dotnet ${{ matrix.dotnet-version }}.0.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
10.0.x
${{ matrix.dotnet-version }}.0.x
- name: Install dependencies
run: dotnet restore
working-directory: ./src/Blazor-ApexCharts
- name: Build
run: dotnet build --configuration Release --no-restore --framework net${{ matrix.dotnet-version }}.0
working-directory: ./src/Blazor-ApexCharts