Useful Tips for BizTalk 2006 to BizTalk 2009 Porting
Posted
by Arvind Chaudhary
on Geeks with Blogs
See other posts from Geeks with Blogs
or by Arvind Chaudhary
Published on Tue, 23 Mar 2010 08:42:50 GMT
Indexed on
2010/03/23
9:23 UTC
Read the original article
Hit count: 757
Filed under:
BizTalk projects require some manual intervention in order to upgrade them. Execute the following steps to port a BizTalk solution / project:
- Open the project’s solution file (.sln) using a text editor – NotePad++ is recommended.
- Remove all the contents (in red below) between (not including) the following elements:
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5C48CB6B-AE6F-4288-A8EE-46E352BB730C}.Debug|.NET.ActiveCfg = Debug|Any CPU
{5C48CB6B-AE6F-4288-A8EE-46E352BB730C}.Debug|.NET.Build.0 = Debug|Any CPU
{5C48CB6B-AE6F-4288-A8EE-46E352BB730C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5C48CB6B-AE6F-4288-A8EE-46E352BB730C}.Debug|Any CPU.Build.0 = Debug|Any CPU
…
EndGlobalSection
You should see the following once you have removed the contents:
GlobalSection(ProjectConfigurationPlatforms) = postSolution EndGlobalSection
Note: There should not be any
- For each BizTalk project (.btproj) in the solution (.sln) find and replace the following in the .btproj file:
- ‘Name = “Debug”’ with ‘Name = “Development”’
- ‘Name = “Release”’ with ‘Name = “Deployment”’
- “bin\Debug” with “bin\Development”
- “bin\Release” with “bin\Deployment”
Save the file.
© Geeks with Blogs or respective owner