- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
今天早上,据报道我们 QA 服务器上的 Web 应用完全崩溃,Web.config 报告了以下错误:
Could not load file or assembly 'System.Web.Mvc, Version=5.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified
记得看到一个提到 MVC 的 Windows 更新,我做了一些挖掘并找到了 lots of people reporting最近的 Windows 更新破坏了 MVC。
在对这些问题和我们的服务器进行了大量挖掘之后,我们发现的问题似乎与其他问题中的内容不匹配,但看起来确实相关。这是我们认为知道的:
我们认为损坏的部分导致创建了“错误的构建”:
假设上述行为是正确的,这意味着任何时候 MS 通过 Windows 更新服务 NuGet DLL 我们在 GAC 中没有,我们的 BuildServer 将开始生成不完整的构建(遗漏那些已注入(inject) GAC 的 DLL)。
升级到 MVC 5.2 解决了这个问题(可能是因为它没有打补丁,因此没有注入(inject) GAC); DLL 现在被复制到输出文件夹。除了版本号更改外,升级到 5.2.2 的差异没有任何变化(特别是没有添加/编辑 <Private>
节点)。
我们不希望开始对所有内容进行 GAC,也不希望创建手动构建步骤来将我们所有的 DLL 复制到 bin
文件夹以防 MS 修补它们。
那么,今天我们可以改变什么,以确保如果 MS 将来修补其他 DLL,我们永远不会让 BuildServer 默默地生成错误的构建?
最佳答案
A patch for MVC 5.1 was installed on the BuildServer via Windows Update despite not having MVC 5.1 installed in the GAC
是的,这种行为实际上是设计使然。参见 http://blogs.msdn.com/b/dotnet/archive/2014/01/22/net-4-5-1-supports-microsoft-security-updates-for-net-nuget-libraries.aspx .
The patch has put the "updated" version of MVC 5.1 in the GAC
是的,没错;这就是补丁如何让更新的代码运行而不是旧代码。参见 https://technet.microsoft.com/en-us/library/security/ms14-059 .
CopyLocal=true is ignored when a DLL is in the GAC; therefore since the patch, this means that builds of our app from the BuildServer no longer have System.Web.MVC in the output folder
不完全是。实际发生的是以前 CopyLocal=true 的项目切换到 CopyLocal=false。 CopyLocal 可以通过以下两种方式之一设置:1) 如果有明确的 <Private>True</Private>
在 .csproj 文件中设置,或 2) 默认情况下,如果不存在此类设置(默认情况下,GAC 程序集不 CopyLocal;其他程序集执行)。
所以在这种情况下似乎发生的是您的项目文件在 csproj 文件中没有此设置。结果,GUI 显示了基于补丁前评估默认值的设置 (CopyLocal = true),但在安装补丁后,GUI 现在将显示 GAC 程序集的新默认值 (CopyLocal = false) ).
Since System.Web.MVC is not in the GAC on our QA servers (they have not yet been patched), the application now fails, because System.Web.MVC cannot be found
没错。
Assuming the behavior described above is correct, this means that any time MS service a NuGet DLL via Windows Update that we do not have in the GAC, our BuildServer will start producing incomplete builds (missing out those DLLs that have been injected into the GAC).
对于没有显式 <Private>True</Private>
的任何 .csproj 引用设定,没错。此外,请注意使用 NuGet 更新 MVC 引用可以删除此设置,即使它以前存在也是如此。参见 http://nuget.codeplex.com/workitem/4344 .
Upgrading to MVC 5.2 solves this issue (likely because it wasn't patched, and was therefore not injected into the GAC); the DLL is now copied to the output folder. There are no changes in the diff that upgraded to 5.2.2 except for version number changes (there's specifically no node been added/edited).
没错。由于 MVC 5.2 不是 GAC,即使没有明确的 <Private>True</Private>
设置,此非 GAC 程序集的默认值将为 CopyLocal=true。
We do not wish to start GACing everything, nor creating manual build steps to copy all of our DLLs into the bin folder just in case MS patches them. So, what can we change today to ensure we don't ever end up with out BuildServer silently producing back bad builds if MS patch other DLLs in the future?
你今天能做的最好的事情是:
<Private>True</Private>
.csproj 文件中所有 NuGet 包程序集引用的设置。<Private>True</Private>
设置。关于asp.net - 自 MS14-059 以来,System.Web.MVC 未复制到 bin 文件夹中。如何防止由于 Windows 更新而创建缺少 DLL 的构建?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26467078/
bin、bin/、bin/*和bin/**有什么区别我的 .gitignore 文件?我一直在使用 bin/,但正在查看 other .gitignore files (在 eclipse file
给定 n 个无限容量的箱子,我想将 m 件元素装入其中(每个元素都有特定的重量),同时最小化最重箱子的重量。 这不是传统的垃圾箱包装/背包问题,其中垃圾箱的容量有限,而您试图尽量减少使用的垃圾箱数量;
Closed. This question is off-topic。它当前不接受答案。 想改善这个问题吗? Update the question,所以它是用于堆栈溢出的on-topic。 7年前关
我一直在寻找一个问题的解决方案,这个问题显然比我最初想象的更不寻常。 Optaplanner 看起来很有前途,但由于我对 Java 相对缺乏经验,所以我想在深入研究之前调查一下这是否完全不可能。 我正
我有一个琐碎的问题。我有一个非常大的 df 有很多列。我正在尝试找到最有效的方法来对具有不同 bin 大小的所有列进行 bin 并创建一个新的 df。这是一个仅对单个列进行分箱的示例: import
我想以这样的方式对数字列 (var) 进行分类,使每个分类中的行数大致相同。我的附加要求是该列中的一个(唯一)值不能分配给多个 bin。例如,如果 var 列中的值 1 分配给 bin 1,则不允许将
我在 centos (rhel 7)_ 上使用 make 命令和 gcc 7.1 通过代码进行编译,但遇到了以下错误: /bin/sh:/bin: 是一个目录 which sh 返回/usr/bin/
/usr/bin/ld: cannot find -ldlib /usr/bin/ld: cannot find -lcblas /usr/bin/ld: cannot find -llapack 在
我进行了一项眼动追踪实验,试图检测两个区域(感兴趣区域,名为“代理”和“患者”的 AOI)的注视分布。我将整个时间划分为时间段,例如得到以下列表: Stimulus Participant A
我正在尝试替换 whoami带有 ~/.local/bin/ 中的脚本的命令.有没有办法让我的 whoami 获得优先权,这样当我运行 whoami 时,我的脚本就会运行? 最佳答案 这就是我的 ~/
我的项目结构是这样的: . ├── Cargo.lock ├── Cargo.toml └── src ├── bin │ └── other.rs ├── main.rs
我正在开发一个小型图书馆应用程序,它以这种格式存储技术手册: 目前,我正在尝试将库的内容保存并根据用户的需要加载到 bin 文件中。 但是,当我尝试加载库文件时,唯一的变化是“-1”被打印到控制台。此
我试图忽略 Web 项目的 bin 文件夹,但包含该 bin 文件夹中的 .refresh 文件。 这是我的 .gitignore 中的内容: [Bb]in/ #Allow .refresh file
ipv6_hdr__f_next_header_cp: coverpoint this.ipv6_hdr.ipv6_f_next_header iff (this.has_ipv6_header){
今天有人给我发了一个以 #: 开头的脚本,谷歌搜索后我没有找到任何答案。 即使脚本有效,我想知道那是什么意思。 最佳答案 哇!这让我想起了很多记忆! 回到 1980 年代和 90 年代初期,有两种基本
我使用这个 ksh 函数将“1-Jan-2011”格式转换为“1.1.2011”。 #!/bin/ksh ##---- function to convert 3 char month into nu
我在 c# winform 项目中使用 sql-server compact 数据库。 如果我查看构成解决方案的文件,我可以在以下两个文件夹中看到 exe 和 sdf 文件的副本: /bin/Debu
这个问题与我上一个问题不同。我正在通过以下代码使用 facetgrid 打印直方图。 import numpy as np import pandas as pd import seaborn as
我有一个整数需要根据概率分布分成 bin。例如,如果我有 N=100 对象进入 [0.02, 0.08, 0.16, 0.29, 0.45] 那么你可能会得到 [1, 10, 20 , 25, 44]
我在寻找使用 Jenkins 运行 Appium 的脚本时阅读了以下脚本 #!/bin/bash --login killall -9 "iPhone Simulator" &> /dev/null
我是一名优秀的程序员,十分优秀!