✅ Visual Studio nesting resource files

Hi,
I'm using File Nesting In Visual Studio in order to organize files this way:

FileName.razor
    FileName.razor.cs
    FileName.resx
    FileName.en-US.resx
    FileName.it-IT.resx
    ...


I'm using custom settings with
"allExtensions": {
"add": {
  ".*": [
    ".razor"
  ]
}


This way I have that FileName.resx is correctly nested under FileName.razor, but FileName.en-US.resx is not nested.

Could you please help me understand how should I correct the settings file?
Learn about Solution Explorer file nesting rules, presets, and customization.
Was this page helpful?