Merge branch 'master' into net6

This commit is contained in:
2023-01-02 14:46:02 +01:00

View File

@@ -2,16 +2,16 @@
Namespace Mapped Namespace Mapped
Public Class IconExtractor Public Module FileTypeIcons
Public Shared Function ExtractIconFromFilePath(filePath As String, size As SystemIconSize) As Icon Public Function ExtractIconFromFilePath(filePath As String, size As SystemIconSize) As Icon
Return Internals.IconExtractor.ExtractIcon(filePath, size) Return Internals.IconExtractor.ExtractIcon(filePath, size)
End Function End Function
Public Shared Function ExtractIconFromFileExtension(fileExtension As String, size As SystemIconSize) Public Function ExtractIconFromFileExtension(fileExtension As String, size As SystemIconSize)
Return Internals.IconFactory.IconFromExtensionShell(fileExtension, size) Return Internals.IconFactory.IconFromExtensionShell(fileExtension, size)
End Function End Function
End Class End Module
End Namespace End Namespace