◷ Reading Time: 2 minutes
These extensions allow publishing
- Deployment Package
- Individual logic documents
to a specific, custom location i.e. Database, FTP Server, etc. using the Package Builder.

Sample Extension
Download the sample extension.
Compile Sample Extension
- Open the sample extension project in Visual Studio
- Reference below assemblies in the project from the latest version of FlexRule Designer
- FlexRule.Designer.Common.dll
- FlexRule.Designer.Core.dll
- FlexRule.Designer.Deployment.dll

Compile and you will find Deployment.Extension.DB.dll in the Debug folder of the project.
Registering
- Copy Deployment.Extension.DB.dll to the bin folder of FlexRule Designer
- Edit file FlexRule.Designer.Settings.config
- Locate Tag Designer/Deployment/Extensions
- Use the below Add element to register your own extension
<Designer> ... some other contents are emitted ... <Deployment> ... some other contents are emitted ... <Extensions> <Add assembly="FlexRule.Designer.Vault.dll" type="FlexRule.Designer.Deployment.Server.Extensions.FlexRuleServerControl"/> <Add assembly="Deployment.Extension.DB.dll" type="Deployment.Extension.DB.DatabaseDeployer"/> </Extensions> </Deployment> </Designer>