我拥有带有.NET CORE 2.2的MVC项目。
我在我的项目中添加了Areas,当它在本地计算机上时,它可以正常工作。
成功发布应用程序后,我使用Azure Devops设置了CI CD管道。我注意到我的区域无法正确呈现,这是来自azure网站的。
下面是我在本地调试时显示的内容,有人可以帮忙吗?哪里出了错
答案 0 :(得分:0)
问题在.csproj上。它包括这一行,我不知道它如何在csproj中添加。 但是当我从csproj中移除后,它可以正常工作。
<ItemGroup>
<Content Remove="Areas\Admin\Views\_ViewImports.cshtml" />
<Content Remove="Areas\Admin\Views\_ViewStart.cshtml" />
<Content Remove="Areas\Admin\Views\Shared\_Layout.cshtml" />
<Content Remove="Views\Shared\_Layout.cshtml" />
</ItemGroup>