Microsoft.Crm.Sdk.Proxy.2011 5.0.18

.NET Framework 4.0
dotnet add package Microsoft.Crm.Sdk.Proxy.2011 --version 5.0.18
NuGet\Install-Package Microsoft.Crm.Sdk.Proxy.2011 -Version 5.0.18
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.Crm.Sdk.Proxy.2011" Version="5.0.18" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.Crm.Sdk.Proxy.2011 --version 5.0.18
#r "nuget: Microsoft.Crm.Sdk.Proxy.2011, 5.0.18"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Microsoft.Crm.Sdk.Proxy.2011 as a Cake Addin
#addin nuget:?package=Microsoft.Crm.Sdk.Proxy.2011&version=5.0.18

// Install Microsoft.Crm.Sdk.Proxy.2011 as a Cake Tool
#tool nuget:?package=Microsoft.Crm.Sdk.Proxy.2011&version=5.0.18

This package contains the Microsoft.Crm.Sdk.Proxy dll for Microsoft Dynamics CRM 2011. License available inside SDK download

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (12)

Showing the top 5 NuGet packages that depend on Microsoft.Crm.Sdk.Proxy.2011:

Package Downloads
FakeXrmEasy The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Utilities to streamline unit testing in Dynamics CRM 2011 by faking the IOrganizationService against an In-Memory context which runs blazingly fast.

CrmPluginBase

This package provides ability for easy CRM plugins creation with focus on what you need to do and out of pain InputParameters/OutputParameters parsing. See example of use on project site.

FakeXrmEasy.Core.v2011 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

FakeXrmEasy is the open source test automation framework for .net core and the Power Platform. This is the core package containing a configurable middleware, crud operators, and query translation between FetchXml, QueryExpression, CRM LINQ, and QueryByAttribute. RELEASE NOTES ------------------ ## [2.3.0] ### Changed - Adding tests for MetadataGenerator - https://github.com/DynamicsValue/fake-xrm-easy/issues/77 - Moved GetContextFromSerialisedCompressedProfile method into the Plugins package and FakeXrmEasy.Plugins namespace ## [2.2.0] ### Changed - Added extension methods to detect and execute generic CRUD requests (of type OrganizationRequest) - DynamicsValue/fake-xrm-easy#31 - Replaced references to PullRequestException by references to UnsupportedExceptionFactory to make it easier raising requests based on the license context - **BREAKING**: In-Memory data dictionary that was defined as a public dictionary is now internal using a rewritten data structure to prepare for parallelization and concurrency. If you were accessing this property, please use the GetEntity or CreateQuery public methods in the IXrmFakedContext interface to query the state of the In-Memory database state instead. For any other use, always rely on the IOrganizationService* interfaces only. This breaking change will affect you only if you were accessing the 'Data' dictionary directly. - Fix Sonar Quality Gate settings: DynamicsValue/fake-xrm-easy#28 ## [2.1.1] ### Changed - Made CRM SDK v8.2 dependencies less specific - DynamicsValue/fake-xrm-easy#21 - Limit FakeItEasy package dependency to v6.x versions - DynamicsValue/fake-xrm-easy#37 - Updated build script to also include the major version in the Title property of the generated .nuspec file - DynamicsValue/fake-xrm-easy#41 - Modified TopCount support in QueryByAttribute and QueryExpression, to not throw exception if PageInfo was set but empty: DynamicsValue/fake-xrm-easy#16 - Do not clear previous FakeMessageExecutors or GenericFakeMessageExecutors when adding new ones or when calling them multiple times: DynamicsValue/fake-xrm-easy#15 - Allow creating records with any statecode attribute, which will be overriden by the platform as Active - DynamicsValue/fake-xrm-easy#36 - Both GetEntityById and GetEntityById&lt;T&gt; now clone the entity record before returning it - DynamicsValue/fake-xrm-easy#27 ## [2.1.0] ### Changed Added TopCount support in QueryByAttribute, and throw exception if both TopCount and PageInfo are set: DynamicsValue/fake-xrm-easy#16 Removed .netcoreapp3.1 target framework in versions 2.x, it'll be supported from versions 3.x onwards. Bump Microsoft.CrmSdk.CoreAssemblies to version 9.0.2.27 to support plugin telemetry - DynamicsValue/fake-xrm-easy#24 ## [2.0.1-rc1] - Initial release

DynamicaLabs.CrmTools

