作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用基本的 html 和 CSS 在 VS Code 上开发了一个本地网站。然后我部署了一个 Azure Web 应用程序。我想将本地网站推送到Azure Web应用
我在 youtube 上观看了视频,但这些视频不起作用。我也尝试过使用 Azuredevops
最佳答案
Visual Studio Code 没有像 Visual Studio 那样的集成构建系统(Web 发布)。但它确实运行了命令行任务并内置了 Git。
兼容的任务运行程序详细信息:https://code.visualstudio.com/Docs/editor/tasks
您可以使用 Visual Studio Code 中的 MSBuild 任务来部署网站:
msbuild <Project or Solution Path> /p:DeployOnBuild=true /p:PublishProfile=<Publish Profile Name>
您可以指向一个解决方案,这将发布包含有效发布配置文件的所有元素
msbuild <FullPath>\MySolution.sln /p:DeployOnBuild=true /p:PublishProfile=Test
希望有帮助。
关于html - 如何将 Visual Studio Code 上的本地网站推送到我部署在 Azure 上的 Web 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57212014/
我是一名优秀的程序员,十分优秀!