Home > Net >  You need to ensure that WebApp1 uses the ASP.NET v4.7 runtime stack
You need to ensure that WebApp1 uses the ASP.NET v4.7 runtime stack

Time:12-24

I am new to the forum, I want to ask a question that I have seen in an Azure exam and I do not understand. If someone can help me I appreciate it infinitely.

You plan deploy an Azure web app that will have the following settings:

  • Name: WebApp1
  • Publish: Docker container
  • Operating system: Windows
  • Region: West US
  • Windows Plan (West US): ASP-RG1-8bcf

You need to ensure that WebApp1 uses the ASP.NET v4.7 runtime stack. Which setting should you modify?

  • Region
  • Operating system
  • Publish
  • Windows Plan

Thanks in advance.

CodePudding user response:

You have to modify the publish setting from DockerContainer to code.

  • While deploying the web app , if you choose the code in publish setting then you will be able select the specific runtime language on which you want your webapp to run as show below.

enter image description here

  • While deploying the web app , if you choose the DockerContainer in publish setting then you won't be able to select the runtime on which your web app has to run as shown in below:

enter image description here

  • Related