New Post: Include file in outdir, but not in Msi
I updated to use an absolute path but that didn't work either. I even tried using msbuild and pointed it to the CustomPostInstaller target to determine if it maybe it just wasn't running that target,...
View ArticleNew Post: Batching the installs
The MSI build just uses the WriteLinesToFile MSBuild task to write the bat file using File="@(InstallBatFile)". You could certainly use that or any other MSBuild task to modify or overwrite the bat...
View ArticleNew Post: Include file in outdir, but not in Msi
On BizTalk 2010 and newer you can use:<Target Name="CopyFilesToTargetDir" AfterTargets="Installer"> <CreateItem Include="..\..\MsiDeploy.bat"> <Output TaskParameter="Include"...
View ArticleNew Post: Include file in outdir, but not in Msi
This worked, once I got the correct path for the file I wanted to copy. Thanks.
View ArticleNew Post: BTDF PATH environment variable for BTSTask?
I recently installed openSSH on my machine which subsequently overwrote my entire PATH environment variable string. I've since put everything I could think of back in, including BTSTask.exe. I can run...
View ArticleNew Post: BTDF PATH environment variable for BTSTask?
Excerpt from my 64-bit BizTalk 2010 machine PATH: C:\Program Files (x86)\Microsoft BizTalk Server 2010\;C:\Program Files (x86)\Microsoft BizTalk Server 2010\Bins32;C:\Program Files (x86)\Microsoft...
View ArticleNew Post: Perform Deployment between BTDF Build & Automated Test Process
Hi Tom Greetings!! I have been using BTDF and its going fine. I have written automated test cases for BizTalk Application using BizUnit and have integrated in the TFS Build Definition. I have a test...
View ArticleNew Post: BTDF PATH environment variable for BTSTask?
That worked, you were right just needed to restart VS. Thanks!
View ArticleNew Post: Deploy error
Hi, I try to deploy a BizTalk solution, but I get the next error: Assembly "BP.BuildTemplate.Orchestrations, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba9a7374f79dc1ef" references the following...
View ArticleNew Post: Deploy error
Hi Tuan, Change <IncludeTransforms>false</IncludeTransforms> to true. Also, unless you need it for something custom that you are doing, you can remove...
View ArticleNew Post: Deploy error
Thanks for your reply Tom. I have updated like you suggest, but I get the next error:"C:\BizTalkDev\BP.BuildTemplate\BP.BuildTemplate.Deployment\BP.BuildTemplate.Deployment.btdfproj" (Deploy target)...
View ArticleNew Post: Deploy error
The error is "Could not load file or assembly 'C:\BizTalkDev\BP.BuildTemplate\BP.BuildTemplate.Orchestrations\bin\Release\BP.BuildTemplate.Orchestrations.dll' or one of its dependencies. The system...
View ArticleNew Post: Perform Deployment between BTDF Build & Automated Test Process
Hi, The default build template (BTDFDefault differs from DefaultTemplate in just one place) runs tests before "passing" the build and copying the output to the drop folder. If you wanted to deploy the...
View ArticleNew Post: Perform Deployment between BTDF Build & Automated Test Process
Hi Tom I have done the same thing as you've told. I have modified the BTDFDefault template by adding the deploy code after "Check-In Gated Changes for Check-In Shelveset Builds" box and before "If not...
View ArticleNew Post: Deploy error
Hi Tom, I have rerun BTDF project wizard, which creates a new file "Deployment.btdfproj" (see the attached XML). This works for me now. Thanks for your support.<?xml version="1.0"...
View ArticleNew Post: MakeDir/Copy not exist
I was trying to follow an example in the documentation that does the following, however elements like MakeDir and Copy no longer exist. Can anyone help or suggest an alternative?<Target...
View ArticleNew Post: MakeDir/Copy not exist
Hi Craig, Not sure what you mean that they no longer exist. They have been part of MSBuild since the very first...
View ArticleNew Post: MakeDir/Copy not exist
I'm getting the following error: The element 'Target' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has an invalid element 'MakeDir'.. Maybe I need a different version of MSBuild...
View ArticleNew Post: MakeDir/Copy not exist
That's Visual Studio IntelliSense, so just ignore it. It should work fine at runtime. Thanks, Tom
View ArticleNew Post: MakeDir/Copy not exist
Oh cool - thanks for helping out. A bit new to this framework.
View Article