Where is the CRM Developer toolkit for CRM 2015?

I have a couple of puzzling questions about CRM development and I thought I would blog about them in the hope someone might come up with an answer.

  • Where is the CRM developer toolkit for CRM 2015?
  • When will the developer toolkit be supported in Visual Studio 2013?

What is the CRM developer toolkit?

If you don’t know what the CRM developer toolkit is, it’s likely you haven’t done any CRM development and/or written any CRM plugins.

If you have written plugins without using the CRM developer toolkit it usually means you have been a CRM developer using CRM 2011 and older, which in turn means you are old and go round saying

“I remember the day when CRM had it’s own variables (CRM 4) and we had create plugins by hand”

The CRM developer toolkit is a fantastic tool created by Microsoft make CRM development easier and quicker.

They have a great page here, which describes the functionality provided

With the Developer Toolkit, you can do the following:

  • Easily generate strongly typed proxy classes without having to run CrmSvcUtil.exe.

  • Get access to entity and option set definitions within Visual Studio.

  • Generate plug-in code so you can immediately begin to write code for business logic.

  • Edit and register plug-ins without using the Plug-in registration tool.

  • Create new web resources or extract existing web resources, add them to your solution, edit them, and deploy changes all within Visual Studio.

  • Create and edit workflow and dialog processes from within Visual Studio.

  • Create and deploy XAML workflows in Visual Studio.

  • Get easy access to security role and field security profile information in Visual Studio.

I love the CRM developer toolkit, it’s 100 percent awesome.

I made a video on how to set it up, blog version here

Looking at and understanding the Plugin.cs class which is provided by the CRM Developer toolkit is a great way to understand how plugins work and what the CRM developer toolkit does to ease the creation of plugins/custom workflows.

The plugin class acts as a template getting all the useful objects from the IServiceProvider (in the olden days we had to write this code ourselves, you don’t know how lucky you are etc).


internal LocalPluginContext(IServiceProvider serviceProvider)
 {
 if (serviceProvider == null)
 {
 throw new ArgumentNullException("serviceProvider");
 }

// Obtain the execution context service from the service provider.
 this.PluginExecutionContext = (IPluginExecutionContext)serviceProvider.GetService(typeof(IPluginExecutionContext));

// Obtain the tracing service from the service provider.
 this.TracingService = (ITracingService)serviceProvider.GetService(typeof(ITracingService));

// Obtain the Organization Service factory service from the service provider
 IOrganizationServiceFactory factory = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));

// Use the factory to generate the Organization Service.
 this.OrganizationService = factory.CreateOrganizationService(this.PluginExecutionContext.UserId);
 this.ServiceProvider = serviceProvider;
 this.OrganizationServiceFactory = factory;
 }

Here is a step by step guide to creating a simple plugin using the CRM developer toolkit

CRM 2013 – Step by Step Update Plugin Tutorial using the CRM 2013 Development Toolkit

What is the problem with the CRM Developer toolkit

I’m not sure about the reasons why the CRM Developer toolkit has been omitted from the CRM 2015 SDK?

It’s not all bad because you can use the CRM developer toolkit in CRM 2013.  Excluding the CRM developer toolkit from CRM 2015 makes it more difficult for new CRM developers because they need to go and hunt the CRM developer toolkit from CRM 2013.

I have asked Microsoft support and anyone who listens to my twitter account but no one seems to know when it will be released for CRM 2015 or the cause of the delay (are they rewriting it?)

The answer I got was the CRM Development team are very busy and only have limited resources.  I should raise/vote for item on the Microsoft connect site.

There is no doubt the Microsoft CRM development team have been busy bees, particularly when you see all the new functionality in CRM 2015 SP1.

I do find it perplexing the CRM developer toolkit hasn’t been updated to work with CRM 2015 and work with Visual Studio 2013.  Here are the reason

  • Visual Studio 2013 is a few years old now and Visual Studio 2015 will be released leaving CRM developers stuck using Visual studio 2012.
  • I would have thought this would have been a priority, not only would it mean CRM developers could upgrade to Visual Studio 2013.
  • Is it not in Microsoft’s interest to get developers using the latest versions of their software?
  • We want CRM development to be easier not harder, particularly for new CRM developers

 

VOTE FOR THE CONNECT ISSUE

I think the Microsoft Connect site could be improved and I have written about this before

 Is Microsoft Listening to the Dynamics CRM Community?

