Skip to content

Commit

Permalink
Update resource embedding pattern in .csproj file
Browse files Browse the repository at this point in the history
Changed the EmbeddedResource update pattern from **\*.resx to *.resx. This modification ensures that only resx files in the immediate directory are included, optimizing the resource embedding process.
  • Loading branch information
sfmskywalker committed Nov 26, 2024
1 parent dac348d commit 346c0fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<EmbeddedResource Update="**\*.resx">
<EmbeddedResource Update="*.resx">
<Public>true</Public>
<AsConstants>true</AsConstants>
</EmbeddedResource>
Expand Down

0 comments on commit 346c0fd

Please sign in to comment.