.resx icon

This commit is contained in:
Matt Parker
2025-11-29 12:21:54 +10:00
parent 60e3d4d36d
commit b16e1bc126

View File

@@ -32,7 +32,7 @@ public partial class SolutionExplorerPanel
".html" or ".htm" => _htmlIcon,
".css" => _cssIcon,
".txt" => _txtIcon,
".props" or ".config" or ".targets" => _genericFileIcon,
".props" or ".config" or ".targets" or ".resx" => _genericFileIcon,
".md" => _mdFileIcon,
".editorconfig" => _editorConfigFileIcon,
".gitignore" => _gitignoreFileIcon,
@@ -42,7 +42,7 @@ public partial class SolutionExplorerPanel
var overlayTexture = fileExtension switch
{
".props" => _propsFileOverlayIcon,
".config" => _configFileOverlayIcon,
".config" or ".resx" => _configFileOverlayIcon,
".targets" => _targetsFileOverlayIcon,
_ => null
};