2019-05-20 16:34:10 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2020-02-24 13:37:27 +01:00
|
|
|
|
<LangVersion>8</LangVersion>
|
2019-05-20 18:25:25 +02:00
|
|
|
|
<RootNamespace>Umbraco.Core</RootNamespace>
|
2019-11-07 10:08:16 +01:00
|
|
|
|
<AssemblyVersion>9.0.0</AssemblyVersion>
|
|
|
|
|
|
<InformationalVersion>9.0.0</InformationalVersion>
|
|
|
|
|
|
<FileVersion>9.0.0</FileVersion>
|
|
|
|
|
|
<Product>Umbraco CMS</Product>
|
2019-05-20 16:34:10 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2019-11-07 19:39:20 +11:00
|
|
|
|
<ItemGroup>
|
2020-05-20 10:59:09 +10:00
|
|
|
|
<PackageReference Include="System.ComponentModel.Annotations" Version="4.7.0" />
|
2020-03-17 16:26:56 +01:00
|
|
|
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.6.0" />
|
2019-12-06 12:09:47 +01:00
|
|
|
|
<PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.3.0" />
|
2019-11-07 19:39:20 +11:00
|
|
|
|
<PackageReference Include="System.Runtime.Caching" Version="4.6.0" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2019-11-19 07:52:40 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
|
<_Parameter1>Umbraco.Tests</_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>
|
2019-11-19 07:52:40 +01:00
|
|
|
|
</ItemGroup>
|
2019-05-20 16:34:10 +02:00
|
|
|
|
</Project>
|