generator-biztalkpipelinecomponent
v0.7.1
Published
Generator for BizTalk PipelineComponents
Downloads
13
Readme
generator-biztalkpipelinecomponent
Generator for BizTalk PipelineComponents
A hughe part of the work involved in creating a pipeline component is setting upp boiler plate code. This generator aims to relieve you of that.
This generator generates this project structure:
<pipelinecomponentname>.sln
│ .gitignore
│ nuget.config
│ .gitattributes
│
└───Src
│ |
│ └───<pipelinecomponentname>.csproj
│ | <componentname>.cs
│ | <componentname>.component.cs
| | <componentname>.nuspec
│ | <packages>.config
│ │
│ └───BizTalkComponents.Utils
│
└───Tests
│ |
│ └───UnitTests
| |
│ └───UnitTests.csproj
└───Build
│
└───<pipelinecomponentname>.proj
Compatability
Works with:
- BizTalk Server 2013
- BizTalk Server 2013R2
- BizTalk Server 2016
Installation
First, install node.js and npm (we assume you are running Windows since this is a BizTalk generator). Install Yeoman and generator-biztalk using npm. Then in PowerShell run:
npm install -g yo
npm install -g generator-biztalkpipelinecomponent
Then generate your new project:
yo biztalkpipelinecomponent
License
MIT © Robin Hultman