|
| 1 | +<Project Sdk="Microsoft.NET.Sdk.Web"> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFramework>net7.0</TargetFramework> |
| 4 | + <ImplicitUsings>enable</ImplicitUsings> |
| 5 | + <Nullable>enable</Nullable> |
| 6 | + </PropertyGroup> |
| 7 | + <ItemGroup> |
| 8 | + <Content Include="App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\css\styles.css"> |
| 9 | + <PackagePath>App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\</PackagePath> |
| 10 | + <Pack>true</Pack> |
| 11 | + </Content> |
| 12 | + <Content Include="App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\js\formpicker.controller.js"> |
| 13 | + <PackagePath>App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\</PackagePath> |
| 14 | + <Pack>true</Pack> |
| 15 | + </Content> |
| 16 | + <Content Include="App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\js\hubspot.resource.js"> |
| 17 | + <PackagePath>App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\</PackagePath> |
| 18 | + <Pack>true</Pack> |
| 19 | + </Content> |
| 20 | + <Content Include="App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\js\hubspot.service.js"> |
| 21 | + <PackagePath>App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\</PackagePath> |
| 22 | + <Pack>true</Pack> |
| 23 | + </Content> |
| 24 | + <Content Include="App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\js\hubspotauthorization.directive.js"> |
| 25 | + <PackagePath>App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\</PackagePath> |
| 26 | + <Pack>true</Pack> |
| 27 | + </Content> |
| 28 | + <Content Include="App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\js\settings.controller.js"> |
| 29 | + <PackagePath>App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\</PackagePath> |
| 30 | + <Pack>true</Pack> |
| 31 | + </Content> |
| 32 | + <Content Include="App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\package.manifest"> |
| 33 | + <PackagePath>App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\</PackagePath> |
| 34 | + <Pack>true</Pack> |
| 35 | + </Content> |
| 36 | + <Content Include="App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\Render\HubspotForm.cshtml"> |
| 37 | + <PackagePath>App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\</PackagePath> |
| 38 | + <Pack>true</Pack> |
| 39 | + </Content> |
| 40 | + <Content Include="App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\Render\HubspotFormV9.cshtml"> |
| 41 | + <PackagePath>App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\</PackagePath> |
| 42 | + <Pack>true</Pack> |
| 43 | + </Content> |
| 44 | + <Content Include="App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\views\formpicker.html"> |
| 45 | + <PackagePath>App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\</PackagePath> |
| 46 | + <Pack>true</Pack> |
| 47 | + </Content> |
| 48 | + <Content Include="App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\views\formpickereditor.html"> |
| 49 | + <PackagePath>App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\</PackagePath> |
| 50 | + <Pack>true</Pack> |
| 51 | + </Content> |
| 52 | + <Content Include="App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\views\settings.html"> |
| 53 | + <PackagePath>App_Plugins\UmbracoCms.Integrations\Crm\Hubspot\</PackagePath> |
| 54 | + <Pack>true</Pack> |
| 55 | + </Content> |
| 56 | + </ItemGroup> |
| 57 | + |
| 58 | + <ItemGroup> |
| 59 | + <PackageReference Include="Umbraco.Cms" Version="11.0.0" /> |
| 60 | + </ItemGroup> |
| 61 | + |
| 62 | + <ItemGroup> |
| 63 | + <!-- Opt-in to app-local ICU to ensure consistent globalization APIs across different platforms --> |
| 64 | + <PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="68.2.0.9" /> |
| 65 | + <ProjectReference Include="..\Umbraco.Cms.Integrations.Crm.Hubspot\Umbraco.Cms.Integrations.Crm.Hubspot.csproj" /> |
| 66 | + <RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="68.2.0.9" Condition="$(RuntimeIdentifier.StartsWith('linux')) or $(RuntimeIdentifier.StartsWith('win')) or ('$(RuntimeIdentifier)' == '' and !$([MSBuild]::IsOSPlatform('osx')))" /> |
| 67 | + </ItemGroup> |
| 68 | + |
| 69 | + <PropertyGroup> |
| 70 | + <!-- Razor files are needed for the backoffice to work correctly --> |
| 71 | + <CopyRazorGenerateFilesToPublishDirectory>true</CopyRazorGenerateFilesToPublishDirectory> |
| 72 | + </PropertyGroup> |
| 73 | + |
| 74 | + <PropertyGroup> |
| 75 | + <!-- Remove RazorCompileOnBuild and RazorCompileOnPublish when not using ModelsMode InMemoryAuto --> |
| 76 | + <RazorCompileOnBuild>false</RazorCompileOnBuild> |
| 77 | + <RazorCompileOnPublish>false</RazorCompileOnPublish> |
| 78 | + </PropertyGroup> |
| 79 | + |
| 80 | +</Project> |
0 commit comments