New Post: Deploying AdditionalFiles to specific destination folders
So I have looked at the multitude of threads here regarding deploying and running custom scripts and additional files via BTDF but cannot get it to work appropriately. I have created an ItemGroup for...
View ArticleNew Post: Deploying AdditionalFiles to specific destination folders
Woops, just realized I had a typo. I changed the code to reflect the correct spelling:<Target Name="CustomDeployTarget"><Copy SourceFiles="$(EmailXSLT)" DestinationFolder="C:\Program Files...
View ArticleNew Post: Deploying AdditionalFiles to specific destination folders
For the Visual Studio deploy, the SourceFiles path is ....\Assets\AdditionalFiles\HL7V2XEDHighUtilEmailSummary.xsl and for the MSI deploy, the SourceFiles path is ..\HL7V2XEDHighUtilEmailSummary.xsl....
View ArticleNew Post: Deploying AdditionalFiles to specific destination folders
Still not copying the file. Everything else works as expected. I checked the deployment log and I see no mention of that xsl file or the path, or the customdeploytarget. Here is my entire...
View ArticleNew Post: Deploying AdditionalFiles to specific destination folders
There is a syntax issue in the Copy task. Try this:<CopySourceFiles="@(XslToCopy)"DestinationFolder="$(BtsDir)Pipeline Components"/>
View ArticleNew Post: Deploying AdditionalFiles to specific destination folders
Works perfectly, thanks for the help.
View ArticleNew Post: Missing BuildDebugMsi.bat and BuildReleaseMsi.bat
Going through the v5.5 tutorial and in step 3b it says "select all seven files (two .bat files, one .btdfproj, three .xml and one .rtf)." I've got the btdfproj, xml and rtf ... but NO bat files ? I've...
View ArticleNew Post: Missing BuildDebugMsi.bat and BuildReleaseMsi.bat
Sorry, documentation oversight. The bat files don't exist anymore. Thanks, Tom
View ArticleNew Post: Missing BuildDebugMsi.bat and BuildReleaseMsi.bat
tfabraham wrote: Sorry, documentation oversight. The bat files don't exist anymore. Thanks, Tom Thanks for the quick response Tom ... phew, I thought I was missing something :-) Cheers, SteveC.
View ArticleNew Post: SSO deploy seems to succeed, what causes the error "The mapping...
I've setup what seems to be a successful deployment of some values to SSO, but when I look them up I cannot find them. The out-of-the-box SSO Admin tool shows the application, but no values. The MMC...
View ArticleNew Post: SSO deploy seems to succeed, what causes the error "The mapping...
We have set this up like this: In the first ItemGroup:<IncludeSSO>True</IncludeSSO> This in it's own item group: <ItemGroup> <PropsFromEnvSettings...
View ArticleNew Post: SSO deploy seems to succeed, what causes the error "The mapping...
It might be due to a mismatch between the security group names specified in SsoAppUserGroup and SsoAppAdminGroup in the spreadsheet and the actual group names. It looks like you are using "BizTalk...
View ArticleNew Post: Missing BuildDebugMsi.bat and BuildReleaseMsi.bat
Out of all seven files, BTDF 5.5 is not creating the BuildDebugMSI.bat and BuildReleaseMSI.bat files. And as you said they don't exist anymore, I didn't care about it and deployed the BizTalk solution....
View ArticleNew Post: NUnit config file
Trying out the "Verify Deployment" feature with deploying an assembly with a set of NUnit tests, but get an error about a missing config file when I try and build the MSI. Created a new project for the...
View ArticleNew Post: SSO deploy seems to succeed, what causes the error "The mapping...
Thanks for your quick replies! @egrootenboer: I have exactly the same, and I can also view the SSO settings using the tool. @tfabraham: Wouldn't the deployment of SSO fail if the security group names...
View ArticleNew Post: SSO deploy seems to succeed, what causes the error "The mapping...
Also check if the accounts are in the correct groups for SSO access, might be a mismatch somewhere.
View ArticleNew Post: SSO deploy seems to succeed, what causes the error "The mapping...
On my local dev machine I'm local admin and I deploy from that account, so it seems that can hardly be the cause. Right? By the way, I tried to deploy with security groups named differently from what...
View ArticleNew Post: SSO deploy seems to succeed, what causes the error "The mapping...
Everything that you have said indicates that the Deployment Framework SSO deployment is successful and working as expected. It is normal to see the affiliate application in SSO Admin MMC with only one...
View ArticleNew Post: NUnit config file
Hi Steve, No, you must have a config file with the same filename as the DeploymentTest ItemGroup plus .config. Normally that happens automatically if you add a config file named app.config file to the...
View Article