Navigating the connect site and searching for this issue has done nothing to change my opinion.  It was difficult and slow.

Here is the issue, please vote it up

Dynamics CRM Developer Toolkit for CRM 2015/Visual Studio 2013

What frustrates me about the Connect site is it could be great at gathering useful suggestions but this issue was raised on 16th Jan 2015.  It has had four replies and none of them from Microsoft!

Have Microsoft read it?

Is this issue a duplicate?

It’s almost 6 months later and Microsoft haven’t even responded.  Microsoft encourage people to raise connect suggestions but then nothing happens when people do.  My view is the connect system is not working very effectively and could be improved.

There are workarounds

There is a great blog post Dynamics CRM 2015 SDK and Developer Toolkit, this quote explains why and the article shows you how to work round this

The new CRM SDK  2015 doesn’t give support yet for our known CRM Developer Toolkit,  which has been part of the CRM SDK until CRM 2013. Basically, the CRM SDK 2015 assemblies have been compiled with .NET Framework 4.5.2, but CRM Developer Toolkit was compiled using NET Framework 4.5. See the next Microsoft article for more details.

 

The article below shows you how to get the CRM developer toolkit working with visual studio 2013 by editing a few files

Microsoft Dynamics CRM 2013 Toolkit with Visual Studio 2013

Conclusion

I’m unsure of the reason why Microsoft have not released the CRM developer toolkit for Visual studio 2013 and CRM 2015.

If anyone knows the reason, please leave a comment.

It’s seems counter productive to make CRM development harder for new releases of CRM and newer versions of Visual studio.

Hopefully if enough people vote the Connect suggestion, Microsoft will at least reply to the suggestion or better yet use the workarounds to make an official release of the CRM developer toolkit.

All information welcome

26 thoughts on “Where is the CRM Developer toolkit for CRM 2015?

  1. David Berry June 4, 2015 / 12:41 am

    Honestly, I have long used the CRM Solution Manager, instead. It’s a paid tool, but the time it’s saved me, working in CRM 2011, 2013, and 2015 has been far worth it. As for the Developer Toolkit, well… I did get to see some wonderful work demonstrated by Microsoft at eXtremeCRM 2014 in Las Vegas. You might look for material around that point in time, as I understood it to be the next generation of the Developer Toolkit that would finally have me using both tools simultaneously to publish, debug, and generally do everything I need as a developer from inside Visual Studio.

    Liked by 1 person

    • Hosk June 4, 2015 / 11:38 am

      Everyone who has used the CRM solution Manager says good things about it.

      I will give the trial a whirl and see what I’m missing out on

      Like

  2. zsoltzombik June 4, 2015 / 12:31 pm

    Thanks you for this great compilation. Recently I’ve downloaded the CRM Solution Manager. I plan to share my experiences with you.

    Like

    • Hosk June 4, 2015 / 12:38 pm

      I am going to do the same because I haven’t got CRM Dev toolkit working with Visual studio 2013 yet and I’m interested to see what how CRM Solution manager works and how much of an improvement it is to the CRM developer toolkit.

      I look forward to your review

      Like

  3. Charles Wattson June 5, 2015 / 1:24 pm

    Yes, for new releases of CRM it does look counter productive! It will be great to watch how CRM Solution manager works in terms of improvement to CRM developer toolkit.

    Like

  4. gedro December 21, 2015 / 7:54 pm

    Any news for a new version of the toolkit for Dynamics CRM 2016?

    Like

    • Hosk December 21, 2015 / 8:06 pm

      I have only heard Microsoft are working on it but they won’t give any details when it will be released, which is very frustrating

      Like

      • Adam Coulter July 1, 2016 / 7:22 am

        Any news in the last 6 months? We really need this to do DevOps properly with CRM.

        Like

      • Hosk July 4, 2016 / 4:42 pm

        I believe it’s in beta but I can’t access the beta. At least it means it getting closer

        Like

      • Nico van der Heiden August 2, 2016 / 9:50 am

        Where can I find the beta version? I have searched for this on the web, but wasn’t able to find anything about this.

        Like

      • Hosk August 2, 2016 / 10:48 am

        It was available for beta but I think they have taken down the link. At the moment you have to wait for Microsoft to release it

        Like

  5. Nico van der Heiden August 2, 2016 / 9:47 am

    Were can I find this beta version? I’ve searched for it, but was not able to find any details about it on the web?

    Like

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.