Posts

Showing posts from 2024

Nostalgia - Hello World - Amiga 500

start ldx #$00 loop lda text,x sta $0400,x beq finish inx jmp loop finish rts text .byte 8,5,12,12,15,32,23,15,18,12 .byte 4,33,0 Output : Hello World! I missed those days a lot ...

"The Service IVsTaskList must be installed" and "method is not supported" error messages while loading Crm Package solution in Visual Studio 2022

Image
 Hello, I'd like to share an issue with the solution i faced today. Short story :  I just installed Visual Studio 2022 Profesional to work on PlugIns of one of my existing Dynamics CE solutions after 4 years. It was developed in Visual Studio 2017 Professional and contain CRM Package project which throws an error.   After installing  Power Platform Tools for VS 2022  successfully, Visual Sudio 2022 Profesional was able to convert and load other projects successfully but only CrmPackage.  I got below messages through 2 seperated pop-up windows;   The Service IVsTaskList must be installed Method is not supported  (I could not copy neither full messages nor screenshoots :( )  After spending 2 hours for investigation, I saw that manipulating CrmPackage.csproj file works magically.   Edit on 07th of June, 2024 : Version can be 4.7.1 Hopes, it saves hours, good luck.