Azureにdotnetコアアプリケーションを公開しようとしています。私は公開プロファイルを作成し、それがすべて正常に動作するVisual Studioを使用しています。しかし、私は継続的な展開をセットアップしたいので、コマンドラインを使って展開を実行する必要があります。AzureにASP.Netコアアプリケーションを公開すると、コマンドラインでサイレントエラーが発生する
official documentationは、[ProfileName].ps1
が最適な攻撃計画であることを確認するのに非常に役立ちました。
ただし、使用方法の手掛かりはありません。 まず私は、パラメータを指定せずにそれを実行してこのエラーました:
Production-publish.ps1 : The term 'Production-publish.ps1' is not recognized as the name of a cmdlet, function, script
file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct
and try again.
At line:1 char:1
+ Production-publish.ps1
+ ~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Production-publish.ps1:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
は、次は私が必要なパラメータを追加しました:
.\Production-publish -packOutput 'C:\code\my-dotnetcore-proj\publish' -pubProfilePath 'Production.pubxml'
エラーなしで走ったが、何もしませんでした!
私はPowershellの仕事を通してAzureのデポイメントを作ることができますか?