diff --git a/.github/workflows/dotnet-format-action.yml b/.github/workflows/dotnet-format-action.yml index f9ed8b1..5fc297c 100644 --- a/.github/workflows/dotnet-format-action.yml +++ b/.github/workflows/dotnet-format-action.yml @@ -20,10 +20,10 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} action: "fix" - workspace: "./src/CSharp/EasyMicroservices.UI.Core.sln" + workspace: "./src/CSharp/Cores/EasyMicroservices.UI.Core.sln" - name: Test run: | - dotnet test ./src/CSharp/EasyMicroservices.UI.Core.sln -f net7.0 + dotnet test ./src/CSharp/Cores/EasyMicroservices.UI.Core.sln -f net7.0 - name: Commit files if: steps.format.outputs.has-changes == 'true' uses: EndBug/add-and-commit@v4.1.0 diff --git a/.github/workflows/dotnet-linux.yml b/.github/workflows/dotnet-linux.yml index 8707287..5771034 100644 --- a/.github/workflows/dotnet-linux.yml +++ b/.github/workflows/dotnet-linux.yml @@ -17,9 +17,9 @@ jobs: dotnet-version: | 7.0.x - name: Restore dependencies - run: dotnet restore ./src/CSharp/EasyMicroservices.UI.Core.sln + run: dotnet restore ./src/CSharp/Cores/EasyMicroservices.UI.Core.sln - name: Build - run: dotnet build ./src/CSharp/EasyMicroservices.UI.Core.sln --no-restore + run: dotnet build ./src/CSharp/Cores/EasyMicroservices.UI.Core.sln --no-restore - name: Test run: | dotnet test ./src/CSharp/EasyMicroservices.UI.Core.sln --no-build --verbosity normal -f net7.0 diff --git a/.github/workflows/dotnet-macos.yml b/.github/workflows/dotnet-macos.yml index ae55363..a89561a 100644 --- a/.github/workflows/dotnet-macos.yml +++ b/.github/workflows/dotnet-macos.yml @@ -17,9 +17,9 @@ jobs: dotnet-version: | 7.0.x - name: Restore dependencies - run: dotnet restore ./src/CSharp/EasyMicroservices.UI.Core.sln + run: dotnet restore ./src/CSharp/Cores/EasyMicroservices.UI.Core.sln - name: Build - run: dotnet build ./src/CSharp/EasyMicroservices.UI.Core.sln --no-restore + run: dotnet build ./src/CSharp/Cores/EasyMicroservices.UI.Core.sln --no-restore - name: Test run: | - dotnet test ./src/CSharp/EasyMicroservices.UI.Core.sln --no-build --verbosity normal -f net7.0 + dotnet test ./src/CSharp/Cores/EasyMicroservices.UI.Core.sln --no-build --verbosity normal -f net7.0 diff --git a/.github/workflows/dotnet-windows.yml b/.github/workflows/dotnet-windows.yml index 9e0ae2c..a3bf727 100644 --- a/.github/workflows/dotnet-windows.yml +++ b/.github/workflows/dotnet-windows.yml @@ -17,8 +17,8 @@ jobs: dotnet-version: | 7.0.x - name: Restore dependencies - run: dotnet restore ./src/CSharp/EasyMicroservices.UI.Core.sln + run: dotnet restore ./src/CSharp/Cores/EasyMicroservices.UI.Core.sln - name: Build - run: dotnet build ./src/CSharp/EasyMicroservices.UI.Core.sln --no-restore + run: dotnet build ./src/CSharp/Cores/EasyMicroservices.UI.Core.sln --no-restore - name: Test - run: dotnet test ./src/CSharp/EasyMicroservices.UI.Core.sln --no-build --verbosity normal + run: dotnet test ./src/CSharp/Cores/EasyMicroservices.UI.Core.sln --no-build --verbosity normal diff --git a/.github/workflows/nuget-push-public.yml b/.github/workflows/nuget-push-public.yml index bf18072..031a59a 100644 --- a/.github/workflows/nuget-push-public.yml +++ b/.github/workflows/nuget-push-public.yml @@ -14,12 +14,12 @@ jobs: env: DOTNET_INSTALL_DIR: /usr/share/dotnet - name: Restore dependencies - run: dotnet restore ./src/CSharp/EasyMicroservices.UI.Core.sln + run: dotnet restore ./src/CSharp/Cores/EasyMicroservices.UI.Core.sln - name: Build - run: dotnet build ./src/CSharp/EasyMicroservices.UI.Core.sln --no-restore + run: dotnet build ./src/CSharp/Cores/EasyMicroservices.UI.Core.sln --no-restore - name: Test - run: dotnet test ./src/CSharp/EasyMicroservices.UI.Core.sln --no-build --verbosity normal + run: dotnet test ./src/CSharp/Cores/EasyMicroservices.UI.Core.sln --no-build --verbosity normal - name: Create the package - run: dotnet pack ./src/CSharp/EasyMicroservices.UI.Core.sln --output nupkgs + run: dotnet pack ./src/CSharp/Cores/EasyMicroservices.UI.Core.sln --output nupkgs - name: Publish the package to NuGet.org run: dotnet nuget push nupkgs\*.nupkg -k ${{secrets.NUGET_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate \ No newline at end of file