这是一个旧的应用程序,我一直在承担构建Azure管道的任务,我们正在使用VS 2019,并将应用程序升级到.NET Framework 4. 6. 1。
生成管道失败,出现以下错误:错误ASPPARSE:未能加载文件或程序集“System.web.mobile”或它的某一个依赖项。系统找不到指定的文件。
应用程序在本地构建和运行良好。一旦我尝试构建一个Azure构建管道,我就会得到上面的错误。
从在线搜索来看,system.web.mobile4.6.1中似乎不再使用www.example.com。是否有有效的替代品或解决方法?
1条答案
按热度按时间jmo0nnb31#
The problem was that the "System.Web.Mobile.dll" on your local machine, make sure restore this assembly in your pipeline.
If you don't use this assembly, as @Dai mentioned, you can remove it in your web.config files and .csproj files.