Suneelbabumsdynamiccrm.files.wordpress.com



D365 V9 CRM SDK - SDK is reborn as Developer Guide - How to use it?Microsoft is coming up with quite a bunch of sensible updates/features everyday. With the evolution?around Dynamics space, we tend to witness updates around most of the existing areas and now it includes CRM SDK,??What happened to SDK? No more SDK downloads!SDK and the related documentations are replaced by?Developer Guide **?. Developer Guide is a part of? docs. now and has all the needed documentation.Makes sense, but what happened to Plugin registration and other tools, bin assemblies and Sample code???Don't worry, Everything is still available but as standalone downloads??Where are the the plugin registration and other tools(Plugin registration tool, CrmSvcUtil, Configuration migration, Solution Packager, Package deployer, etc.,)? They are available as NuGet and can be downloaded using power shell scripts. The steps are as follows??For more info refer?this page from Microsoft?docs **?and the below steps are copied from the same,1.In your Windows Start menu, type Windows Powershell and open it.2.Navigate to the folder you want to install the tools to.For example if you want to install them in a devtools folder on your D drive, type cd D:\devtools .3.Copy and paste the following PowerShell script into the PowerShell window and press Enter.$sourceNugetExe = ""$targetNugetExe = ".\nuget.exe"Remove-Item .\Tools -Force -Recurse -ErrorAction IgnoreInvoke-WebRequest $sourceNugetExe -OutFile $targetNugetExeSet-Alias nuget $targetNugetExe -Scope Global -Verbose####Download Plugin Registration Tool##./nuget install Microsoft.CrmSdk.XrmTooling.PluginRegistrationTool -O .\Toolsmd .\Tools\PluginRegistration$prtFolder = Get-ChildItem ./Tools | Where-Object {$_.Name -match 'Microsoft.CrmSdk.XrmTooling.PluginRegistrationTool.'}move .\Tools\$prtFolder\tools\*.* .\Tools\PluginRegistrationRemove-Item .\Tools\$prtFolder -Force -Recurse####Download CoreTools##./nuget install Microsoft.CrmSdk.CoreTools -O .\Toolsmd .\Tools\CoreTools$coreToolsFolder = Get-ChildItem ./Tools | Where-Object {$_.Name -match 'Microsoft.CrmSdk.CoreTools.'}move .\Tools\$coreToolsFolder\content\bin\coretools\*.* .\Tools\CoreToolsRemove-Item .\Tools\$coreToolsFolder -Force -Recurse####Download Configuration Migration##./nuget install Microsoft.CrmSdk.XrmTooling.ConfigurationMigration.Wpf -O .\Toolsmd .\Tools\ConfigurationMigration$configMigFolder = Get-ChildItem ./Tools | Where-Object {$_.Name -match 'Microsoft.CrmSdk.XrmTooling.ConfigurationMigration.Wpf.'}move .\Tools\$configMigFolder\tools\*.* .\Tools\ConfigurationMigrationRemove-Item .\Tools\$configMigFolder -Force -Recurse####Download Package Deployer ##./nuget install Microsoft.CrmSdk.XrmTooling.PackageDeployment.WPF -O .\Toolsmd .\Tools\PackageDeployment$pdFolder = Get-ChildItem ./Tools | Where-Object {$_.Name -match 'Microsoft.CrmSdk.XrmTooling.PackageDeployment.Wpf.'}move .\Tools\$pdFolder\tools\*.* .\Tools\PackageDeploymentRemove-Item .\Tools\$pdFolder -Force -Recurse####Remove NuGet.exe##Remove-Item nuget.exe 4.You will find the tools in the following folders:> [Your folder]\Tools\ConfigurationMigration> [Your folder]\Tools\CoreTools> [Your folder]\Tools\PackageDeployment> [Your folder]\Tools\PluginRegistrationTo get the latest version of these tools, repeat these steps.Where are the Sample codes and projects? They are available in the following Microsoft docs URL are the assemblies?Assemblies are a part of NuGet package like the dev tools. Refer here for NuGet info **Hope this helps!Source and Reference: Microsoft docs ** ................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download