* Update gitignore * Move csproj * Update project references * Update solutions * Update build scripts * Tests used to share editorconfig with projects in src * Fix broken tests. * Stop copying around .editorconfig merged root one with linting * csharp_style_expression_bodied -> suggestion * Move StyleCop rulesets to matching directories and update shared build properties * Remove legacy build files, update NuGet.cofig and solution files * Restore myget source * Clean up .gitignore * Update .gitignore * Move new test classes to tests after merge * Gitignore + nuget config * Move new test Co-authored-by: Ronald Barendse <ronald@barend.se>
30 lines
1.4 KiB
XML
30 lines
1.4 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.Cms.StaticAssets</id>
|
|
<version>9.0.0</version>
|
|
<title>Umbraco Cms Static Assets</title>
|
|
<authors>Umbraco HQ</authors>
|
|
<owners>Umbraco HQ</owners>
|
|
<license type="expression">MIT</license>
|
|
<projectUrl>https://umbraco.com/</projectUrl>
|
|
<iconUrl>https://umbraco.com/dist/nuget/logo-small.png</iconUrl>
|
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
|
<description>Contains the static assets that is required to run Umbraco CMS.</description>
|
|
<summary>Contains the static assets that is required to run Umbraco CMS.</summary>
|
|
<language>en-US</language>
|
|
<tags>umbraco</tags>
|
|
<repository type="git" url="https://github.com/umbraco/umbraco-cms" />
|
|
<dependencies>
|
|
</dependencies>
|
|
</metadata>
|
|
<files>
|
|
<!-- Content -->
|
|
<file src="$BuildTmp$\WebApp\wwwroot\umbraco\**\*.*" target="content\wwwroot\umbraco" />
|
|
<file src="$BuildTmp$\WebApp\umbraco\**\*.*" target="content\umbraco" />
|
|
|
|
<!-- UmbracoCms props and targets used to copy the content into the solution -->
|
|
<file src="buildTransitive\**" target="buildTransitive\" />
|
|
</files>
|
|
</package>
|