Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/Ali-YousefiTelori/Cores
Browse files Browse the repository at this point in the history
…into develop
  • Loading branch information
Ali-YousefiTelori committed Feb 15, 2024
2 parents b993b75 + 0f4b123 commit e760bea
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/nuget-push-public-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,24 @@ jobs:
run: |
git clone https://github.com/EasyMicroservices/Authentications-Microservice.git
cd Authentications-Microservice
dotnet run --project src/CSharp/EasyMicroservices.AuthenticationsMicroservice.WebApi/EasyMicroservices.AuthenticationsMicroservice.WebApi.csproj &
dotnet run --project src/CSharp/EasyMicroservices.AuthenticationsMicroservice.WebApi/EasyMicroservices.AuthenticationsMicroservice.WebApi.csproj --framework net8.0 &
AUTH_PID=$!
echo "Started Authentication Service with PID $AUTH_PID"
cd ..
echo "Authentication Service started successfully"
shell: bash

- name: Clone and run WhiteLabel
run: |
git clone https://github.com/EasyMicroservices/WhiteLabels-Microservice.git
cd WhiteLabels-Microservice
dotnet run --project src/CSharp/EasyMicroservices.WhiteLabelsMicroservice.WebApi/EasyMicroservices.WhiteLabelsMicroservice.WebApi.csproj &
dotnet run --project src/CSharp/EasyMicroservices.WhiteLabelsMicroservice.WebApi/EasyMicroservices.WhiteLabelsMicroservice.WebApi.csproj --framework net8.0 &
WHITELABEL_PID=$!
echo "Started WhiteLabel Service with PID $WHITELABEL_PID"
cd ..
echo "WhiteLabels Service started successfully"
shell: bash
- name: Restore dependencies
run: dotnet restore ./src/CSharp/EasyMicroservices.Cores.sln
Expand All @@ -46,4 +50,4 @@ jobs:
run: echo "Shutting down Authentication Service with PID $AUTH_PID"
kill $AUTH_PID echo "Authentication Service shutdown failed"
echo "Shutting down WhiteLabel Service with PID $WHITELABEL_PID"
kill $WHITELABEL_PID echo "WhiteLabel Service shutdown failed"
kill $WHITELABEL_PID echo "WhiteLabel Service shutdown failed"
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ static ActivityChangeLogEntity GetActivityChangeLogEntity<TEntity>(TEntity entit
/// <param name="entities"></param>
/// <param name="baseUnitOfWork"></param>
/// <returns></returns>
public static async Task AddBuldAsync<TEntity>(IEnumerable<TEntity> entities, IBaseUnitOfWork baseUnitOfWork)
public static async Task AddBulkAsync<TEntity>(IEnumerable<TEntity> entities, IBaseUnitOfWork baseUnitOfWork)
{
if (!UseActivityChangeLog || typeof(TEntity) == typeof(ActivityChangeLogEntity))
return;
Expand Down

0 comments on commit e760bea

Please sign in to comment.