From 2453ed0929ced496bd7ed2f26715c337ab470bfd Mon Sep 17 00:00:00 2001 From: Angelo Santos Date: Mon, 8 Jul 2024 14:13:15 -0300 Subject: [PATCH] finished --- .github/workflows/dotnet.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 0858ecb..2c1e0b2 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -21,8 +21,21 @@ jobs: run: ls -la - name: Display XPhone directory contents run: ls -la XPhone - - name: Restore dependencies - run: dotnet restore dotnet restore ./XPhone/**/*.csproj + - name: Restore dependencies for XPhone.Api + run: dotnet restore ./XPhone/XPhone.Api/XPhone.Api.csproj + + - name: Restore dependencies for XPhone.Application + run: dotnet restore ./XPhone/XPhone.Application/XPhone.Application.csproj + + - name: Restore dependencies for XPhone.Domain + run: dotnet restore ./XPhone/XPhone.Domain/XPhone.Domain.csproj + + - name: Restore dependencies for XPhone.Infrastructure + run: dotnet restore ./XPhone/XPhone.Infrastructure/XPhone.Infra.csproj + + - name: Restore dependencies for XPhone.Tests + run: dotnet restore ./XPhone/XPhone.Tests/XPhone.Tests.csproj + - name: Build run: dotnet build ./XPhone --no-restore - name: Test