The ALL-NEW CRM SDK 4.0.3 What fun
Version 4.0.3 of the Microsoft Dynamics CRM 4.0 SDK is now available for download!
This version contains lots of great new information, including the 1st phase of the Report Writers Guide and a vastly improved Plug-in registration tool.
Also included in this release:
A full sample showing how to create a Custom Workflow Activity
Yay! Maybe we’ll now be able to work out how to do what we’ve been trying to do for a couple of weeks—installing a new custom workflow!
*opens up the folder*
*opens the install project and eagerly reads through the code*
static void Deploy()
{
try {
//Create the custom activity
string assemblyPath = @"C:\main\src\QA\SdkSamples\Walkthroughs\Workflow\Code\CreateLead\CreateLead\bin\Debug\CreateLead.dll";
string typeName = "CreateLead.AmysActivity";
Assembly assembly = Assembly.LoadFile(assemblyPath);
// ToDo: Fix this code.
*cries*