2020-12-08 01:57:14 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-05-20 16:34:10 +02:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2021-02-18 11:06:02 +01:00
|
|
|
<RootNamespace>Umbraco.Cms.Core</RootNamespace>
|
2021-03-05 15:36:27 +01:00
|
|
|
<Product>Umbraco CMS</Product>
|
2019-05-20 16:34:10 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-07-08 09:07:54 +02:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DocumentationFile>bin\Release\Umbraco.Core.xml</DocumentationFile>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-11-07 19:39:20 +11:00
|
|
|
<ItemGroup>
|
2021-01-20 21:01:45 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Options" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="5.0.0" />
|
2021-03-07 19:20:16 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="5.0.0" />
|
2021-01-20 21:01:45 +01:00
|
|
|
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="5.0.0" />
|
2020-11-20 00:02:05 +00:00
|
|
|
<PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.7.0" />
|
2021-01-20 21:01:45 +01:00
|
|
|
<PackageReference Include="System.Runtime.Caching" Version="5.0.0" />
|
2019-11-07 19:39:20 +11:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-11-19 07:52:40 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
<_Parameter1>Umbraco.Tests</_Parameter1>
|
|
|
|
|
</AssemblyAttribute>
|
2020-08-21 14:52:47 +01:00
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
<_Parameter1>Umbraco.Tests.Common</_Parameter1>
|
|
|
|
|
</AssemblyAttribute>
|
2020-04-19 09:07:58 +02:00
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
<_Parameter1>Umbraco.Tests.UnitTests</_Parameter1>
|
|
|
|
|
</AssemblyAttribute>
|
2019-11-19 07:52:40 +01:00
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
<_Parameter1>Umbraco.Tests.Benchmarks</_Parameter1>
|
|
|
|
|
</AssemblyAttribute>
|
2020-06-09 07:49:26 +02:00
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
<_Parameter1>Umbraco.Tests.Integration</_Parameter1>
|
|
|
|
|
</AssemblyAttribute>
|
2020-09-22 08:56:23 +02:00
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
<_Parameter1>DynamicProxyGenAssembly2</_Parameter1>
|
|
|
|
|
</AssemblyAttribute>
|
2019-11-19 07:52:40 +01:00
|
|
|
</ItemGroup>
|
2019-05-20 16:34:10 +02:00
|
|
|
</Project>
|