.NET Framwork 2.0 のアプリを Azure AppService で動かしてみた
4215 ワード
背景と目的
以前書いた「.NET Framwork 2.0 のアプリを Azure AppService Hyper-V コンテナで動かしてみた」のソースコードを使って、今回はもっとシンプルに AppService のランタイムに ASPNET|V3.5 を指定して、同じアプリが動くか試してみました。
前提条件
以前書いたソースコードが Azure Repos にある前提となります。
AppService を作成
bash
# 環境変数をセットします
region=japaneast
prefix=mnraspnet
repourl=https://*******@dev.azure.com/*******/aspnetwebvb20/_git/aspnetwebvb20
repotoken=*****************
# リソースグループを作成します
az group create \
--name ${prefix}-rg \
--location $region
# AppService プランを作成します
az appservice plan create \
--name ${prefix}-plan \
--resource-group ${prefix}-rg \
--sku FREE
# AppService を作成します
az webapp create \
--name ${prefix}-app \
--resource-group ${prefix}-rg \
--plan ${prefix}-plan \
--runtime "ASPNET|V3.5"
# Azure Repos からアプリをでプロします
az webapp deployment source config \
--name ${prefix}-app \
--resource-group ${prefix}-rg \
--repo-url $repourl \
--branch master \
--git-token $repotoken
# AppService を開きます
open https://${prefix}-app.azurewebsites.net
参考
bash
# リソースグループを削除します
az group delete \
--name ${prefix}-rg \
--yes
Author And Source
この問題について(.NET Framwork 2.0 のアプリを Azure AppService で動かしてみた), 我々は、より多くの情報をここで見つけました https://qiita.com/mnrst/items/c29c1d3600e85c9c2d78著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .