36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<PackageId>Umbraco.Cms.PublishedCache.HybridCache</PackageId>
|
|||
|
|
<Title>Umbraco CMS - Published cache - HybridCache</Title>
|
|||
|
|
<Description>Contains the published cache assembly needed to run Umbraco CMS.</Description>
|
|||
|
|
<RootNamespace>Umbraco.Cms.Infrastructure.HybridCache</RootNamespace>
|
|||
|
|
<!-- TODO: Enable package validation in v16 by removing this line -->
|
|||
|
|
<EnablePackageValidation>false</EnablePackageValidation>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Hybrid" />
|
|||
|
|
<PackageReference Include="MessagePack" />
|
|||
|
|
<PackageReference Include="K4os.Compression.LZ4" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|||
|
|
<_Parameter1>Umbraco.Tests</_Parameter1>
|
|||
|
|
</AssemblyAttribute>
|
|||
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|||
|
|
<_Parameter1>Umbraco.Tests.Integration</_Parameter1>
|
|||
|
|
</AssemblyAttribute>
|
|||
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|||
|
|
<_Parameter1>DynamicProxyGenAssembly2</_Parameter1>
|
|||
|
|
</AssemblyAttribute>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\Umbraco.Core\Umbraco.Core.csproj" />
|
|||
|
|
<ProjectReference Include="..\Umbraco.Infrastructure\Umbraco.Infrastructure.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|