2021-04-02 11:48:21 +02:00
<Project Sdk= "Microsoft.NET.Sdk" >
2020-02-10 09:06:29 +01:00
<PropertyGroup >
2021-11-18 15:35:42 +01:00
<TargetFramework > net6.0</TargetFramework>
2020-02-20 07:55:24 +01:00
<OutputType > Library</OutputType>
2021-02-18 11:06:02 +01:00
<RootNamespace > Umbraco.Cms.Web.BackOffice</RootNamespace>
2021-03-04 14:10:55 +01:00
<PackageId > Umbraco.Cms.Web.BackOffice</PackageId>
2021-03-05 13:56:41 +01:00
<Title > Umbraco CMS Back Office</Title>
<Description > Contains the Back Office assembly needed to run the back office of Umbraco Cms. This package only contains the assembly, and can be used for package development. Use the template in the Umbraco.Templates package to setup Umbraco</Description>
2020-02-10 09:06:29 +01:00
</PropertyGroup>
2020-07-07 20:40:44 +02:00
<PropertyGroup Condition= " '$(Configuration)' == 'Release' " >
2020-07-08 09:07:54 +02:00
<DocumentationFile > bin\Release\Umbraco.Web.BackOffice.xml</DocumentationFile>
2020-07-07 20:40:44 +02:00
</PropertyGroup>
2020-02-20 07:55:24 +01:00
<ItemGroup >
2020-03-05 15:20:08 +11:00
<FrameworkReference Include= "Microsoft.AspNetCore.App" />
</ItemGroup>
2020-03-13 18:44:58 +11:00
<ItemGroup >
2021-09-20 12:59:14 +02:00
2021-11-18 15:35:42 +01:00
<PackageReference Include= "Microsoft.SourceLink.GitHub" Version= "1.1.1" >
2021-05-04 17:58:50 +01:00
<PrivateAssets > all</PrivateAssets>
<IncludeAssets > runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2021-05-19 21:44:33 +02:00
<PackageReference Include= "Newtonsoft.Json" Version= "13.0.1" />
2022-04-22 09:24:30 +02:00
<PackageReference Include= "Serilog.AspNetCore" Version= "5.0.0" />
2021-11-18 15:35:42 +01:00
<PackageReference Include= "Umbraco.Code" Version= "2.0.0" >
2021-04-27 09:07:10 +02:00
<PrivateAssets > all</PrivateAssets>
</PackageReference>
2022-06-20 09:20:47 +02:00
<PackageReference Update= "Nerdbank.GitVersioning" >
<Version > 3.5.107</Version>
</PackageReference>
2020-03-13 18:44:58 +11:00
</ItemGroup>
2020-05-16 19:35:45 +02:00
<ItemGroup >
<AssemblyAttribute Include= "System.Runtime.CompilerServices.InternalsVisibleTo" >
<_Parameter1 > Umbraco.Tests.UnitTests</_Parameter1>
</AssemblyAttribute>
2020-08-07 14:00:56 +02:00
<AssemblyAttribute Include= "System.Runtime.CompilerServices.InternalsVisibleTo" >
<_Parameter1 > Umbraco.Tests.Integration</_Parameter1>
</AssemblyAttribute>
2020-05-16 19:35:45 +02:00
</ItemGroup>
2020-03-05 15:20:08 +11:00
<ItemGroup >
<ProjectReference Include= "..\Umbraco.Core\Umbraco.Core.csproj" />
2021-05-19 15:05:30 +02:00
<ProjectReference Include= "..\Umbraco.Examine.Lucene\Umbraco.Examine.Lucene.csproj" />
2020-03-05 15:20:08 +11:00
<ProjectReference Include= "..\Umbraco.Infrastructure\Umbraco.Infrastructure.csproj" />
2020-03-25 05:39:25 +01:00
<ProjectReference Include= "..\Umbraco.Web.Common\Umbraco.Web.Common.csproj" />
2020-02-10 09:06:29 +01:00
</ItemGroup>
2021-03-11 13:20:46 +01:00
<ItemGroup >
<EmbeddedResource Include= "EmbeddedResources\**\*" />
</ItemGroup>
2020-02-10 09:06:29 +01:00
</Project>