MSBuild:将自定义资源文件包含为嵌入资源

时间:2015-04-10 10:40:33

标签: visual-studio msbuild csproj

我在构建时使用MSBuild动态生成资源文件,但是为了能够在运行时从该资源文件中读取,我需要它作为嵌入式资源。

我到处都看过如何将.csproj中的文件标记为嵌入式资源,我甚至尝试过无效。

<ItemGroup>
  <Content Include="Infrastructure\Content\Store\content_store_en.json" />
  <EmbeddedResource Include="Infrastructure\Content\Store\content_store_en.json">
  </EmbeddedResource>
</ItemGroup>

有什么方法可以实现这个目标吗?

1 个答案:

答案 0 :(得分:6)

以下是您的操作方法:

<Target Name="BeforeBuild">
    <CreateItem Include="Infrastructure\**\*.json">
        <Output ItemName="EmbeddedResource" TaskParameter="Include" />
    </CreateItem>
</Target>

来源:http://ayende.com/blog/4446/how-to-setup-dynamic-groups-in-msbuild-without-visual-studio-ruining-them

我更改了CreateItem属性,因此它会反映您的问题。

我希望它有所帮助...