This video will show you how to get asp.net core apps running on IIS. The main thing is that you need to know is that it requires that you install .NET Core Runtime & Hosting Bundle for Windows.
PrankDial - The Original Internet Prank Call Website RSS Bridge - create an RSS feed for any website Send Anywhere - Send files from to any device with a browser, no app required! Portfolio Visualizer - back test stocks HonestMath.com - a retirement simulator with a Monte Carlo engine
Log in to Azure Portal and click on Cloud Shell in the top right menu. Powershell command prompt will open. Enter in these commands: // create resource group $rg = 'mywGroup20240109' az group create --location eastus --name $rg // create an app service plan az appservice plan create --name mywWebApp20240119 --resource-group $rg --sku FREE // create the webapp az webapp create --name mywWebAppApp20240119 --resource-group $rg --plan mywWebApp20240119 // list all webapps az webapp list --output table
Comments
Post a Comment