rename Azaion.Api -> Azaion.AdminApi

This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-03-25 17:57:27 +02:00
parent 61f7c36198
commit ce44d565c8
10 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -10,9 +10,9 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/Azaion.Api/bin/Debug/net10.0/Azaion.Api.dll",
"program": "${workspaceFolder}/Azaion.AdminApi/bin/Debug/net10.0/Azaion.AdminApi.dll",
"args": [],
"cwd": "${workspaceFolder}/Azaion.Api",
"cwd": "${workspaceFolder}/Azaion.AdminApi",
"stopAtEntry": false,
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
"serverReadyAction": {
+3 -3
View File
@@ -7,7 +7,7 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/Azaion.Api.sln",
"${workspaceFolder}/Azaion.AdminApi.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
@@ -19,7 +19,7 @@
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Azaion.Api.sln",
"${workspaceFolder}/Azaion.AdminApi.sln",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
@@ -33,7 +33,7 @@
"watch",
"run",
"--project",
"${workspaceFolder}/Azaion.Api.sln"
"${workspaceFolder}/Azaion.AdminApi.sln"
],
"problemMatcher": "$msCompile"
}
+2 -2
View File
@@ -1,6 +1,6 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azaion.Api", "Azaion.Api\Azaion.Api.csproj", "{03A56CF2-A57F-4631-8454-C08B804B8903}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azaion.AdminApi", "Azaion.AdminApi\Azaion.AdminApi.csproj", "{03A56CF2-A57F-4631-8454-C08B804B8903}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Azaion.Common", "Azaion.Common\Azaion.Common.csproj", "{E838FA94-B96D-4446-B5D6-6BC1A34436C1}"
EndProject
+4 -4
View File
@@ -9,14 +9,14 @@ WORKDIR /app
COPY . .
RUN dotnet restore
WORKDIR "/app/Azaion.Api"
RUN dotnet build "Azaion.Api.csproj" -c Release -o /app/build
WORKDIR "/app/Azaion.AdminApi"
RUN dotnet build "Azaion.AdminApi.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "Azaion.Api.csproj" -c Release -o /app/publish /p:UseAppHost=false
RUN dotnet publish "Azaion.AdminApi.csproj" -c Release -o /app/publish /p:UseAppHost=false
# Build runtime
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Azaion.Api.dll"]
ENTRYPOINT ["dotnet", "Azaion.AdminApi.dll"]