【Azure DevOps系列】Azure DevOps構建併發布.NET5應用程式

HueiFeng發表於2020-09-23

Azure App Service

獨立部署

Azure App Service中我們可以通過獨立部署進行部署我們的.NET5應用程式,因為它不會依賴目標系統上的環境,並且所有元件(包括librarys和執行時)都與該應用程式一起使用,並且與其他應用程式進行隔離,這樣其實我們更好的去控制應用程式執行的版本。

1、選擇要釋出的專案,滑鼠右鍵單擊專案,然後選擇釋出,會出現如下內容:

file

2、接下來我們可以選擇Linux應用服務或Windows應用服務

file

3、最後我們點選完成後選擇部署模式此處選擇獨立模式

file

接下來我們釋出應用程式即可

框架依賴

目前在Azure App Service中並沒有為我們提供預設的.net5執行時環境,那麼我們如何以框架依賴的形式使用.net5呢?看如下步驟

1、點選左側的擴充套件

file

2、選擇.NET5執行時,如下圖所示

file

這樣我們就完成了我們框架依賴的配置,也不能說配置,可以說是這樣我們就已經完成了在我們App Service中安裝了.net5的環境,所以我們可以去使用框架依賴的形式去釋出我們的程式碼。

容器部署

執行.NET 5應用程式的另一種方法是將Docker容器部署到Linux或Windows上的App Service(僅Premium SKU)。部署容器時,我們會將應用程式及其依賴項打包到基於Linux或Windows的映像中,以在App Service平臺上執行。這使我們的應用程式本質上更具可移植性,因為它不依賴於主機作業系統,並且在映像中新增了執行時和SDK。

一旦為.NET 5設定了應用程式,部署容器化應用程式的步驟將與任何其他容器部署相同。 右鍵單擊我們的專案,然後單擊新增-> Docker支援。我們的.NET Core專案將新增一個新的Dockerfile,其中包含.NET 5.0基本映像和SDK,供我們釋出。

#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.

FROM mcr.microsoft.com/dotnet/core/aspnet:5.0-buster-slim AS base

WORKDIR /app
EXPOSE 80
EXPOSE 443

FROM mcr.microsoft.com/dotnet/core/sdk:5.0-buster AS build
WORKDIR /src
COPY ["src/TinyBlog.Hosts.Web.Server/NuGet.config","src/TinyBlog.Hosts.Web.Server/"]
COPY ["src/TinyBlog.Hosts.Web.Server/TinyBlog.Hosts.Web.Server.csproj", "src/TinyBlog.Hosts.Web.Server/"]
COPY ["src/TinyBlog.Hosts.Web.Client/TinyBlog.Hosts.Web.Client.csproj", "src/TinyBlog.Hosts.Web.Client/"]
RUN dotnet restore "src/TinyBlog.Hosts.Web.Server/TinyBlog.Hosts.Web.Server.csproj" --configfile "src/TinyBlog.Hosts.Web.Server/NuGet.config"
COPY . .
WORKDIR "/src/src/TinyBlog.Hosts.Web.Server"
RUN dotnet build "TinyBlog.Hosts.Web.Server.csproj" -c Release -o /app/build

FROM build AS publish
RUN dotnet publish "TinyBlog.Hosts.Web.Server.csproj" -c Release -o /app/publish

FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "TinyBlog.Hosts.Web.Server.dll"]

另外要注意的是對Nuget倉庫的使用,我們需要進行配置一下將其在nuget包還原的時候還能在倉庫中獲取到我們所需要的包,NuGet.config如下所示:

  
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <clear />
    <!--Begin: Package sources managed by Dependency Flow automation. Do not edit the sources below.-->
    <add key="darc-pub-dotnet-blazor-cc44960" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-blazor-cc449601/nuget/v3/index.json" />
    <!--End: Package sources managed by Dependency Flow automation. Do not edit the sources above.-->
    <add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
    <add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
    <add key="dotnet5" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json" />
    <add key="dotnet5-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5-transport/nuget/v3/index.json" />
    <add key="roslyn" value="https://dotnet.myget.org/F/roslyn/api/v3/index.json" />
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
    <add key="roslyn-tools" value="https://dotnet.myget.org/F/roslyn-tools/api/v3/index.json" />
    <!-- Used for the SiteExtension 3.1 bits that are included in the 5.0 build -->
    <add key="dotnet31-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet3.1-transport/nuget/v3/index.json" />
  </packageSources>
</configuration>

相關文章