gpt4 book ai didi

visual-studio - MSBuild:包含自定义资源文件作为嵌入资源

转载 作者:行者123 更新时间:2023-12-04 00:41:45 26 4
gpt4 key购买 nike

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

我到处都在查看如何在 .csproj 中标记文件作为嵌入式资源,我什至尝试过无济于事。

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

有什么办法可以做到这一点吗?

最佳答案

这是你如何做到的:

<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 属性,因此它将反射(reflect)您的问题。

我希望它有帮助...

关于visual-studio - MSBuild:包含自定义资源文件作为嵌入资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29559371/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com