MSBuild:将自定义资源文件包含为嵌入式资源
MSBuild: Include a custom resource file as embedded resource
我在构建时使用 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>
我更改了 CreateItem 属性,因此它会反映您的问题。
希望对您有所帮助...
我在构建时使用 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>
我更改了 CreateItem 属性,因此它会反映您的问题。
希望对您有所帮助...