如何能够选择 VirtualPathProvider 提供的母版页
我们有很多共享相同设计的内联网网站。因此,我们将母版页、样式表、图像和 JavaScript 放在共享程序集中。
内容是通过以下方式加载的:
HostingEnvironment.RegisterVirtualPathProvider(new VirtualFilesProvider());
ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(new WebFormViewEngineWithOurVirtualPathProvider());
问题是 Visual Studio 无法找到图像或母版页,因此给我们带来了很多警告 + 在创建新视图页面时我们无法选择母版页。
可以通过任何方式解决这个问题吗?
注意:运行网站时一切正常。
We got a lot of intranet websites that share the same design. Therefore we've put the master pages, stylesheet, images and javascripts in a shared assembly.
The content is loaded by using:
HostingEnvironment.RegisterVirtualPathProvider(new VirtualFilesProvider());
ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(new WebFormViewEngineWithOurVirtualPathProvider());
The problem is that Visual Studio cannot find the images or masterpage and therefore gives us a lot of warnings + that we cannot select the masterpage when creating new view pages.
Can that be fixed in any way?
Note: Everything works fine when running the websites.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 VisualStudio 找不到物理文件,则会显示警告。这个问题确实没有办法解决。
另一种方法是使用构建后/部署前脚本在项目之间复制共享文件。另一个好处是站点速度更快,而嵌入式资源虚拟路径提供程序速度很慢。
If VisualStudio cannot find the physical file then it will show warnings. There is really no solution to this.
An alternative approach is to use a post build / pre deploy script to copy shared files between projects. An added benefit is a faster site, a embedded resource virtual path provider is slow.