Skip to content

Instantly share code, notes, and snippets.

@mattcorr
Created October 11, 2015 21:19
Show Gist options
  • Save mattcorr/7e207b66ac5ff9752a6b to your computer and use it in GitHub Desktop.
Save mattcorr/7e207b66ac5ff9752a6b to your computer and use it in GitHub Desktop.
<PropertyGroup>
<DeployBizTalkMgmtDBfalseDependsOn>
CustomPreInitialize;
FrameworkInitialize;
CustomPostInitialize;
PreprocessBindings;
PreprocessFiles;
PreprocessAndConfigureLog4net;
CustomDeployTarget;
ConditionalHostStop;
DeploySharedAssemblies;
DeployExternalAssemblies;
DeployComponents;
DeployPipelineComponents;
DeployCustomFunctoids;
DeployVDirs;
DeployBtsNtSvcExeConfig;
CustomPostDeployTarget;
CustomFinalDeploy
</DeployBizTalkMgmtDBfalseDependsOn>
</PropertyGroup>
<!-- Used for a deployment that will NOT deploy assemblies to the BizTalk management database.
Only one server in a BizTalk group should actually deploy assemblies to the management database. -->
<Target Name="DeployBizTalkMgmtDB_false" DependsOnTargets="$(DeployBizTalkMgmtDBfalseDependsOn)">
<!-- Support server deployments that do not include BizTalk management database. -->
<!-- Need to handle these differently than standard targets - just putting in gac... -->
<Exec Command="&quot;$(Gacutil)&quot; /f /i &quot;@(SchemasQualified)&quot;" Condition="'$(IncludeSchemas)' == 'true' and '%(Identity)' == '%(Identity)'" />
<Exec Command="&quot;$(Gacutil)&quot; /f /i &quot;@(PipelinesQualified)&quot;" Condition="'$(IncludePipelines)' == 'true' and '%(Identity)' == '%(Identity)'" />
<Exec Command="&quot;$(Gacutil)&quot; /f /i &quot;@(TransformsQualified)&quot;" Condition="'$(IncludeTransforms)' == 'true' and '%(Identity)' == '%(Identity)'" />
<Exec Command="&quot;$(Gacutil)&quot; /f /i &quot;@(OrchestrationsQualified)&quot;" Condition="'$(IncludeOrchestrations)' == 'true' and '%(Identity)' == '%(Identity)'" />
</Target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment