简体   繁体   English

ASP.NET Core 3.1 的构建过程中发生了哪些步骤?

[英]What are the steps that happen during the build process of ASP.NET Core 3.1?

I'm new to Azure pipelines and I don't understand the build process for ASP.NET Core 3.1.我是 Azure 管道的新手,我不了解 ASP.NET Core 3.1 的构建过程。 Like, use nuget, nuget restore, symbols etc. I've had successfully created a pipeline using hosted vs2017 but now with Azure Pipelines as agent pool the jobs I've had created before do not work anymore.例如,使用 nuget、nuget 恢复、符号等。我已经使用托管 vs2017 成功创建了一个管道,但现在使用 Azure 创建了管道之前不再作为代理池工作。

On your build pipeline definition, you have the ability to select the host type (VM image) to use while running the jobs.在您的构建管道定义中,您可以 select 运行作业时使用的主机类型(VM 映像)。

So in this case I would suggest you to use the latest version of windows as VM image所以在这种情况下,我建议您使用最新版本的 windows 作为 VM 映像

- job: Windows
  pool:
   vmImage: 'windows-latest'

More information in this url . 此 url 中的更多信息。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 将应用程序从 ASP.NET Core 2.2 升级到 ASP.NET Core 3.1 后,Azure DevOps 构建失败 - Azure DevOps build fails after upgrading app to from ASP.NET Core 2.2 to ASP.NET Core 3.1 ASP.NET CORE 3.1:Azure AD 身份验证在 EDGE 中失败。 身份验证期间无限重定向循环和页面重新加载 - ASP.NET CORE 3.1: Azure AD Authentication fails in EDGE. Infinite redirect loops and page reloads during authentication Asp.net Core 3.1 带 SendGrid(带或不带)Azure? - Asp.net Core 3.1 with SendGrid (with or without) Azure? ASP.NET Core 3.1 Azure AD 身份验证抛出 OptionsValidationException - ASP.NET Core 3.1 Azure AD Authentication throws OptionsValidationException 如何将 asp.net Core 3.1 部署到 Azure - how to deploy asp.net Core 3.1 to Azure 将 ASP.NET CORE 3.1 MVC 应用程序部署到 azure 时出现问题 - Problem deploying ASP.NET CORE 3.1 MVC app to azure Asp.net Core 3.1 Serilog 不适用于 Azure Webapp - Asp.net Core 3.1 Serilog not working with Azure Webapp 如何在 ASP.NET Core 3.1 中启用多重身份验证? - How to enable multiple authentication in ASP.NET Core 3.1? Application Insights 开发人员模式在 ASP.NET 核心 3.1 中不起作用 - Application Insights Developer Mode not working in ASP.NET Core 3.1 ASP.NET Core 在 docker build 之前运行 angular build - ASP.NET Core run angular build before docker build
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM