From 99c3f77ac088efb231a8248d04abbba604736a4a Mon Sep 17 00:00:00 2001 From: Ali Yousefi Date: Sat, 3 Feb 2024 01:44:48 +0330 Subject: [PATCH] Update nuget-push-public-windows.yml --- .github/workflows/nuget-push-public-windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nuget-push-public-windows.yml b/.github/workflows/nuget-push-public-windows.yml index d9d6e12..ee9f7f9 100644 --- a/.github/workflows/nuget-push-public-windows.yml +++ b/.github/workflows/nuget-push-public-windows.yml @@ -16,7 +16,7 @@ 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 | tee output.txt & + dotnet run --project src/CSharp/EasyMicroservices.AuthenticationsMicroservice.WebApi/EasyMicroservices.AuthenticationsMicroservice.WebApi.csproj --framework net8.0 | tee output.txt & AUTH_PID=$! echo "Started Authentication Service with PID $AUTH_PID" cd .. @@ -32,7 +32,7 @@ jobs: 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 | tee output.txt & + dotnet run --project src/CSharp/EasyMicroservices.WhiteLabelsMicroservice.WebApi/EasyMicroservices.WhiteLabelsMicroservice.WebApi.csproj --framework net8.0 | tee output.txt & WHITELABEL_PID=$! echo "Started WhiteLabel Service with PID $WHITELABEL_PID" cd ..