From 2ac2476e6dea6262614a9f1e039adcb96df47e75 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Wed, 12 Jun 2024 07:22:43 -0400 Subject: [PATCH] fix: adds missing solution file name to commands --- .github/workflows/get-started-dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/get-started-dotnet.yml b/.github/workflows/get-started-dotnet.yml index 6d324120c..e218ae751 100644 --- a/.github/workflows/get-started-dotnet.yml +++ b/.github/workflows/get-started-dotnet.yml @@ -72,10 +72,10 @@ jobs: dotnet-version: 8.x - name: Restore dependencies dotnet-dependency-injection - run: dotnet restore + run: dotnet restore ./dotnet-dependency-injection.sln working-directory: get-started/dotnet-dependency-injection/ - name: Build dotnet-dependency-injection - run: dotnet build --no-restore + run: dotnet build ./dotnet-dependency-injection.sln --no-restore working-directory: get-started/dotnet-dependency-injection/ build-quickstart-dotnet: