Hi Everyone,
I have a Custom Target defined in my btdfproj (as below) to remove existing BizTalk applications on deploy:
<ItemGroup>
<Target Name="CustomPostInitialize" Outputs="%(AppsToRemove.Identity)" Condition="<<TheCondition>> and '@(AppsToRemove)' != ''" >
I don't want to this Target to run when I do a 'Quick Deploy' from Visual Studio.
Can anyone please let me know the condition I should use in the dummy placeholder <<TheCondition>>
Thanks in advance :)
I have a Custom Target defined in my btdfproj (as below) to remove existing BizTalk applications on deploy:
<ItemGroup>
<AppsToRemove Include="BizTalk_Application_ToRemove" />
</ItemGroup><Target Name="CustomPostInitialize" Outputs="%(AppsToRemove.Identity)" Condition="<<TheCondition>> and '@(AppsToRemove)' != ''" >
.
..
...
<Exec Command="BTSTask.exe RemoveApp -ApplicationName:"%(AppsToRemove.Identity)"" Condition="'$(AppExists1)' == 'true'" ContinueOnError="true"/>
</Target>I don't want to this Target to run when I do a 'Quick Deploy' from Visual Studio.
Can anyone please let me know the condition I should use in the dummy placeholder <<TheCondition>>
Thanks in advance :)