FakeXrmEasy.Plugins.v2011 2.4.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package FakeXrmEasy.Plugins.v2011 --version 2.4.1
NuGet\Install-Package FakeXrmEasy.Plugins.v2011 -Version 2.4.1
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="FakeXrmEasy.Plugins.v2011" Version="2.4.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FakeXrmEasy.Plugins.v2011 --version 2.4.1
#r "nuget: FakeXrmEasy.Plugins.v2011, 2.4.1"
#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 FakeXrmEasy.Plugins.v2011 as a Cake Addin
#addin nuget:?package=FakeXrmEasy.Plugins.v2011&version=2.4.1

// Install FakeXrmEasy.Plugins.v2011 as a Cake Tool
#tool nuget:?package=FakeXrmEasy.Plugins.v2011&version=2.4.1

This package contains helpers to aid in developing and testing of plugins as well as pipeline simulation features.

Product Compatible and additional computed target framework versions.
.NET Framework net452 is compatible.  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)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on FakeXrmEasy.Plugins.v2011:

Package Downloads
FakeXrmEasy.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 / Dataverse. This is an include package.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.4.1 165 2/7/2024
2.4.0 72 2/6/2024
2.3.3 250 10/15/2023
2.3.2 183 5/17/2023
2.3.0 355 12/27/2022
2.2.0 414 9/7/2022
2.1.1 484 5/29/2022
2.1.0 520 4/10/2022
2.0.1-rc1.2 149 12/6/2021
2.0.1-rc1.1 147 11/23/2021

## [2.4.1]
### Changed
- Fix for GetServiceProvider should return null for unsupported types - https://github.com/DynamicsValue/fake-xrm-easy/issues/127
## [2.4.0]
### Added
- **Alpha**: Introduced subscription usage monitoring based on customer feedback
### Changed
- Set default build configuration in solution file to FAKE_XRM_EASY_9
- build.ps1 improvements: do not build project twice (added --no-build) when running dotnet test, do not build again either when packing assemblies either: https://github.com/DynamicsValue/fake-xrm-easy/issues/119
- Remove release notes from package description: https://github.com/DynamicsValue/fake-xrm-easy/issues/115
- Update build scripts to use 'all' target frameworks by default - https://github.com/DynamicsValue/fake-xrm-easy/issues/126
- Update github actions to use new Sonar environment variables - https://github.com/DynamicsValue/fake-xrm-easy/issues/120
## [2.3.3]
### Added
- Added [ExcludeFromCodeCoverage] to included generated PipelineType entities in src as it messes up code coverage metrics
- **[Possibly breaking change]** : Exception raised if both EntityTypeCode and EntityLogicalName are set when registering a plugin step. EntityTypeCode is deprecated, please move all plugin registrations to use EntityLogicalName instead.
- Introduced new user-defined exceptions to verify plugin step registrations when EntityTypeCode is used
- Adding support for secure and unsecure configurations in pipeline simulation - https://github.com/DynamicsValue/fake-xrm-easy/issues/103
### Changed
- Update legacy CRM SDK 2011 dependency to use official MS package - https://github.com/DynamicsValue/fake-xrm-easy/issues/105
## [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