Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MSBuild: Include a custom resource file as embedded resource

I am dynamically generating a resource-file at build time with MSBuild, but in order to be able to read from this resource file at run-time, I need it to be an embedded resource.

I have looked everywhere at how to mark a file in a .csproj as embedded resource, I have even tried this to no avail.

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

Is there any way I can achieve this ?

like image 328
sacritruth Avatar asked Feb 10 '23 11:02

sacritruth


1 Answers

Here is how you do it:

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

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

I changed the CreateItem attribute so it will reflect your question.

I hope it helps...

like image 165
DeJaVo Avatar answered Mar 10 '23 12:03

DeJaVo