0

Basically, I want everything in my "Resources" folder to be an EmbeddedResource.

This question is perfect, but the question there is about the old csproj format. In Visual Studio, how can I set the Build Action for an entire folder?

William Jockusch
  • 26,513
  • 49
  • 182
  • 323

1 Answers1

0

This seems to work, in the .csproj file:

<ItemGroup>
  <EmbeddedResource Include="Resources\**" />
</ItemGroup>
William Jockusch
  • 26,513
  • 49
  • 182
  • 323