- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Assembly Information -> Neutral Language ComboBo-6ren">
如何更改用 C# 编写的 DLL 的语言属性?
我尝试进入 Project Properties -> Assembly Information -> Neutral Language
ComboBox 并将其设置为 English (United States)
。
在我构建/重建项目/解决方案后,当我右键单击 DLL 并转到“详细信息”选项卡时,“语言”属性始终显示语言中性。
编辑:我找到的解决方案是使用外部 *.res 文件(简单地由 Visual Studio 生成),然后在对话框 Project Propertie->Application Tab-> Resource File
最佳答案
此属性设置 AssemblyInfo.cs 文件中的 [AssemblyCulture] 属性。 MSDN 库文章的备注部分有这条重要说明:
The attribute is used by compilers to distinguish between a main assembly and a satellite assembly. A main assembly contains code and the neutral culture's resources. A satellite assembly contains only resources for a particular culture, as in [assembly:AssemblyCultureAttribute("de")]. Putting this attribute on an assembly and using something other than the empty string ("") for the culture name will make this assembly look like a satellite assembly, rather than a main assembly that contains executable code. Labeling a traditional code library with this attribute will break it, because no other code will be able to find the library's entry points at runtime.
另一个重要的限制是 GAC 可以通过程序集名称、版本、体系结构和公钥 token 来区分程序集,但不能通过文化来区分程序集。附属程序集必须始终存储在本地。
长话短说,从不在包含代码的项目上选择中性以外的任何东西。附属程序集几乎总是从您项目中的资源自动生成,并自动获取适当的 [AssemblyCulture] 属性。
关于c# - 文件详细信息选项卡中的 "Language neutral"属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12173293/
我想将一个应用程序分发到许多不同的国家,所以我必须将多语言字符串嵌入到它的资源中。 Visual Studio 提供了日文、英文、中文等世界主流语言的列表,但除此之外,还有其他三种选择: "Neutr
我有一个安装了 Wordpress 的 Ubuntu 服务器。从服务器发送电子邮件时,我收到以下 header : Received-Spf: neutral. 我确实在以下事项中设置了 SPF 记录
如何更改用 C# 编写的 DLL 的语言属性? 我尝试进入 Project Properties -> Assembly Information -> Neutral Language ComboBo
当我尝试使用 php 向我的 gmail 地址发送电子邮件时,我收到了电子邮件,但 spf 存在问题。它说 Received-SPF:中性 但这里的 spf 记录似乎不错 http://mxtoolb
在大多数情况下,我发现polarity_scores返回的输出为“Neutral”,而负面和正面情绪应有一定的百分比突出显示,例如考虑以下情况,我发现了下面提到的所有3种情况的{'neg': 0.0,
正如MSDN所述: If you are writing a single threaded application (or a multi-threaded application where on
我正在试验 CoNat 的定义取自 this paper作者:Jesper Cockx 和 Andreas Abel: open import Data.Bool open import Relati
我正在 Visual Studio 2017 中的 Allegro 5 游戏中实现操纵杆控件。我尝试过两种方式:让我的事件队列在我的主循环中监听操纵杆事件,并使用 ALLEGRO_JOYSTICK_S
鉴于我的 html 结构为: My header My page-specific content My footer 我希望 JQM.js(和 J
我正在阅读 Herbert Schildt 的书“Java:完整引用”,他在其中写道 Java 是可移植的并且与体系结构无关。这两个概念有什么区别?我无法从文本中理解它。 最佳答案 看看这个white
我这里的东西完全符合我的要求。我的问题是它似乎过于复杂,是否有更快/更好的方法来进行我在下面显示的 pitchAngleRadians 计算? 显示代码...(连同两张图片) 第一张图片是 atan2
MAKELANGID 的文档指定 MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL) 表示“语言中性”。 这在我的机器上似乎是英文的(用FormatMessage 试过
我想允许 Google Apps 和 CampaignMonitor(电子邮件营销服务)从我的域发送电子邮件。 我已将我的 TXT 记录设置为: v=spf1 a mx include:_spf.go
我有以下代码片段 DateTime date1; CultureInfo neutralCulture = new CultureInfo("fr"); bool isNeutral = neutra
有时我想在其他几个 HTML 元素周围放置一个包装器元素,唯一的目的是设置一个方便的 CSS 选择器来引用所有包含的元素: ... ...
当我有大量复杂的代码块时,我通常会使用比要求更多的括号集。我的代码可能如下所示: library(tidyverse) mtcars %>% mutate(name = rownames(.))
我认为 exception strong 意味着程序要么成功结束,要么如果没有成功结束,它会保持数据不变,但我不确定什么是 exception neutral方法。有人可以定义这两个术语吗? 最佳答案
我遇到了一个使用内置全局化工具的 ASP.NET 应用程序崩溃的情况。 在带有 Culture="auto"指令的 ASP.NET 页面上,使用中性文化作为其浏览器语言(例如“zh-Hans”)的用户
我知道之前有人问过这个问题,但给出的答案是临时破解的。 我们的网站已经在我们的实时服务器上运行了一段时间,我们刚刚进行了一些更新和部署。最初 JIT 运行并且站点工作。下一次刷新应用程序池时,我们从网
我有三个 Dotnet Core 2.0 项目; Angular、Domain 和 EF7。Domain 和 EF7 是 .NETStandard 库,Angular 是 Core 2.0 Angul
我是一名优秀的程序员,十分优秀!