* 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
33 lines
1.8 KiB
XML
33 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
|
<metadata minClientVersion="4.1.0">
|
|
<id>Umbraco.Templates</id>
|
|
<version>1.0.0</version>
|
|
<authors>Umbraco HQ</authors>
|
|
<owners>Umbraco HQ</owners>
|
|
<license type="expression">MIT</license>
|
|
<projectUrl>https://umbraco.com/</projectUrl>
|
|
<icon>icon.png</icon>
|
|
<iconUrl>https://umbraco.com/dist/nuget/logo-small.png</iconUrl>
|
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
|
<description>Umbraco CMS templates for .NET Core Template Engine available through the dotnet CLI's new command</description>
|
|
<language>en-US</language>
|
|
<tags>umbraco</tags>
|
|
<repository type="git" url="https://github.com/umbraco/Umbraco-CMS" />
|
|
<packageTypes>
|
|
<packageType name="Template" />
|
|
</packageTypes>
|
|
</metadata>
|
|
<files>
|
|
<file src="icon.png" />
|
|
<file src="UmbracoPackage\**" target="UmbracoPackage" exclude="bin;obj" />
|
|
<file src="UmbracoProject\**" target="UmbracoProject" exclude="bin;obj" />
|
|
<file src="..\src\Umbraco.Web.UI\Program.cs" target="UmbracoProject" />
|
|
<file src="..\src\Umbraco.Web.UI\Startup.cs" target="UmbracoProject" />
|
|
<file src="..\src\Umbraco.Web.UI\Views\Partials\blocklist\**" target="UmbracoProject\Views\Partials\blocklist" />
|
|
<file src="..\src\Umbraco.Web.UI\Views\Partials\grid\**" target="UmbracoProject\Views\Partials\grid" />
|
|
<file src="..\src\Umbraco.Web.UI\Views\_ViewImports.cshtml" target="UmbracoProject\Views\_ViewImports.cshtml" />
|
|
<file src="..\src\Umbraco.Web.UI\wwwroot\favicon.ico" target="UmbracoProject\wwwroot" />
|
|
</files>
|
|
</package>
|