Skip to content

Commit 8106de0

Browse files
committed
Github Actions: make all dotnet commands work by adding the sln file
* previously one got errors like this: MSBUILD : error MSB1003: Specify a project or solution file. The current working directory does not contain a project or solution file.
1 parent 5e1a1b9 commit 8106de0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
with:
2121
dotnet-version: 3.1.301
2222
- name: Install dependencies
23-
run: dotnet restore
23+
run: dotnet restore src/GeoJSON.Net.sln
2424
- name: Build
25-
run: dotnet build --configuration Release --no-restore
25+
run: dotnet build src/GeoJSON.Net.sln --configuration Release --no-restore
2626
- name: Test
27-
run: dotnet test --no-restore --verbosity normal
27+
run: dotnet test src/GeoJSON.Net.sln --no-restore --verbosity normal

0 commit comments

Comments
 (0)