我在构建时使用MSBuild动态生成资源文件,但是为了能够在运行时从该资源文件中读取,我需要它作为嵌入式资源。
我到处都看过如何将.csproj
中的文件标记为嵌入式资源,我甚至尝试过无效。
<ItemGroup>
<Content Include="Infrastructure\Content\Store\content_store_en.json" />
<EmbeddedResource Include="Infrastructure\Content\Store\content_store_en.json">
</EmbeddedResource>
</ItemGroup>
有什么方法可以实现这个目标吗?
答案 0 :(得分:6)
以下是您的操作方法:
<Target Name="BeforeBuild">
<CreateItem Include="Infrastructure\**\*.json">
<Output ItemName="EmbeddedResource" TaskParameter="Include" />
</CreateItem>
</Target>
我更改了CreateItem属性,因此它会反映您的问题。
我希望它有所帮助...