Fixed workflow to build from src directory

This commit is contained in:
Tony Bark 2023-01-02 16:30:31 -05:00
parent 4210e21c65
commit f069c20616

View file

@ -21,6 +21,6 @@ jobs:
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Install dependencies
run: dotnet restore
run: dotnet restore src
- name: Build
run: dotnet build --configuration Release --no-restore
run: dotnet build src --configuration Release --no-restore