hi
You can download the source code of Account Pro.
abp get-source Volo.Abp.Account.Pro --version 9.0.2
The Login page is:
Volo.Abp.Account.Pro.Public.Web/Pages/Account/Login.cshtml
Volo.Abp.Account.Pro.Public.Web/Pages/Account/Login.cshtml.cs
Thanks.
: )
hi
Currently, you need to generate them manually if your API has changed.
Thanks.
hi
This only works for your application services, not for application services in modules(eg Identity). You can try adding their HTTP client packages and modules.
And you can consider using a tiered project. There is no need for such code.
Thanks.
hi
Same command, it will maintain the proxy files.
abp generate-proxy --type csharp --module ksvr --url http://localhost:44303 --without-contracts
Thanks.
hi
You can override the Account Layout to remove it.
Where is your UI type and Theme?
Thanks.
hi
Can you try to use --no-multi-tenancy for abp new command?
Thanks.
hi
I test a project in Docker Desktop, and it works.
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
WORKDIR /app
COPY . .
WORKDIR /app/src/AbpSolution1.Blazor
RUN dotnet dev-certs https -v -ep openiddict.pfx -p df97f7cd-f499-4977-9c9c-6beeb4da13f8
RUN chmod 644 openiddict.pfx
RUN dotnet build -c Release -o /app/build
RUN dotnet publish -c Release -o /app/publish
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS runtime
RUN useradd --create-home appuser || true
USER appuser
WORKDIR /app
ENV ASPNETCORE_URLS=http://+:8080
COPY --from=build /app/publish .
EXPOSE 8080
ENTRYPOINT ["dotnet", "AbpSolution1.Blazor.dll"]