DynamicaLabs.CrmTools Class Library

FakeXrmEasy.Plugins.v2011 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package contains helpers to aid in developing and testing of plugins as well as pipeline simulation features. RELEASE NOTES ------------------ ## [2.3.2] ### Changed - Resolves an issue when using early bound types without pipeline types being generated caused plugin step registration to fail - https://github.com/DynamicsValue/fake-xrm-easy/issues/85 - Resolves an issue where the exception raised by a plugin was hidden because of reflection. - Resolves an issue with PostImages: where attributes defined in a PluginStepDefintion of a PostImage event where not returned - https://github.com/DynamicsValue/fake-xrm-easy/issues/102 ## [2.3.0] ### Changed - Implement execution of custom apis, as well as registration of extra plugin steps against these apis - https://github.com/DynamicsValue/fake-xrm-easy/issues/50 - Allow execution of PreImages in prevalidation : https://github.com/DynamicsValue/fake-xrm-easy/issues/71 ### Added - Added execution of fake custom api's - Added validation of preimages and postimages during plugin step registration - https://github.com/DynamicsValue/fake-xrm-easy/issues/33 - Added custom function to support registration of plugin steps via a custom reflection function (CustomPluginStepDiscoveryFunction) - https://github.com/DynamicsValue/fake-xrm-easy/issues/11 - First implementation (preview) of automatic registration of plugin steps via reflection - https://github.com/DynamicsValue/fake-xrm-easy/issues/11 ### Changed - IXrmFakedContextPluginExtensions is now IXrmBaseContextPluginExtensions. All extensions methods were changed to use the IXrmBaseContext interface as opposed to the IXrmFakedContext interface only so they could be used by both XrmFakedContext and XrmRealContext classes. - https://github.com/DynamicsValue/fake-xrm-easy/issues/35 ## [2.2.0] ### Added - OutputParameters is now populated in PipelineSimulation: DynamicsValue/fake-xrm-easy#39 - Plugin Step registration improvements: new general purpose method to register plugin steps: DynamicsValue/fake-xrm-easy#53 - Added possibility to register plugin steps with logical name, and therefore support for late bound registration DynamicsValue/fake-xrm-easy#38 ### Changed - Fix Sonar Quality Gate settings: DynamicsValue/fake-xrm-easy#28 ## [2.1.1] ### Changed - Limit FakeItEasy package dependency to v6.x versions - DynamicsValue/fake-xrm-easy#37 - Made CRM SDK v8.2 dependencies less specific - DynamicsValue/fake-xrm-easy#21 - Updated build script to also include the major version in the Title property of the generated .nuspec file - DynamicsValue/fake-xrm-easy#41 ## [2.1.0] ### Added - New UsePluginStepRegistrationValidation that can be used to validate if a plugin step registration is valid - DynamicsValue/fake-xrm-easy#19 and DynamicsValue/fake-xrm-easy#33 - Improved performance of retrieval of Plugin steps, added benchmark tests DynamicsValue/fake-xrm-easy#14 - PluginStepAudit and new UsePluginStepAudit in PipelineOptions - DynamicsValue/fake-xrm-easy#19 - PreValidation execution in Pipeline Simulation - DynamicsValue/fake-xrm-easy#19 - PreImages and Postimages execution in Pipeline Simulation - DynamicsValue/fake-xrm-easy#19 - Triggering plugins in PipelineSimulation based on filtering attributes - DynamicsValue/fake-xrm-easy#19 - Support for ILogger and PluginTelemetry - DynamicsValue/fake-xrm-easy#24 ### Changed - Upgraded Microsoft.CrmSdk.Coreassemblies dependency to 9.0.2.27 to support PluginTelemetry - DynamicsValue/fake-xrm-easy#24 - Marked several execute plugin methods as obsolete - Populate OwningExtension in plugin execution context from default fake plugin context DynamicsValue/fake-xrm-easy#17 - Populate PrimaryEntityId in plugin execution context from default fake plugin context DynamicsValue/fake-xrm-easy#8 ## [2.0.1-rc1] - Initial release

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Microsoft.Crm.Sdk.Proxy.2011:

Repository Stars
jordimontana82/fake-xrm-easy
The testing framework for Dynamics CRM and Dynamics 365 which runs on an In-Memory context and deals with mocks or fakes for you
Version Downloads Last updated
5.0.18 186,723 2/27/2014