English 中文(简体)
如何更改 MSBuild 嵌入资源的默认命名空间?
原标题:How to change the default namespace for Embedded Resources with MSBuild?

我正试图在我的控制台工程中嵌入一个未管理的 dll 。 此工程的默认名称空间是 < code> Conypany. project1Exe 。 组别名称( exput exe) 名为 < code> project1. exe 。

将 dll 添加到项目中, 使用 < code> Add 作为链接 < /code > 选项, 并位于 < code> Libsx86 子文件夹中 。

Company.Project1Exe
   |
   |--Program.cs
   |--Libs
       |--x86
           |-My1st.dll
           |-My2nd.dll  

它们被添加到项目中,使用 Add作为链接 选项,因此在 Libs 子文件夹中没有实际定位。

我将这两张图纸的建设行动 设置为嵌入的资源。

默认情况下, MSBuild 将使用 < code> DefaultNamspace. ExtendedNamespace. fileName 嵌入这些 dlls, 其中 ExpendedNamespace 代表工程的目录结构 。

这导致资源被分别嵌入为 company.Project1.Libs.x86.My1st.dll Company.Project1.Libs.x86.My2nd.dll

我希望这些资源能够使用组号嵌入, 以便它们分别嵌入为 project1.Libs.x86.My1st.dll project1.Libs.x86.My2nd.dll

我怎样才能做到这一点?

问题回答

解决这个问题的唯一方法就是设置嵌入资源的 LocialName 。默认情况下,当您嵌入资源时,您会在 csproj 文件中找到类似 Csproj 的条目。

<EmbeddedResource Include="path to embdedded resource"/>

对于使用 Add 链接 添加的资源,您会找到另外的 > Link 属性。 在这种情况下, Link 属性是相对于您的工程结构的资源路径,而 clude 属性是您机器文件位置的指针(与您的工程相对)。

<EmbeddedResource Include="path to embdedded resource"/>
  <Link>Libsx86My1st.dll</Link>
</EmbeddedResource>

要使用不同命名空间嵌入组件, 可将 LogicName 属性添加到上述属性中, 从而可以推翻默认 msbuilding 行为 。

<EmbeddedResource Include="path to embdedded resource"/>
  <Link>Libsx86My1st.dll</Link>
  <LogicalName>$(TargetName).Libs.x86.My1st.dll</LogicalName>
</EmbeddedResource>

其结果是,对于所添加的每一项资源,似乎都需要这样做。 然而,我本希望这项公约能够以某种方式设定,这样可以默认地将任何资源嵌入我的工程中, 也就是说, 使用 $( targetName) 作为默认命名空间的替换 。





相关问题
How can I overwrite file web.config with web.other.config?

I have a msbuild script with custom logic to deploy my service to the qa server automatically. I have to overwrite the default config with a dedicated one, but when I use <Copy SourceFiles="web....

How do I use MSBuild on a C# project with no compilable code

I have a C# web app project which actually has no ASP.Net or C# in it. It s just a single html page with some Javascript, CSS, and a couple of images. I want to use MSBuild to deploy a version of ...

您能否防止MSBuild.exe经营活动?

我用文字建造一些项目,偶尔利用习俗制造事件,给建筑系统造成了很大困难。 如果有可能,我想援引MSBuild.exe。

building .net applications without Visual Studio

I m interested to hear about people working with building .net applications using MSBuild, NAnt or similar tools. What are you using, why are you using it instead of the VS IDE? I like to use ...

How long does my Visual Studio C# compile take?

It seems like it should be possible to configure Visual Studio to print out how long the compile takes. Perhaps somewhere in the .sln file. If the sln is compiled from the command line using ...