AB#8522 - Smidge implementation of the Runtime Minifier

This commit is contained in:
Bjarke Berg
2020-03-30 21:27:35 +02:00
parent 219391246d
commit ffc6ce6553
45 changed files with 586 additions and 404 deletions

View File

@@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>Umbraco.Web.UI.BackOffice</RootNamespace>
<RootNamespace>Umbraco.Web.UI.NetCore</RootNamespace>
</PropertyGroup>
<ItemGroup>
@@ -15,8 +15,23 @@
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="wwwroot\~\App_Data\TEMP\TypesCache\umbraco-types.DESKTOP-2016.hash" />
<_ContentIncludedByDefault Remove="wwwroot\~\App_Data\TEMP\TypesCache\umbraco-types.DESKTOP-2016.list" />
<Compile Remove="Umbraco\**" />
<Compile Remove="wwwroot\Umbraco\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Umbraco\**" />
<EmbeddedResource Remove="wwwroot\Umbraco\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Umbraco\**" />
<None Remove="wwwroot\Umbraco\**" />
</ItemGroup>
<ItemGroup>
<Content Remove="Umbraco\**" />
<Content Remove="wwwroot\Umbraco\**" />
</ItemGroup>
</Project>