PPDS.Plugins
2.0.0
dotnet add package PPDS.Plugins --version 2.0.0
NuGet\Install-Package PPDS.Plugins -Version 2.0.0
<PackageReference Include="PPDS.Plugins" Version="2.0.0" />
<PackageVersion Include="PPDS.Plugins" Version="2.0.0" />
<PackageReference Include="PPDS.Plugins" />
paket add PPDS.Plugins --version 2.0.0
#r "nuget: PPDS.Plugins, 2.0.0"
#:package PPDS.Plugins@2.0.0
#addin nuget:?package=PPDS.Plugins&version=2.0.0
#tool nuget:?package=PPDS.Plugins&version=2.0.0
PPDS SDK
NuGet packages for Microsoft Dataverse development. Part of the Power Platform Developer Suite ecosystem.
Packages
Compatibility
| Package | Target Frameworks |
|---|---|
| PPDS.Plugins | net462 |
| PPDS.Dataverse | net8.0, net9.0, net10.0 |
| PPDS.Migration | net8.0, net9.0, net10.0 |
| PPDS.Auth | net8.0, net9.0, net10.0 |
| PPDS.Cli | net8.0, net9.0, net10.0 |
PPDS.Plugins
Declarative attributes for configuring Dataverse plugin registrations directly in code.
dotnet add package PPDS.Plugins
[PluginStep(
Message = "Create",
EntityLogicalName = "account",
Stage = PluginStage.PostOperation)]
[PluginImage(
ImageType = PluginImageType.PreImage,
Name = "PreImage",
Attributes = "name,telephone1")]
public class AccountCreatePlugin : IPlugin
{
public void Execute(IServiceProvider serviceProvider) { }
}
See PPDS.Plugins on NuGet for details.
PPDS.Dataverse
High-performance Dataverse connectivity with connection pooling, throttle-aware routing, and bulk operations.
dotnet add package PPDS.Dataverse
// Setup with typed configuration
services.AddDataverseConnectionPool(options =>
{
options.Connections.Add(new DataverseConnection("Primary")
{
Url = "https://org.crm.dynamics.com",
ClientId = "your-client-id",
ClientSecret = Environment.GetEnvironmentVariable("DATAVERSE_SECRET")
});
options.Pool.DisableAffinityCookie = true; // 10x+ throughput improvement
});
// Usage
await using var client = await pool.GetClientAsync();
var account = await client.RetrieveAsync("account", id, new ColumnSet(true));
See PPDS.Dataverse documentation for details.
PPDS.Migration
High-performance data migration engine for Dataverse. Replaces CMT for automated pipeline scenarios with 3-8x performance improvement.
dotnet add package PPDS.Migration
// Setup
services.AddDataverseConnectionPool(options =>
{
options.Connections.Add(new DataverseConnection("Target")
{
Url = "https://org.crm.dynamics.com",
ClientId = "your-client-id",
ClientSecret = Environment.GetEnvironmentVariable("DATAVERSE_SECRET")
});
});
services.AddDataverseMigration();
// Export
var exporter = serviceProvider.GetRequiredService<IExporter>();
await exporter.ExportAsync("schema.xml", "data.zip");
// Import with dependency resolution
var importer = serviceProvider.GetRequiredService<IImporter>();
await importer.ImportAsync("data.zip");
Key Features:
- Parallel export (all entities exported concurrently)
- Tiered import with automatic dependency resolution
- Circular reference detection with deferred field processing
- CMT format compatibility (drop-in replacement)
- Security-first: no PII in logs, connection string redaction
See PPDS.Migration documentation for details.
PPDS.Cli
Unified CLI tool for Dataverse operations. Install as a .NET global tool:
dotnet tool install -g PPDS.Cli
# Create an auth profile (opens browser for login)
ppds auth create --name dev
# Select your environment
ppds env select --environment "My Environment"
# Export data
ppds data export --schema schema.xml --output data.zip
# Import data
ppds data import --data data.zip --mode Upsert
Commands:
ppds auth- Manage authentication profiles (create, list, select, delete, who)ppds env- Environment discovery and selection (list, select, who)ppds data- Data operations (export, import, copy, analyze)ppds schema- Schema generation (generate, list)ppds users- User mapping for cross-environment migrations
See PPDS.Cli documentation for details.
Architecture Decisions
Key design decisions are documented as ADRs:
- ADR-0001: Disable Affinity Cookie by Default
- ADR-0002: Multi-Connection Pooling
- ADR-0003: Throttle-Aware Connection Selection
- ADR-0004: Throttle Recovery Strategy
- ADR-0005: DOP-Based Parallelism
- ADR-0006: Connection Source Abstraction
- ADR-0007: Unified CLI and Shared Authentication
Patterns
- Connection Pooling - When and how to use connection pooling
- Bulk Operations - High-throughput data operations
Related Projects
| Project | Description |
|---|---|
| power-platform-developer-suite | VS Code extension |
| ppds-tools | PowerShell deployment module |
| ppds-alm | CI/CD pipeline templates |
| ppds-demo | Reference implementation |
License
MIT License - see LICENSE for details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.6.2
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.