d365-clideprecated

Command line interface for Dynamics 365 development project scaffolding

Usage no npm install needed!

<script type="module">
  import d365Cli from 'https://cdn.skypack.dev/d365-cli';
</script>

README

d365-cli

Build NPM
Build Status npm

Dynamics 365 CLI for scaffolding development projects

Generators

  • Web resource project scaffolding
  • Plugin project scaffolding
    • Base plugin classes
    • No ILMerge needed
    • Deploy plugin assemblies and types
    • Deploy plugin steps
  • Workflow project scaffolding
    • Workflow activity base class
    • No ILMerge needed
    • Deploy workflow assemblies and types
  • Console application project scaffolding

Usage

Installation

#npm
npm install -g d365-cli

#yarn
yarn global add d365-cli

Create

d365 create webresource

d365 create plugin

d365 create workflow

d365 create console

Add

d365 add script Account

d365 add test-script Account

d365 add html index

d365 add css stylesheet

d365 add plugin AccountCreate

d365 add workflow SomeActivity

Deploy

To deploy, sign in here to grant access to your Dynamics 365 organization.

Deployment configuration is stored in config.json. Authentication information is stored in creds.json. The "create" and "add" commands will generate and updates these files for you.

d365 deploy webresource

d365 deploy plugin

d365 deploy workflow

Contributions

Contributions are welcome. To commit changes, stage them then run npm run commit to commit. This will format the commit so semantic-release can select the correct version number.