build script for maui apk adjusted 2 #2

Open
itob wants to merge 29 commits from development into master
Showing only changes of commit d00b71d43a - Show all commits

View File

@ -9,6 +9,9 @@ ARG BUILD_CONFIGURATION=Release
WORKDIR /src WORKDIR /src
COPY ["../../RBLNews.Web/RBLNews.Web.csproj", "RBLNews.Web/"] COPY ["../../RBLNews.Web/RBLNews.Web.csproj", "RBLNews.Web/"]
COPY ["../../RBLNews.Shared/RBLNews.Shared.csproj", "RBLNews.Shared/"] COPY ["../../RBLNews.Shared/RBLNews.Shared.csproj", "RBLNews.Shared/"]
RUN dotnet nuget add source --name itob https://git.wohlleben.dev/api/packages/itob/nuget/index.json
RUN dotnet nuget disable source "nuget.org"
RUN dotnet add package --source itob --version 1.0.0 RBLFeederCommon
RUN dotnet restore "RBLNews.Web/RBLNews.Web.csproj" RUN dotnet restore "RBLNews.Web/RBLNews.Web.csproj"
COPY . . COPY . .
WORKDIR "/src/RBLNews.Web" WORKDIR "/src/RBLNews.Web"