diff --git a/.github/actions/setup-dotnet/action.yml b/.github/actions/setup-dotnet/action.yml index 01a84e32..af43bb64 100644 --- a/.github/actions/setup-dotnet/action.yml +++ b/.github/actions/setup-dotnet/action.yml @@ -30,9 +30,9 @@ runs: - name: Restore dependencies shell: bash - run: dotnet restore + run: dotnet restore EssentialCSharp.sln - name: Build if: ${{ inputs.build == 'true' }} shell: bash - run: dotnet build --no-restore \ No newline at end of file + run: dotnet build EssentialCSharp.sln --no-restore \ No newline at end of file diff --git a/.github/workflows/LocalesTest.yml b/.github/workflows/LocalesTest.yml index abe667e2..d4cf0468 100644 --- a/.github/workflows/LocalesTest.yml +++ b/.github/workflows/LocalesTest.yml @@ -51,8 +51,8 @@ jobs: echo "Printing date" date echo Restore dependencies - dotnet restore + dotnet restore EssentialCSharp.sln echo Build - dotnet build --no-restore + dotnet build EssentialCSharp.sln --no-restore echo Test dotnet test --no-build --no-restore --verbosity normal