File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
src/Umbraco.Forms.Integrations.Crm.Hubspot/build Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ <Project xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
2
+
3
+ <PropertyGroup >
4
+ <HubspotPropertyEditorFiles >$(MSBuildThisFileDirectory)..\App_Plugins\UmbracoForms.Integrations\Crm\Hubspot\**\*.*</HubspotPropertyEditorFiles >
5
+ </PropertyGroup >
6
+
7
+ <Target Name =" CopyHubspotPropertyEditorAssets" BeforeTargets =" Build" >
8
+ <ItemGroup >
9
+ <HubspotPropertyEditorFiles Include =" $(HubspotPropertyEditorFiles)" />
10
+ </ItemGroup >
11
+ <Message Text =" Copying Hubspot Property Editor files: $(HubspotPropertyEditorFiles) - #@(HubspotPropertyEditorFiles->Count()) files" Importance =" high" />
12
+ <Copy
13
+ SourceFiles=" @(HubspotPropertyEditorFiles)"
14
+ DestinationFiles=" @(HubspotPropertyEditorFiles->'$(MSBuildProjectDirectory)\App_Plugins\UmbracoForms.Integrations\Crm\Hubspot\%(RecursiveDir)%(Filename)%(Extension)')"
15
+ SkipUnchangedFiles=" true" />
16
+
17
+ </Target >
18
+
19
+ <Target Name =" ClearHubspotPropertyEditorAssets" BeforeTargets =" Clean" >
20
+ <ItemGroup >
21
+ <HubspotPropertyEditorDir Include =" $(MSBuildProjectDirectory)\App_Plugins\UmbracoForms.Integrations\Crm\Hubspot\" />
22
+ </ItemGroup >
23
+ <Message Text =" Clear Hubspot Property Editor data" Importance =" high" />
24
+ <RemoveDir Directories =" @(HubspotPropertyEditorDir)" />
25
+ </Target >
26
+
27
+ </Project >
You can’t perform that action at this time.
0 commit comments