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

Azure App Service

獨立部署

Azure App Service中咱們能夠經過獨立部署進行部署咱們的.NET5應用程序,由於它不會依賴目標系統上的環境,而且全部組件(包括librarys和運行時)都與該應用程序一塊兒使用,而且與其餘應用程序進行隔離,這樣其實咱們更好的去控制應用程序運行的版本。json

一、選擇要發佈的項目,鼠標右鍵單擊項目,而後選擇發佈,會出現以下內容:api

file

二、接下來咱們能夠選擇Linux應用服務或Windows應用服務app

file

三、最後咱們點擊完成後選擇部署模式此處選擇獨立模式框架

file

接下來咱們發佈應用程序便可ui

框架依賴

目前在Azure App Service中並無爲咱們提供默認的.net5運行時環境,那麼咱們如何以框架依賴的形式使用.net5呢?看以下步驟this

一、點擊左側的擴展操作系統

file

二、選擇.NET5運行時,以下圖所示.net

file

這樣咱們就完成了咱們框架依賴的配置,也不能說配置,能夠說是這樣咱們就已經完成了在咱們App Service中安裝了.net5的環境,因此咱們能夠去使用框架依賴的形式去發佈咱們的代碼。debug

容器部署

運行.NET 5應用程序的另外一種方法是將Docker容器部署到Linux或Windows上的App Service(僅Premium SKU)。部署容器時,咱們會將應用程序及其依賴項打包到基於Linux或Windows的映像中,以在App Service平臺上運行。這使咱們的應用程序本質上更具可移植性,由於它不依賴於主機操做系統,而且在映像中添加了運行時和SDK。rest

一旦爲.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>
相關文章
相關標籤/搜索