Monday, 14 May 2018

Visio stencils collection for BizTalk, Azure, Infra and more..

Visio stencils collection
Downloaded Visio stencils from various sites from the net, Related to Microsoft Integration BizTalk, Azure, Infra and many more Stencils
Hoping this will be helpful & useful.
Enjoy!




Monday, 7 May 2018

BizTalk BTDF deployment on top of exiting BizTalk Application

This deployment method will only add BizTalk resources to the existing application without underpaying it or throwing an error during fresh deployment.

Step1:
    <!--Add the line in your BTDF Project in Node: Project >> PropertyGroup -->
    <SkipRemoveApp>True</SkipRemoveApp>   

Step2:
  <!--Add below lines in your Deployment.btdfproj file Assuming you have BizTalkAppName defined in a veriable -->
  <Target Name="DeployAppDefinition" Condition="'$( SkipRemoveApp)' == 'False'">
    <Exec Command="BTSTask.exe AddApp -ApplicationName:&quot;$(BizTalkAppName)&quot; -Description:&quot;$(ProjectName)&quot;" />
    <AddAppReference ApplicationName="$(BizTalkAppName)" AppsToReference="@(AppsToReference)" Condition="%(Identity) == %(Identity) and '@(AppsToReference)' !=''"/> 
  </Target>

Happy coding..