Refactor: Move server implementation to SimpleIdp.Server subfolder

This commit is contained in:
Marek Lesko
2026-06-11 13:19:24 +02:00
parent 59a46e8a1f
commit cccfb45bd5
99 changed files with 29 additions and 20 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ WORKDIR /src
COPY . .
# Restore & publish (self-contained trimming can be added later if desired)
RUN dotnet restore SimpleIdp.csproj
RUN dotnet publish SimpleIdp.csproj -c $BUILD_CONFIGURATION -o /app/publish --no-restore
RUN dotnet restore SimpleIdp.Server/SimpleIdp.csproj
RUN dotnet publish SimpleIdp.Server/SimpleIdp.csproj -c $BUILD_CONFIGURATION -o /app/publish --no-restore
# =========================
# Runtime stage