From 790b759434f579f183a5f65464e457a87e67ac9e Mon Sep 17 00:00:00 2001 From: vidyasagarnimmagaddi <160703874+vidyasagarnimmagaddi@users.noreply.github.com> Date: Fri, 31 Jan 2025 14:07:54 +0530 Subject: [PATCH] Update Globalization.yaml --- .github/workflows/Globalization.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Globalization.yaml b/.github/workflows/Globalization.yaml index 6014399be24e..f576afb1c4d0 100644 --- a/.github/workflows/Globalization.yaml +++ b/.github/workflows/Globalization.yaml @@ -27,15 +27,15 @@ jobs: run: | dotnet --info | grep 'System.Globalization.Invariant' || echo "Globalization Invariant not found (expected when disabled)" - - name: List files to check project structure + - name: List repository files recursively run: ls -R - name: Restore .NET dependencies run: | - cd my-dotnet-project # <-- Replace with the actual project directory (check the output of `ls -R`) + cd src/my-dotnet-project # <-- Use the correct directory based on ls -R output dotnet restore - name: Build .NET project run: | - cd my-dotnet-project # <-- Ensure you're in the correct directory + cd src/my-dotnet-project # <-- Again, update this to the correct path dotnet build