Tuesday, 17 May 2016

BizTalk Pipeline Component >> get ready to use directly from Visual Studio

BizTalk Pipeline Component >> get ready to use directly from Visual Studio

It's bit tedious task to build, gac and copy BizTalk Pipeline Component and again go back build and deploy BizTalk Pipeline..

Here is simple solution to it:

Visual Studio 2010 & BizTalk 2010: Write the below lines in
Project Property >> Build Events >> Post-build event command line (as show in picture below)

CALL "%VS100COMNTOOLS%vsvars32.bat"
gacutil.exe /i "$(TargetPath)"

copy "$(TargetPath)" "C:\Program Files (x86)\Microsoft BizTalk Server 2010\Pipeline Components" /y

Visual Studio 2013 & BizTalk 2013 R2: Write the below lines in
Project Property >> Build Events >> Post-build event command line (as show in picture below, Just Copy and Paste as is)

CALL "%VS120COMNTOOLS%vsvars32.bat"
gacutil.exe /i "$(TargetPath)"
copy "$(TargetPath)" "C:\Program Files (x86)\Microsoft BizTalk Server 2013 R2\Pipeline Components" /y

Hoping it helps to reduces your development hassle.. Happy coding. :) 
leave your feedbacks..