Skip to content

Commit fc359df

Browse files
Fix copilot-setup workflow by specifying solution file explicitly
Co-authored-by: BenjaminMichaelis <[email protected]>
1 parent 6b9e156 commit fc359df

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/actions/setup-dotnet/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ runs:
3030
3131
- name: Restore dependencies
3232
shell: bash
33-
run: dotnet restore
33+
run: dotnet restore EssentialCSharp.sln
3434

3535
- name: Build
3636
if: ${{ inputs.build == 'true' }}
3737
shell: bash
38-
run: dotnet build --no-restore
38+
run: dotnet build EssentialCSharp.sln --no-restore

.github/workflows/LocalesTest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
echo "Printing date"
5252
date
5353
echo Restore dependencies
54-
dotnet restore
54+
dotnet restore EssentialCSharp.sln
5555
echo Build
56-
dotnet build --no-restore
56+
dotnet build EssentialCSharp.sln --no-restore
5757
echo Test
5858
dotnet test --no-build --no-restore --verbosity normal

0 commit comments

Comments
 (0)