- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
构建部署包时从 aspnet_compiler.exe 收到以下警告:
ASPNETCOMPILER(0,0): Warning : The following assembly has dependencies on a version of the .NET Framework that is higher than the target and might not load correctly during runtime causing a failure: WebGrease, Version=1.6.5135.21930, Culture=neutral, PublicKeyToken=31bf3856ad364e35. The dependencies are: System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089. You should either ensure that the dependent assembly is correct for the target framework, or ensure that the target framework you are addressing is that of the dependent assembly.
<dependentAssembly>
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Windows.Forms" publicKeyToken="b77a5c561934e089" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
最佳答案
我通过在 上添加引用解决了这个问题。 System.Windows.Forms 在 web.config
中具有以下配置:
<system.web>
<compilation debug="true" targetFramework="4.5.2">
<assemblies>
<add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</assemblies>
</compilation>
</system.web>
关于.net - 构建部署包时的 WebGrease 警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23685112/
我的任务是开始使用 ASP.NET Bundling 而不是 RequestReduce。起初这似乎是一件容易的事,但后来我遇到了问题,当 minifieng CSS 文件时: (3017,287):
构建部署包时从 aspnet_compiler.exe 收到以下警告: ASPNETCOMPILER(0,0): Warning : The following assembly has depend
当我运行我的 MVC4 Web 应用程序时,出现以下错误: Could not load file or assembly 'WebGrease' or one of its dependencies
这个问题有很多解决方案,请阅读下面的所有答案,它们也可能会帮助您解决问题。如果您找到解决此问题的新方法,请在您的答案中记录 我正在尝试将 System.Web.Optimization 添加到我的 A
我正在尝试通过命令行使用WebGrease 1.6(还尝试了VS2013的开发人员命令提示符)。当我运行“wg options”时,出现以下错误(附有屏幕截图) 未处理的异常:System.IO.Fi
我已经通过 NuGet 安装了 Microsoft ASP.NET Web 优化框架 1.1.3。我相信它安装得很好。这是一个 .NET 4.0 Web 窗体项目。 当我尝试捆绑时出现错误。我在 Ap
首先,回答这个问题,不要解决我的错误: Upgrading WebGrease to version 1.3.0 gets me error 我的生产服务器上有以下绑定(bind)重定向:
将 WebGrease 升级到版本 1.3.0 时出现错误: Could not load file or assembly 'WebGrease, Version=1.0.0.0, Culture=
当我将名为 glyphicons.css 的特定 CSS 文件放入 BundleConfig 时,会发生以下错误 WebGrease.dll 中发生“System.IndexOutOfRangeExc
例如 System.Linq dogs.ToList().ForEach(dog => Console.WriteLine(dog.Name)); WebGrease.Css.Extensions d
我正在尝试将 bundle 添加到我的 Mvc4 网络元素中。我采取的步骤: 将对我的元素的引用添加到 System.Web.Optimization 已添加 @Styles.Render("~/Co
我有一个 MVC4 Web API 项目。运行服务项目时出现错误 Could not load file or assembly 'WebGrease, Version=1.5.1.25624, Cu
我数了一个问题,在我将WebGrease.dll从1.5.2升级到1.6.0,并部署到azure web role后,出现错误“Object reference not set to an insta
我是一名优秀的程序员,十分优秀!