<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>biztalkdeployment Work Item Rss Feed</title><link>http://www.codeplex.com/biztalkdeployment/WorkItem/List.aspx</link><description>biztalkdeployment Work Item Rss Description</description><item><title>Commented Feature: Feature: Add Knowledge of Inter-Application Dependency Stack [6130]</title><link>http://biztalkdeployment.codeplex.com/workitem/6130</link><description>1&amp;#41; If application B relies on A, B has to be undeployed to redeploy A &amp;#40;for example B uses schemas contained in A&amp;#41;.  It would really be cool if this &amp;#34;stack&amp;#34; could be defined in BTDF.  So if I&amp;#39;m fixing something in project A, B has to be undeployed, A has to be redeployed, then B has to be redployed.  This would be a feature only for the development environment.  &lt;br /&gt;&amp;#160;&lt;br /&gt;2&amp;#41; For the QA&amp;#47;production environment MSI install, a super-deploy of multiple MSI&amp;#39;s in the proper order would also be very nice.  Most applications that I&amp;#39;ve worked with are 5 to 25 inter-related applications with dependencies.  BTDF still is very helpful.  At one client, we had a spreadsheet of about 25 BT applications to deploy, and the proper order.  There was still a large chance the the admins would mess up the deploy if they were not careful.&lt;br /&gt;Comments: ** Comment from web user: fkuiper ** &lt;p&gt;Hi Sander,&lt;/p&gt;&lt;p&gt;I unfortunately can't share the entire script here (there is to much business information in it), but I can share some highlights :)&lt;/p&gt;&lt;p&gt;What I've done is I've written a MSBuild target file containing 4 targets:&lt;br&gt;- Install feature&lt;br&gt;- Deploy feature&lt;br&gt;- Uninstall feature&lt;br&gt;- Undeploy feature&lt;/p&gt;&lt;p&gt;(a feature in this context is one BTDF-msi by the way)&lt;/p&gt;&lt;p&gt;The install feature target looks something like this:&lt;br&gt;```&lt;br&gt;&amp;lt;Target Name=&amp;quot;InstallFeature&amp;quot;&amp;gt;&lt;br&gt;	&amp;lt;Message Text=&amp;quot;Installing '$(FeatureName)'...&amp;quot; /&amp;gt;&lt;br&gt;	&amp;lt;!-- Install and copy MSI to install dir --&amp;gt;&lt;br&gt;	&amp;lt;Exec Command=&amp;quot;msiexec /i &amp;amp;quot;$(FeatureName)-1.0.0.msi&amp;amp;quot; /passive&amp;quot; WorkingDirectory=&amp;quot;..\Packages&amp;quot; /&amp;gt;&lt;br&gt;	&amp;lt;CreateItem Include=&amp;quot;..\Packages\$(FeatureName)-1.0.0.msi&amp;quot;&amp;gt;&lt;br&gt;		&amp;lt;Output ItemName=&amp;quot;MsiToCopy&amp;quot; TaskParameter=&amp;quot;Include&amp;quot; /&amp;gt;&lt;br&gt;	&amp;lt;/CreateItem&amp;gt;&lt;br&gt;	&amp;lt;Copy SourceFiles=&amp;quot;@(MsiToCopy)&amp;quot; DestinationFiles=&amp;quot;@(MsiToCopy-&amp;amp;gt;'c:\Program Files (x86)\$(FeatureName) for BizTalk\%(FileName)%(Extension)')&amp;quot; /&amp;gt;&lt;br&gt;&amp;lt;/Target&amp;gt;&lt;br&gt;```&lt;/p&gt;&lt;p&gt;And the Deploy feature something like this:&lt;/p&gt;&lt;p&gt;```&lt;br&gt;&amp;lt;Target Name=&amp;quot;DeployFeature&amp;quot;&amp;gt;&lt;br&gt;	&amp;lt;!-- Start deployment --&amp;gt;&lt;br&gt;	&amp;lt;Exec&lt;br&gt;		Command=&amp;quot;.\Framework\DeployTools\EnvironmentSettingsExporter.exe EnvironmentSettings\SettingsFileGenerator.xml EnvironmentSettings&amp;quot;&lt;br&gt;		WorkingDirectory=&amp;quot;c:\Program Files (x86)\$(FeatureName) for BizTalk\1.0\Deployment\&amp;quot;&lt;br&gt;		Condition=&amp;quot;Exists('c:\Program Files (x86)\$(FeatureName) for BizTalk\1.0\Deployment\EnvironmentSettings\SettingsFileGenerator.xml')&amp;quot;&lt;br&gt;		/&amp;gt;&lt;br&gt;	&amp;lt;MsBuild&lt;br&gt;		Projects=&amp;quot;c:\Program Files (x86)\$(FeatureName) for BizTalk\1.0\Deployment\$(FeatureName).Deployment.btdfproj&amp;quot;&lt;br&gt;		Properties=&amp;quot;DeployBizTalkMgmtDB=$(BT_DEPLOY_MGMT_DB);Configuration=Server;SkipUndeploy=true;ENV_SETTINGS=c:\Program Files (x86)\$(FeatureName) for BizTalk\1.0\Deployment\$(ENV_SETTINGS_MASK)&amp;quot;&lt;br&gt;		/&amp;gt;&lt;br&gt;&amp;lt;/Target&amp;gt;&lt;br&gt;```&lt;/p&gt;&lt;p&gt;Uninstall and undeploy are very simular in setup.&lt;/p&gt;&lt;p&gt;Ofcourse these target in itself will not do anything. There are more scripts. One is the 'main'-project file which will import all 'features' and contain the main targets 'Deploy' and 'Undeploy'&lt;/p&gt;&lt;p&gt;```&lt;br&gt;&amp;lt;Import Project=&amp;quot;Deployment.Targets&amp;quot; /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;Import Project=&amp;quot;Feature.ApplicationA.config&amp;quot; /&amp;gt;&lt;br&gt;&amp;lt;Import Project=&amp;quot;Feature.ApplicationB.config&amp;quot; /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;!-- Deploy alle packages --&amp;gt;&lt;br&gt;&amp;lt;Target Name=&amp;quot;Deploy&amp;quot;&amp;gt;&lt;br&gt;    &amp;lt;CallTarget Targets=&amp;quot;@(BizTalkApplication-&amp;amp;gt;'%(Identity)_Add')&amp;quot; /&amp;gt;&lt;br&gt;&amp;lt;/Target&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;!-- Undeploy alle packages --&amp;gt;&lt;br&gt;&amp;lt;Target Name=&amp;quot;Undeploy&amp;quot;&amp;gt;&lt;br&gt;    &amp;lt;CallTarget Targets=&amp;quot;@(BizTalkApplication-&amp;amp;gt;'%(Identity)_Remove')&amp;quot; /&amp;gt;&lt;br&gt;&amp;lt;/Target&amp;gt;&lt;br&gt;```&lt;/p&gt;&lt;p&gt;Last but not least there are the &amp;quot;feature config's&amp;quot; and that's where most of the magic happens:&lt;/p&gt;&lt;p&gt;```&lt;br&gt;&amp;lt;ItemGroup&amp;gt;&lt;br&gt;   &amp;lt;BizTalkApplication Include=&amp;quot;ApplicationA&amp;quot;/&amp;gt;&lt;br&gt;&amp;lt;/ItemGroup&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;Target Name=&amp;quot;ApplicationA_Add&amp;quot; DependsOnTargets=&amp;quot;&amp;quot;&amp;gt;&lt;br&gt;	&amp;lt;MsBuild &lt;br&gt;		Projects=&amp;quot;$(MSBuildProjectFile)&amp;quot;&lt;br&gt;		Targets=&amp;quot;InstallFeature&amp;quot;&lt;br&gt;		Properties=&amp;quot;FeatureName=ApplicationA&amp;quot;&lt;br&gt;		/&amp;gt;&lt;br&gt;	&amp;lt;MsBuild 	&lt;br&gt;		Projects=&amp;quot;$(MSBuildProjectFile)&amp;quot;&lt;br&gt;		Targets=&amp;quot;DeployFeature&amp;quot;&lt;br&gt;		Properties=&amp;quot;FeatureName=ApplicationA&amp;quot;&lt;br&gt;		/&amp;gt;&lt;br&gt;&amp;lt;/Target&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;Target Name=&amp;quot;ApplicationA_Remove&amp;quot; DependsOnTargets=&amp;quot;&amp;quot;&amp;gt;&lt;br&gt;	&amp;lt;MsBuild 	&lt;br&gt;		Projects=&amp;quot;$(MSBuildProjectFile)&amp;quot;&lt;br&gt;		Targets=&amp;quot;UndeployFeature&amp;quot;&lt;br&gt;		Properties=&amp;quot;FeatureName=ApplicationA&amp;quot;&lt;br&gt;		/&amp;gt;&lt;br&gt;	&amp;lt;MsBuild 	&lt;br&gt;		Projects=&amp;quot;$(MSBuildProjectFile)&amp;quot;&lt;br&gt;		Targets=&amp;quot;UninstallFeature&amp;quot;&lt;br&gt;		Properties=&amp;quot;FeatureName=ApplicationA&amp;quot;&lt;br&gt;		/&amp;gt;&lt;br&gt;&amp;lt;/Target&amp;gt;&lt;br&gt;```&lt;/p&gt;&lt;p&gt;The config for feature B contains exactly the same as the above, but ofcourse you have to replace ApplicationA with ApplicationB. When you start the main msbuild file and call target &amp;quot;Deploy&amp;quot; all the features are installed and deployed and removed in sequence. Now for the magic to happen you can use the &amp;quot;DependsOn&amp;quot; attribute for the &amp;quot;ApplicationA_Add&amp;quot; target like this:&lt;/p&gt;&lt;p&gt;```&lt;br&gt;&amp;lt;Target Name=&amp;quot;ApplicationA_Add&amp;quot; DependsOnTargets=&amp;quot;ApplicationB_Add&amp;quot;&amp;gt;&lt;br&gt;	...&lt;br&gt;&amp;lt;/Target&amp;gt;&lt;br&gt;```&lt;/p&gt;&lt;p&gt;Ofcourse you have to add the same dependancy to feature B when removing it, like this:&lt;/p&gt;&lt;p&gt;```&lt;br&gt;&amp;lt;Target Name=&amp;quot;ApplicationB_Remove&amp;quot; DependsOnTargets=&amp;quot;ApplicationA_Remove&amp;quot;&amp;gt;&lt;br&gt;	...&lt;br&gt;&amp;lt;/Target&amp;gt;&lt;br&gt;```&lt;/p&gt;&lt;p&gt;With this setting ApplicationB will allway be installed and deployed BEFORE ApplicationA and ApplicationA will allways be remove BEFORE ApplicationB. &lt;/p&gt;&lt;p&gt;And that's how I've solved the dependancy tree problem for our 27 (or so) individual BTDF-msi's.&lt;/p&gt;&lt;p&gt;Hope this will be helpfull to you.&lt;/p&gt;&lt;p&gt;Kind Regards,&lt;br&gt;Ferdinand.&lt;/p&gt;</description><author>fkuiper</author><pubDate>Fri, 17 May 2013 11:03:32 GMT</pubDate><guid isPermaLink="false">Commented Feature: Feature: Add Knowledge of Inter-Application Dependency Stack [6130] 20130517110332A</guid></item><item><title>Created Unassigned: BounceSelectedBizTalkHosts - failes for clustered hosts [10120]</title><link>http://biztalkdeployment.codeplex.com/workitem/10120</link><description>When restarting host instances for a clustered host the job will fail when restarting the inactive host instance. See log below&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#34;c&amp;#58;&amp;#92;Program Files &amp;#40;x86&amp;#41;&amp;#92;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42; for BizTalk&amp;#92;1.0&amp;#92;Deployment&amp;#92;Framework&amp;#92;DeployTools&amp;#92;cscript64.exe&amp;#34; &amp;#47;nologo &amp;#34;c&amp;#58;&amp;#92;Program Files &amp;#40;x86&amp;#41;&amp;#92;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42;&amp;#42; for BizTalk&amp;#92;1.0&amp;#92;Deployment&amp;#92;Framework&amp;#92;DeployTools&amp;#92;BounceBizTalkHost.vbs&amp;#34; &amp;#34;MsDynamicsMSMQReceive&amp;#34;&lt;br /&gt;Stopping and starting&amp;#58; MsDynamicsMSMQReceive on BIZ1&lt;br /&gt;Stopping and starting&amp;#58; MsDynamicsMSMQReceive on BIZ1&lt;br /&gt;Stopping and starting&amp;#58; MsDynamicsMSMQReceive on BIZ2&lt;br /&gt;SWbemObjectEx 80C02831&amp;#58;&lt;br /&gt;Retrying&amp;#58; 1&lt;br /&gt;SWbemObjectEx 80C02831&amp;#58;&lt;br /&gt;Retrying&amp;#58; 2&lt;br /&gt;SWbemObjectEx 80C02831&amp;#58;&lt;br /&gt;Retrying&amp;#58; 3&lt;br /&gt;SWbemObjectEx 80C02831&amp;#58;&lt;br /&gt;Retrying&amp;#58; 4&lt;br /&gt;</description><author>fkuiper</author><pubDate>Fri, 17 May 2013 09:56:34 GMT</pubDate><guid isPermaLink="false">Created Unassigned: BounceSelectedBizTalkHosts - failes for clustered hosts [10120] 20130517095634A</guid></item><item><title>Commented Issue: BTS Admin - Modify resources after BTDF deploy - Dependency not found [10103]</title><link>http://biztalkdeployment.codeplex.com/workitem/10103</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I&amp;#39;m posting this to verify that the behavior is by design&amp;#59;&lt;br /&gt;&lt;br /&gt;Let&amp;#39;s say Orchestration &amp;#39;OrderBroker&amp;#39; is using component &amp;#39;HelperLibrary&amp;#39;. The BTDF project deploys these artefacts based on 2 defined itemgroups&amp;#58;&lt;br /&gt;- Orchestrations&lt;br /&gt;- Components&lt;br /&gt;&lt;br /&gt;After deployment, the Components will only be installed in the GAC. When you click on &amp;#39;Modify Resource&amp;#39; in the BizTalk Administration Console, on the Orchestration &amp;#39;OrderBroker&amp;#39;, you will see a dependency missing error.&lt;br /&gt;&lt;br /&gt;I know that at runtime, the GAC due to the .Net framework &amp;#47; probing and stuff, and that the Orchestration works fine, however i would like to ensure that i&amp;#39;m not missing anything.&lt;br /&gt;&lt;br /&gt;Can this be confirmed&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: fkuiper ** &lt;p&gt;Hi Thomas,&lt;/p&gt;&lt;p&gt;Maybe this could be as simple as adding an extra property to the items in itemgroup &amp;quot;Components&amp;quot;. If this property is set (let's call is AddAsResource) the assembly is added to the BizTalk application. If this property is not set (or present) this step is skipped and the assembly will only be added to the GAC. &lt;/p&gt;&lt;p&gt;Regards,&lt;br&gt;Ferdinand. &lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><author>fkuiper</author><pubDate>Mon, 13 May 2013 16:54:16 GMT</pubDate><guid isPermaLink="false">Commented Issue: BTS Admin - Modify resources after BTDF deploy - Dependency not found [10103] 20130513045416P</guid></item><item><title>Commented Issue: BTS Admin - Modify resources after BTDF deploy - Dependency not found [10103]</title><link>http://biztalkdeployment.codeplex.com/workitem/10103</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I&amp;#39;m posting this to verify that the behavior is by design&amp;#59;&lt;br /&gt;&lt;br /&gt;Let&amp;#39;s say Orchestration &amp;#39;OrderBroker&amp;#39; is using component &amp;#39;HelperLibrary&amp;#39;. The BTDF project deploys these artefacts based on 2 defined itemgroups&amp;#58;&lt;br /&gt;- Orchestrations&lt;br /&gt;- Components&lt;br /&gt;&lt;br /&gt;After deployment, the Components will only be installed in the GAC. When you click on &amp;#39;Modify Resource&amp;#39; in the BizTalk Administration Console, on the Orchestration &amp;#39;OrderBroker&amp;#39;, you will see a dependency missing error.&lt;br /&gt;&lt;br /&gt;I know that at runtime, the GAC due to the .Net framework &amp;#47; probing and stuff, and that the Orchestration works fine, however i would like to ensure that i&amp;#39;m not missing anything.&lt;br /&gt;&lt;br /&gt;Can this be confirmed&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: tfabraham ** &lt;p&gt;By design.  The Deployment Framework does not add .NET assemblies as resources in the application.  One problem with adding assemblies as resources is that a particular assembly must be unique in the BizTalk group, so take our SSOSettingsFileReader.dll as an example.  It may be used by nearly every BizTalk app, but it can be added as a resource to only one app... so what to do?  I don't have a good answer and there is no functional requirement to add as a resource except to satisfy the dependency analysis tool in 2013.  Open to suggestions...&lt;/p&gt;</description><author>tfabraham</author><pubDate>Mon, 13 May 2013 06:10:40 GMT</pubDate><guid isPermaLink="false">Commented Issue: BTS Admin - Modify resources after BTDF deploy - Dependency not found [10103] 20130513061040A</guid></item><item><title>Closed Feature: Feature: Disable the BizTalk App listing in Start Menu--&gt; Program in a Server using BTDF 5.0 [10096]</title><link>http://biztalkdeployment.codeplex.com/workitem/10096</link><description>Hello &lt;br /&gt;&lt;br /&gt;We are using BTDF 5.0 version to deploy the BizTalk App.&lt;br /&gt;&lt;br /&gt;After Deployment the BizTalk App&amp;#40;MSI&amp;#41; which is created using BTDF will be listing in Start Menu--&amp;#62; Programs&lt;br /&gt;We need disable the Biztalk app listing the Start Menu--&amp;#62; Programs of the Server&amp;#47; Machine&lt;br /&gt;Please let us know how can we avoid this &amp;#63;&lt;br /&gt;&lt;br /&gt;Softwares Used&lt;br /&gt;Windows 2008 R2&lt;br /&gt;BTDF 5.0&lt;br /&gt;VS 2010&lt;br /&gt;BTS 2010&lt;br /&gt;&lt;br /&gt;Regards&lt;br /&gt;Srikanth.T.V&lt;br /&gt;&lt;br /&gt;---------------------&lt;br /&gt;&lt;br /&gt;Add CreateStartMenuShortcuts property, default to True&lt;br /&gt;Comments: Resolved with changeset 72831: Add option to disable all Start menu shortcuts on server install (#10096)</description><author>tfabraham</author><pubDate>Fri, 10 May 2013 21:18:46 GMT</pubDate><guid isPermaLink="false">Closed Feature: Feature: Disable the BizTalk App listing in Start Menu--&gt; Program in a Server using BTDF 5.0 [10096] 20130510091846P</guid></item><item><title>Edited Feature: Feature: Disable the BizTalk App listing in Start Menu--&gt; Program in a Server using BTDF 5.0 [10096]</title><link>http://biztalkdeployment.codeplex.com/workitem/10096</link><description>Hello &lt;br /&gt;&lt;br /&gt;We are using BTDF 5.0 version to deploy the BizTalk App.&lt;br /&gt;&lt;br /&gt;After Deployment the BizTalk App&amp;#40;MSI&amp;#41; which is created using BTDF will be listing in Start Menu--&amp;#62; Programs&lt;br /&gt;We need disable the Biztalk app listing the Start Menu--&amp;#62; Programs of the Server&amp;#47; Machine&lt;br /&gt;Please let us know how can we avoid this &amp;#63;&lt;br /&gt;&lt;br /&gt;Softwares Used&lt;br /&gt;Windows 2008 R2&lt;br /&gt;BTDF 5.0&lt;br /&gt;VS 2010&lt;br /&gt;BTS 2010&lt;br /&gt;&lt;br /&gt;Regards&lt;br /&gt;Srikanth.T.V&lt;br /&gt;&lt;br /&gt;---------------------&lt;br /&gt;&lt;br /&gt;Add CreateStartMenuShortcuts property, default to True&lt;br /&gt;</description><author>tfabraham</author><pubDate>Fri, 10 May 2013 20:30:26 GMT</pubDate><guid isPermaLink="false">Edited Feature: Feature: Disable the BizTalk App listing in Start Menu--&gt; Program in a Server using BTDF 5.0 [10096] 20130510083026P</guid></item><item><title>Created Issue: BTS Admin - Modify resources after BTDF deploy - Dependency not found [10103]</title><link>http://biztalkdeployment.codeplex.com/workitem/10103</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I&amp;#39;m posting this to verify that the behavior is by design&amp;#59;&lt;br /&gt;&lt;br /&gt;Let&amp;#39;s say Orchestration &amp;#39;OrderBroker&amp;#39; is using component &amp;#39;HelperLibrary&amp;#39;. The BTDF project deploys these arefacts based on 2 defined itemgroups&amp;#58;&lt;br /&gt;- Orchestrations&lt;br /&gt;- Components&lt;br /&gt;&lt;br /&gt;After deployment, the Components will only be installed in the GAC. When you click on &amp;#39;Modify Resource&amp;#39; in the BizTalk Administration Console, on the Orchestration &amp;#39;OrderBroker&amp;#39;, you will see a dependency missing error.&lt;br /&gt;&lt;br /&gt;I know that at runtime, the GAC due to the .Net framework &amp;#47; probing and stuff, and that the Orchestration works fine, however i would like to ensure that i&amp;#39;m not missing anything.&lt;br /&gt;&lt;br /&gt;Can this be confirmed&amp;#63;&lt;br /&gt;</description><author>sandernefs</author><pubDate>Fri, 10 May 2013 09:58:45 GMT</pubDate><guid isPermaLink="false">Created Issue: BTS Admin - Modify resources after BTDF deploy - Dependency not found [10103] 20130510095845A</guid></item><item><title>Commented Feature: Feature: Add Knowledge of Inter-Application Dependency Stack [6130]</title><link>http://biztalkdeployment.codeplex.com/workitem/6130</link><description>1&amp;#41; If application B relies on A, B has to be undeployed to redeploy A &amp;#40;for example B uses schemas contained in A&amp;#41;.  It would really be cool if this &amp;#34;stack&amp;#34; could be defined in BTDF.  So if I&amp;#39;m fixing something in project A, B has to be undeployed, A has to be redeployed, then B has to be redployed.  This would be a feature only for the development environment.  &lt;br /&gt;&amp;#160;&lt;br /&gt;2&amp;#41; For the QA&amp;#47;production environment MSI install, a super-deploy of multiple MSI&amp;#39;s in the proper order would also be very nice.  Most applications that I&amp;#39;ve worked with are 5 to 25 inter-related applications with dependencies.  BTDF still is very helpful.  At one client, we had a spreadsheet of about 25 BT applications to deploy, and the proper order.  There was still a large chance the the admins would mess up the deploy if they were not careful.&lt;br /&gt;Comments: ** Comment from web user: sandernefs ** &lt;p&gt;Hi Ferdinand,&lt;/p&gt;&lt;p&gt;I believe you mean that you use MSBuild to figure out the dependencies and that you only need some sort of 'config' file, which would make life a lot easier. &lt;/p&gt;&lt;p&gt;Are you willing to share this script here as well?&lt;/p&gt;&lt;p&gt;Regards,&lt;/p&gt;&lt;p&gt;Sander&lt;/p&gt;</description><author>sandernefs</author><pubDate>Fri, 10 May 2013 09:11:03 GMT</pubDate><guid isPermaLink="false">Commented Feature: Feature: Add Knowledge of Inter-Application Dependency Stack [6130] 20130510091103A</guid></item><item><title>Closed Feature: Feature: Add the UpdateSSO / UpdateBindings as a menu item [10095]</title><link>http://biztalkdeployment.codeplex.com/workitem/10095</link><description>When making changes to the ExcelSheet &amp;#47; Bindings, you might not want to redeploy everything. Right now, updating the SSO settings &amp;#47; Bindings based on the new &amp;#39;templates&amp;#39; requires some scripting.&lt;br /&gt;&lt;br /&gt;It would be great if the actions available in VS.Net would be available after deployment. This would make it easier to update parts of an deployed application which would be overkill to undeploy fully.&lt;br /&gt;Comments: Resolved with changeset 72823: Add Start menu shortcuts for Quick Deploy, Preprocess and Import Bindings, Terminate Service Instances; remember selected settings file from deploy for use in undeploy (#3858, 7635, 10095)</description><author>tfabraham</author><pubDate>Fri, 10 May 2013 06:08:20 GMT</pubDate><guid isPermaLink="false">Closed Feature: Feature: Add the UpdateSSO / UpdateBindings as a menu item [10095] 20130510060820A</guid></item><item><title>Closed Feature: Feature: On server deploy, persist settings file path at deploy time and reload at undeploy [7635]</title><link>http://biztalkdeployment.codeplex.com/workitem/7635</link><description>Currently the settings file path chosen during a server deploy is not saved, so when the solution is undeployed, the original settings file path is unknown.  In some situations it would be helpful to use the same settings file again during undeployment.&lt;br /&gt;&amp;#160;&lt;br /&gt;The deploy can save the value of &amp;#36;&amp;#40;SettingsFilePath&amp;#41; to the registry, and reload the value during undeploy.&lt;br /&gt;Comments: Resolved with changeset 72823: Add Start menu shortcuts for Quick Deploy, Preprocess and Import Bindings, Terminate Service Instances; remember selected settings file from deploy for use in undeploy (#3858, 7635, 10095)</description><author>tfabraham</author><pubDate>Fri, 10 May 2013 06:08:19 GMT</pubDate><guid isPermaLink="false">Closed Feature: Feature: On server deploy, persist settings file path at deploy time and reload at undeploy [7635] 20130510060819A</guid></item><item><title>Closed Feature: Feature:  Add start menu item on BizTalk App Install for Quick Deploy task [3858]</title><link>http://biztalkdeployment.codeplex.com/workitem/3858</link><description>Would it be possible to add a Quick Deploy option to the start menu&amp;#63; This&amp;#39;d make patching assemblies a lot faster and easier.&lt;br /&gt;Comments: Resolved with changeset 72823: Add Start menu shortcuts for Quick Deploy, Preprocess and Import Bindings, Terminate Service Instances; remember selected settings file from deploy for use in undeploy (#3858, 7635, 10095)</description><author>tfabraham</author><pubDate>Fri, 10 May 2013 06:08:18 GMT</pubDate><guid isPermaLink="false">Closed Feature: Feature:  Add start menu item on BizTalk App Install for Quick Deploy task [3858] 20130510060818A</guid></item><item><title>Commented Feature: Feature: Add the UpdateSSO / UpdateBindings as a menu item [10095]</title><link>http://biztalkdeployment.codeplex.com/workitem/10095</link><description>When making changes to the ExcelSheet &amp;#47; Bindings, you might not want to redeploy everything. Right now, updating the SSO settings &amp;#47; Bindings based on the new &amp;#39;templates&amp;#39; requires some scripting.&lt;br /&gt;&lt;br /&gt;It would be great if the actions available in VS.Net would be available after deployment. This would make it easier to update parts of an deployed application which would be overkill to undeploy fully.&lt;br /&gt;Comments: ** Comment from web user: tfabraham ** &lt;p&gt;Also adding Terminate Service Instances&lt;/p&gt;</description><author>tfabraham</author><pubDate>Fri, 10 May 2013 06:01:41 GMT</pubDate><guid isPermaLink="false">Commented Feature: Feature: Add the UpdateSSO / UpdateBindings as a menu item [10095] 20130510060141A</guid></item><item><title>Closed Issue: Issue: Update sample apps [10102]</title><link>http://biztalkdeployment.codeplex.com/workitem/10102</link><description>&amp;#42; BasicMasterBindings&amp;#58; Add PropsFromEnvSettings&lt;br /&gt;&amp;#42; Advanced&amp;#58; Move input folder to standard path for other samples&lt;br /&gt;Comments: Resolved with changeset 72822: Minor updates to Advanced and BasicMasterBindings sample apps (#10102)</description><author>tfabraham</author><pubDate>Fri, 10 May 2013 05:58:09 GMT</pubDate><guid isPermaLink="false">Closed Issue: Issue: Update sample apps [10102] 20130510055809A</guid></item><item><title>Edited Issue: Issue: Update sample apps [10102]</title><link>http://biztalkdeployment.codeplex.com/workitem/10102</link><description>&amp;#42; BasicMasterBindings&amp;#58; Add PropsFromEnvSettings&lt;br /&gt;&amp;#42; Advanced&amp;#58; Move input folder to standard path for other samples&lt;br /&gt;</description><author>tfabraham</author><pubDate>Fri, 10 May 2013 05:56:21 GMT</pubDate><guid isPermaLink="false">Edited Issue: Issue: Update sample apps [10102] 20130510055621A</guid></item><item><title>Created Issue: Issue: Update sample apps [10102]</title><link>http://biztalkdeployment.codeplex.com/workitem/10102</link><description>&amp;#42; BasicMasterBindings&amp;#58; Add PropsFromEnvSettings&lt;br /&gt;&amp;#42; Advanced&amp;#58; Move input folder to standard path for other samples&lt;br /&gt;</description><author>tfabraham</author><pubDate>Fri, 10 May 2013 05:56:21 GMT</pubDate><guid isPermaLink="false">Created Issue: Issue: Update sample apps [10102] 20130510055621A</guid></item><item><title>Edited Feature: Feature:  Add start menu item on BizTalk App Install for Quick Deploy task [3858]</title><link>http://biztalkdeployment.codeplex.com/workitem/3858</link><description>Would it be possible to add a Quick Deploy option to the start menu&amp;#63; This&amp;#39;d make patching assemblies a lot faster and easier.&lt;br /&gt;</description><author>tfabraham</author><pubDate>Fri, 10 May 2013 05:52:06 GMT</pubDate><guid isPermaLink="false">Edited Feature: Feature:  Add start menu item on BizTalk App Install for Quick Deploy task [3858] 20130510055206A</guid></item><item><title>Edited Feature: Feature: On server deploy, persist settings file path at deploy time and reload at undeploy [7635]</title><link>http://biztalkdeployment.codeplex.com/workitem/7635</link><description>Currently the settings file path chosen during a server deploy is not saved, so when the solution is undeployed, the original settings file path is unknown.  In some situations it would be helpful to use the same settings file again during undeployment.&lt;br /&gt;&amp;#160;&lt;br /&gt;The deploy can save the value of &amp;#36;&amp;#40;SettingsFilePath&amp;#41; to the registry, and reload the value during undeploy.&lt;br /&gt;</description><author>tfabraham</author><pubDate>Thu, 09 May 2013 23:35:55 GMT</pubDate><guid isPermaLink="false">Edited Feature: Feature: On server deploy, persist settings file path at deploy time and reload at undeploy [7635] 20130509113555P</guid></item><item><title>Closed Feature: Feature: When server MSI is installed, create registry key to hold install path and version [7178]</title><link>http://biztalkdeployment.codeplex.com/workitem/7178</link><description>When server MSI is installed, create registry key to hold install path and version&lt;br /&gt;Comments: Resolved with changeset 72819: Update server deploy MSI to create InstallPath registry key; fix MSBuild ToolsVer property (#7178)</description><author>tfabraham</author><pubDate>Thu, 09 May 2013 21:29:41 GMT</pubDate><guid isPermaLink="false">Closed Feature: Feature: When server MSI is installed, create registry key to hold install path and version [7178] 20130509092941P</guid></item><item><title>Edited Feature: Feature: When server MSI is installed, create registry key to hold install path and version [7178]</title><link>http://biztalkdeployment.codeplex.com/workitem/7178</link><description>When server MSI is installed, create registry key to hold install path and version&lt;br /&gt;</description><author>tfabraham</author><pubDate>Thu, 09 May 2013 21:23:52 GMT</pubDate><guid isPermaLink="false">Edited Feature: Feature: When server MSI is installed, create registry key to hold install path and version [7178] 20130509092352P</guid></item><item><title>Edited Issue: Add the UpdateSSO / UpdateBindings as a menu item [10095]</title><link>http://biztalkdeployment.codeplex.com/workitem/10095</link><description>When making changes to the ExcelSheet &amp;#47; Bindings, you might not want to redeploy everything. Right now, updating the SSO settings &amp;#47; Bindings based on the new &amp;#39;templates&amp;#39; requires some scripting.&lt;br /&gt;&lt;br /&gt;It would be great if the actions available in VS.Net would be available after deployment. This would make it easier to update parts of an deployed application which would be overkill to undeploy fully.&lt;br /&gt;</description><author>tfabraham</author><pubDate>Thu, 09 May 2013 21:10:24 GMT</pubDate><guid isPermaLink="false">Edited Issue: Add the UpdateSSO / UpdateBindings as a menu item [10095] 20130509091024P</guid></item></channel></rss>