我有一个基于.NET Framework 4.6.1的类库项目。另一个项目是基于.NET Framework 4.6.1的.NET服务。当我将我的服务从visual studio 2017发布到Azure中的API应用程序时,我会看到错误屏幕。
找到的日志很少:
注意:发布成功没有任何错误,但应用程序无法启动。
有人可以帮我解决此错误吗?
答案 0 :(得分:0)
正如我在评论中提到的,许多因素都可能导致此通用错误页面,并且很难根据通用错误消息an error occurred while starting the application
找到问题的根本原因。要进行问题排查,您可以use CaptureStartupErrors and the detailedErrors key to display details of startup exceptions。
捕获启动错误
new WebHostBuilder()
.CaptureStartupErrors(true)
详细错误
new WebHostBuilder()
.UseSetting("detailedErrors", "true")