mirror of
https://github.com/azaion/admin.git
synced 2026-04-22 03:46:34 +00:00
rename Azaion.Api -> Azaion.AdminApi
This commit is contained in:
Vendored
+2
-2
@@ -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": {
|
||||
|
||||
Vendored
+3
-3
@@ -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"
|
||||
}
|
||||
|
||||
@@ -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
@@ -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"]
|
||||
|
||||
Reference in New Issue
Block a user