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", "request": "launch",
"preLaunchTask": "build", "preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path. // 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": [], "args": [],
"cwd": "${workspaceFolder}/Azaion.Api", "cwd": "${workspaceFolder}/Azaion.AdminApi",
"stopAtEntry": false, "stopAtEntry": false,
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
"serverReadyAction": { "serverReadyAction": {
+3 -3
View File
@@ -7,7 +7,7 @@
"type": "process", "type": "process",
"args": [ "args": [
"build", "build",
"${workspaceFolder}/Azaion.Api.sln", "${workspaceFolder}/Azaion.AdminApi.sln",
"/property:GenerateFullPaths=true", "/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign" "/consoleloggerparameters:NoSummary;ForceNoAlign"
], ],
@@ -19,7 +19,7 @@
"type": "process", "type": "process",
"args": [ "args": [
"publish", "publish",
"${workspaceFolder}/Azaion.Api.sln", "${workspaceFolder}/Azaion.AdminApi.sln",
"/property:GenerateFullPaths=true", "/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign" "/consoleloggerparameters:NoSummary;ForceNoAlign"
], ],
@@ -33,7 +33,7 @@
"watch", "watch",
"run", "run",
"--project", "--project",
"${workspaceFolder}/Azaion.Api.sln" "${workspaceFolder}/Azaion.AdminApi.sln"
], ],
"problemMatcher": "$msCompile" "problemMatcher": "$msCompile"
} }
+2 -2
View File
@@ -1,6 +1,6 @@

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