* Add new connection-string-provider-name parameter * Use template value forms to correctly encode JSON values * Add new development-database-type parameter * Update package template and fix App_Plugins directory rename * Remove conflicting short parameter name * Lowercase framework parameter to align with MS templates * Cleanup default template settings * Write unattended install parameters when either connection string or development database is set * Include RootNamespace in UmbracoPackage template * Update Umbraco specific gitignore rules * Revert "Lowercase framework parameter to align with MS templates" This reverts commit 22de389272a7e119df569ec2e54190265f6d0ae0. * Add exclude-gitignore parameter * Update template schemas * Add minimal-gitignore parameter
29 lines
1.0 KiB
XML
29 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ContentTargetFolders>.</ContentTargetFolders>
|
|
<Product>UmbracoPackage</Product>
|
|
<PackageId>UmbracoPackage</PackageId>
|
|
<Title>UmbracoPackage</Title>
|
|
<Description>...</Description>
|
|
<PackageTags>umbraco plugin package</PackageTags>
|
|
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">UmbracoPackage</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Umbraco.Cms.Web.Website" Version="UMBRACO_VERSION_FROM_TEMPLATE" />
|
|
<PackageReference Include="Umbraco.Cms.Web.BackOffice" Version="UMBRACO_VERSION_FROM_TEMPLATE" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="App_Plugins\UmbracoPackage\**">
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
|
|
</Content>
|
|
<None Include="build\**">
|
|
<Pack>true</Pack>
|
|
<PackagePath>buildTransitive</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|