|
1 | 1 | <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2 | 2 | <PropertyGroup>
|
3 |
| - <ActiveCampaignPropertyEditorFilesPath> |
| 3 | + <ActiveCampaignWorkflowFilesPath> |
4 | 4 | $(MSBuildThisFileDirectory)..\App_Plugins\UmbracoForms.Integrations\Crm\ActiveCampaign\**\*.*
|
5 |
| - </ActiveCampaignPropertyEditorFilesPath> |
| 5 | + </ActiveCampaignWorkflowFilesPath> |
6 | 6 | </PropertyGroup>
|
7 |
| - <Target Name="CopyActiveCampaignPropertyEditorAssets" BeforeTargets="Build"> |
| 7 | + <Target Name="CopyActiveCampaignWorkflowAssets" BeforeTargets="Build"> |
8 | 8 | <ItemGroup>
|
9 |
| - <ActiveCampaignPropertyEditorFiles Include="$(ActiveCampaignPropertyEditorFilesPath)" /> |
| 9 | + <ActiveCampaignWorkflowFiles Include="$(ActiveCampaignWorkflowFilesPath)" /> |
10 | 10 | </ItemGroup>
|
11 | 11 | <Message
|
12 |
| - Text="Copying ActiveCampaign Property Editor files: $(ActiveCampaignPropertyEditorFilesPath) - #@(ActiveCampaignPropertyEditorFiles->Count()) files" |
| 12 | + Text="Copying ActiveCampaign Property Editor files: $(ActiveCampaignWorkflowFilesPath) - #@(ActiveCampaignWorkflowFiles->Count()) files" |
13 | 13 | Importance="high" />
|
14 |
| - <Copy SourceFiles="@(ActiveCampaignPropertyEditorFiles)" |
15 |
| - DestinationFiles="@(ActiveCampaignPropertyEditorFiles->'$(MSBuildProjectDirectory)\App_Plugins\UmbracoForms.Integrations\Crm\ActiveCampaign\%(RecursiveDir)%(Filename)%(Extension)')" |
| 14 | + <Copy SourceFiles="@(ActiveCampaignWorkflowFiles)" |
| 15 | + DestinationFiles="@(ActiveCampaignWorkflowFiles->'$(MSBuildProjectDirectory)\App_Plugins\UmbracoForms.Integrations\Crm\ActiveCampaign\%(RecursiveDir)%(Filename)%(Extension)')" |
16 | 16 | SkipUnchangedFiles="true" />
|
17 | 17 |
|
18 | 18 | </Target>
|
19 | 19 |
|
20 |
| - <Target Name="ClearActiveCampaignPropertyEditorAssets" BeforeTargets="Clean"> |
| 20 | + <Target Name="ClearActiveCampaignWorkflowAssets" BeforeTargets="Clean"> |
21 | 21 | <ItemGroup>
|
22 |
| - <ActiveCampaignPropertyEditorDir |
| 22 | + <ActiveCampaignWorkflowDir |
23 | 23 | Include="$(MSBuildProjectDirectory)\App_Plugins\UmbracoForms\Crm\ActiveCampaign\" />
|
24 | 24 | </ItemGroup>
|
25 | 25 | <Message Text="Clear old ActiveCampaign Property Editor data" Importance="high" />
|
26 |
| - <RemoveDir Directories="@(ActiveCampaignPropertyEditorDir)" /> |
| 26 | + <RemoveDir Directories="@(ActiveCampaignWorkflowDir)" /> |
27 | 27 | </Target>
|
28 | 28 |
|
29 | 29 | </Project>
|
0 commit comments