Sunday, 16 December 2018

Upload Multiple Projects to GitHub Repository

Open Command Prompt and go to the root folder where your Projects Files/Folders are located
Clean 1st GitHub local folder (in case it was configured earlier)
> rd .git /S/Q

Initialize GitHub local folder
>git init

Add files/folders to GitHub local (Note: space between add and dot)
>git add .

commit file/folder to git local repository
git commit -m "BizTalk Projects commit"

Push to file/folders to GitHub cloud repository
>git remote add origin https://github.com/DeepakkSHAW/Dummy.git

Finally need to push (Note: you may need to provide git credentials, and wait for the upload to complete)
>git push -u origin master


Go to online and GitHub web portal, hopefully, it’s all done.

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..