2022-10-12 10:46:51 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-06-29 19:52:40 +02:00
|
|
|
<PropertyGroup>
|
2022-09-27 14:22:34 +02:00
|
|
|
<PackageId>Umbraco.Cms.Core</PackageId>
|
|
|
|
|
<Title>Umbraco CMS - Core</Title>
|
|
|
|
|
<Description>Contains the core assembly needed to run Umbraco CMS.</Description>
|
2021-10-29 09:52:39 +02:00
|
|
|
<RootNamespace>Umbraco.Cms.Core</RootNamespace>
|
2018-06-29 19:52:40 +02:00
|
|
|
</PropertyGroup>
|
2020-07-08 09:07:54 +02:00
|
|
|
|
2018-06-29 19:52:40 +02:00
|
|
|
<ItemGroup>
|
2024-01-13 20:47:16 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" />
|
2024-02-21 09:05:44 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" />
|
2023-11-28 10:29:13 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" />
|
2023-11-27 15:18:00 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" />
|
2023-11-28 10:29:13 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.FileProviders.Physical" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" />
|
2023-12-04 13:25:51 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Identity.Core" />
|
2023-11-28 10:29:13 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Options" />
|
2023-12-04 13:25:51 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" />
|
2022-10-12 10:46:51 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-06-29 19:52:40 +02:00
|
|
|
<ItemGroup>
|
2021-10-29 09:52:39 +02:00
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
<_Parameter1>Umbraco.Tests</_Parameter1>
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
<_Parameter1>Umbraco.Tests.Common</_Parameter1>
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
<_Parameter1>Umbraco.Tests.UnitTests</_Parameter1>
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
<_Parameter1>Umbraco.Tests.Benchmarks</_Parameter1>
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
<_Parameter1>Umbraco.Tests.Integration</_Parameter1>
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
<_Parameter1>DynamicProxyGenAssembly2</_Parameter1>
|
|
|
|
|
</AssemblyAttribute>
|
2018-06-29 19:52:40 +02:00
|
|
|
</ItemGroup>
|
2021-03-11 13:20:46 +01:00
|
|
|
|
2018-08-29 01:15:46 +10:00
|
|
|
<ItemGroup>
|
2021-10-29 15:00:27 +02:00
|
|
|
<EmbeddedResource Include="EmbeddedResources\**\*" />
|
2018-06-29 19:52:40 +02:00
|
|
|
</ItemGroup>
|
2021-05-11 10:14:57 +02:00
|
|
|
</Project>
|