我有一个项目,其中嵌入了一些文件,其中两个以.SMS.something
. 编译项目时,即使我没有指定要使用附属程序集的任何地方,也会生成“SMS”文化的附属程序集,它甚至是一种文化吗?
我到处寻找解释,但我不知所措。我发现的唯一事情是人们试图将他们的实际文化资源程序集嵌入到他们的可执行文件中,但这不是我的情况。我只想将我所有的嵌入式资源(仅使用一种语言)放在同一个程序集中。
如何防止自动生成附属程序集,或指定 SMS 不是一种文化?
我有一个项目,其中嵌入了一些文件,其中两个以.SMS.something
. 编译项目时,即使我没有指定要使用附属程序集的任何地方,也会生成“SMS”文化的附属程序集,它甚至是一种文化吗?
我到处寻找解释,但我不知所措。我发现的唯一事情是人们试图将他们的实际文化资源程序集嵌入到他们的可执行文件中,但这不是我的情况。我只想将我所有的嵌入式资源(仅使用一种语言)放在同一个程序集中。
如何防止自动生成附属程序集,或指定 SMS 不是一种文化?
通过查看 Microsoft.Common.targets 和 Microsoft.CSharp.targets 并找出哪些任务实际上对资源进行排序并给它们命名,我设法以一种非常老套的完美工作方式解决了这个问题。
因此,我使用将 ManifestResourceName 和 LogicalName 设置为符合我想要的内容的任务来覆盖 CreateCSharpManifestResourceName 任务:
<!-- Overriding this task in order to set ManifestResourceName and LogicalName -->
<UsingTask TaskName="CreateCSharpManifestResourceName" TaskFactory="CodeTaskFactory"
AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll">
<ParameterGroup>
<ResourceFiles ParameterType="Microsoft.Build.Framework.ITaskItem[]"
Required="true" />
<RootNamespace ParameterType="System.String"
Required="true" />
<PrependCultureAsDirectory
ParameterType="System.Boolean" />
<ResourceFilesWithManifestResourceNames
ParameterType="Microsoft.Build.Framework.ITaskItem[]"
Output="true" />
</ParameterGroup>
<Task>
<Code Type="Fragment" Language="cs">
foreach (ITaskItem item in ResourceFiles) {
var link = item.GetMetadata("Link").Replace("\\", "/");
link = "/" + link.TrimStart('/');
item.SetMetadata("ManifestResourceName", link);
item.SetMetadata("LogicalName", link);
}
ResourceFilesWithManifestResourceNames = ResourceFiles;
</Code>
</Task>
</UsingTask>
作为一个额外的好处,我嵌入的文件将它们的实际路径(仅用\
替换为)作为它们的资源名称,因此可以使用where x will be eg/
轻松查找。Assembly.GetManifestResourceStream(x)
/path.to/my.SMS.file
然后我用一个只返回没有任何文件具有任何文化的任务覆盖 AssignCulture 任务,并添加<WithCulture>false</WithCulture>
到它们(这非常适合我的情况):
<!-- Overriding this task to set WithCulture and sort them as not having culture -->
<UsingTask TaskName="AssignCulture" TaskFactory="CodeTaskFactory"
AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll">
<ParameterGroup>
<Files ParameterType="Microsoft.Build.Framework.ITaskItem[]"
Required="true" />
<AssignedFilesWithCulture
ParameterType="Microsoft.Build.Framework.ITaskItem[]"
Output="true" />
<AssignedFilesWithNoCulture
ParameterType="Microsoft.Build.Framework.ITaskItem[]"
Output="true" />
</ParameterGroup>
<Task>
<Code Type="Fragment" Language="cs">
ITaskItem[] withCulture = new ITaskItem[Files.Length];
ITaskItem[] withoutCulture = new ITaskItem[Files.Length];
for (var i = 0; i < Files.Length; i++) {
ITaskItem item = Files[i];
var wc = item.GetMetadata("WithCulture");
if (wc == "") { item.SetMetadata("WithCulture", "False"); }
if (wc.ToLowerInvariant() == "true") {
withCulture[i] = item;
} else {
withoutCulture[i] = item;
}
var type = item.GetMetadata("Type");
if (type == "") { item.SetMetadata("Type", "Non-Resx"); }
}
AssignedFilesWithCulture = withCulture;
AssignedFilesWithNoCulture = withoutCulture;
</Code>
</Task>
</UsingTask>