Countryen
Countryen
Hey Anthony, I don't think that's possible / wanted by MS. The shell is designed to allow customization to the 'default' behaviour, so forcing thus for all isn't really a...
Hey @akaksohot. Can you first please change the issue-description according to the template for consistency (see the template when creating a new issue)? Also, depending on which version of SharpShell...
Hey @akaksohot, so you want to override the preview for ALL file-extensions that have a certain (system) preview handler? I don't think it's possible. You need to specify which extensions/classes...
You should be able to combine them, did you try that? ```` [ComVisible(true)] [COMServerAssociation(AssociationType.ClassOfExtension, ".cs")] [COMServerAssociation(AssociationType.ClassOfExtension, ".txt")] [COMServerAssociation(AssociationType.AllFilesAndFolders)] [DisplayName("Abc Preview Handler")] [Guid("B86199F1-13D0-4711-AFE6-08C1E4C58905")] [PreviewHandler(DisableLowILProcessIsolation = false)] public class AbcPreviewHandler : SharpPreviewHandler...
Yes, you have to specify them explicitely, even then they might not work as there is no guarantee that your handler will override the others. You can also remove the...
There are multiple tutorials/how-to online, here a few: - https://dotnet-snippets.de/snippet/using-the-registry/216 - https://dotnet-snippets.de/snippet/nuetzliches-aus-der-registry/428 - https://www.infoworld.com/article/3073167/how-to-access-the-windows-registry-using-c.html Including the MSDN / Microsoft Docs: https://docs.microsoft.com/de-de/dotnet/api/microsoft.win32.registry?view=netframework-4.8 I don't know if there is a "search for...
Hey @akaksohot have you figured out a way? I'd be happy to read your solution (maybe others, too). Also, please remember to close this issue, if the actual "problem with...
Hey @dwmkerr something irritates me. You can install Servers. You can Register servers. Installing = Putting them into GAC Registering = Putting them into Registry (CLSID, etc.) But now the...
Hey @RichardSharpe, if you wanna assist/help, see this: > If you have - new or old - questions to the registration/installation of Servers, post them here. I want to make...
Oh also, if you are interested, I am currently working on more **test coverage** for the project, see project 4 for more information about that. I would appreciate any help....