New Post: Conditionally Executing 'Quick Deploy' from Visual Studio 2010
Hi Everyone, I have a Custom Target defined in my btdfproj (as below) to remove existing BizTalk applications on deploy:<ItemGroup><AppsToRemove Include="BizTalk_Application_ToRemove"...
View ArticleNew Post: Conditionally Executing 'Quick Deploy' from Visual Studio 2010
It might be good enough to use "'$(Configuration)' != 'Server' and '$(DeployBizTalkMgmtDB)' == 'false' and '@(AppsToRemove)' != ''". Thanks, Tom
View ArticleNew Post: Conditionally Executing 'Quick Deploy' from Visual Studio 2010
Hi Tom, I used the above condition but still the CustomPostInitialize Target got executed and removed the other BizTalk Applications (which wasn't intended). Below is the sample output. Can you please...
View ArticleNew Post: Install BTDF 5.5 MSI built using Visual Studio 2010 on BizTalk...
Hi, I have successfully deployed and automated BTDF 5.5 using Visual Studio 2010-SQLserver 2008r2 on Windows server 2008r2. Can I use same Visual Studio solution file in Visual Studio 2010 to Built MSI...
View ArticleNew Post: Install BTDF 5.5 MSI built using Visual Studio 2010 on BizTalk...
Hi Neeraj, The Deployment Framework for BizTalk does not yet support BizTalk 2013 R2. Please see this discussion thread. Thanks, Tom
View ArticleNew Post: Conditionally Executing 'Quick Deploy' from Visual Studio 2010
Have you tried simply using a target named CustomDeployTarget with no Condition instead of CustomPostInitialize? It seems like a more appropriate place for this logic. Keep in mind that if you just use...
View ArticleNew Post: Deploying VDirs on multiple servers
Working on our first BTDF deployment, got everything working in test, including the vdir creation ... but that was a single server environment However in production, we've got three servers ...run the...
View ArticleNew Post: Deploying VDirs on multiple servers
Hi Steve, By default, the DeployVDirs target runs whether or not anything is being deployed to the BizTalk management database -- in other words, it runs on all servers. Thanks, Tom
View ArticleNew Post: Microsoft BizTalk Server 2013 R2
Tom, Please add OR BTS_PRODUCTNAME = "Microsoft BizTalk Server 2013 R2" to the SetMSBUILDPATH2010 and SetMSBUILDTOOLSVER2010 SetProperty actions in GenericBizTalkMSI.wxs. Without the R2 condition, the...
View ArticleNew Post: Microsoft BizTalk Server 2013 R2
Thanks. There is no gacutil.exe version selection in v6.0. Tom
View ArticleNew Post: Deploying VDirs on multiple servers
Hi there Tom Being a thickie here I can see the DeployVdirs target in BizTalkDeploymentFramework.targets but I can't work out how it's triggered if I don't select the "Start deploying to BizTalk when I...
View ArticleNew Post: Assemblies not added to GAC
I've done a deploy using the MSI on three servers First two just ran the MSI, third one the full install + deploy But found that in the first two servers, whilst the file were copied to Programs Files,...
View ArticleNew Post: Deploying VDirs on multiple servers
If you have IncludeVirtualDirectories set to True, then DeployVdirs runs on every deployment. On a server after installing the MSI, you can either leave the checkbox checked at the end of the Windows...
View ArticleNew Post: Assemblies not added to GAC
Same as VDirs thread: You must install the MSI and run the deployment process on every server, not just the last one.
View ArticleNew Post: Microsoft BizTalk Server 2013 R2
For projects with IncludeSSO=true, I'm getting System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.BizTalk.Interop.SSOClient, Version=5.0.1.0. According to BTDF 5.1 Beta this...
View ArticleNew Post: Microsoft BizTalk Server 2013 R2
I tried ~\Dev\V6_0\Framework\DeployTools\SSOSettingsFileImportBTS2013R2.exe from the latest source, but it looks like it is referencing 'Microsoft.BizTalk.Interop.SSOClient v7.0.2300.0. My servers have...
View ArticleNew Post: Microsoft BizTalk Server 2013 R2
Recompiling from source worked (after updating the SSOClient reference, of course). Looking forward to v6.
View ArticleNew Post: Deploying VDirs on multiple servers
Tom,"Going back to your first message... when you say "run the MSI on the first two without deployment" what do you mean? You must install the MSI and run the deployment process on every server. Docs...
View ArticleNew Post: Deploying VDirs on multiple servers
You got it. No problem Steve. Now enjoy the automation. :-) Tom
View Article