gpt4 book ai didi

c# - 正确部署了Azure中的所有文件,但仍然无法看到网页

转载 作者:行者123 更新时间:2023-12-03 03:45:17 26 4
gpt4 key购买 nike

我正在尝试在 Azure 中部署 Asp .Net5 webapp。我已经创建了管道并成功部署了相同的管道。但是当我尝试访问我的网站时我遇到的问题是,它显示

Your app service is up and running. Time to take the next step anddeploy your code.

我已经部署了我的代码。所以这不可能是部署问题。我的猜测是这一定是一些运行时问题,但问题是我如何调试而不出现任何错误或其他问题。

我可以在 Kudu 控制台中看到我的文件。 Here we can see the files

dev.azure.com 中的管道和版本也显示正确。 enter image description here

我的 yml 文件

# ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# https://learn.microsoft.com/azure/devops/pipelines/languages/dotnet-core

trigger:
batch: true
branches:
include:
- master

pool:
vmImage: 'windows-latest'

variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'

steps:
- checkout: self
submodules: true

- task: NuGetToolInstaller@1

- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'

- task: VSBuild@1
inputs:
solution: '$(solution)'
msbuildArgs: '/p:DeployOnBuild=true /p:EnvironmentName=$(EnvironmentName) /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:DesktopBuildPackageLocation="$(build.artifactStagingDirectory)\WebApp.zip" /p:DeployIisAppPath="Default Web Site"'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'

- task: VSTest@2
inputs:
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'

- task: PublishBuildArtifacts@1
inputs:
pathToPublish: $(Build.ArtifactStagingDirectory)
artifactName: MFLBuildOutput

请帮助我。任何形式的帮助都将受到高度赞赏。

编辑:

对于部署,我已经创建了一个发布管道,如下所示- enter image description here

最佳答案

根据您分享的步骤,我找不到部署应用程序的任务。您的管道仅生成工件,但不部署到azure。请添加部署步骤,

enter image description here

您可以在这里找到相同的内容 - https://learn.microsoft.com/en-us/azure/devops/pipelines/tasks/deploy/azure-rm-web-app-deployment?view=azure-devops

关于c# - 正确部署了Azure中的所有文件,但仍然无法看到网页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69440683/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com