2020-03-05 15:20:08 +11:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-02-10 09:06:29 +01:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2020-02-18 08:32:06 +01:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2020-02-20 07:55:24 +01:00
|
|
|
|
<OutputType>Library</OutputType>
|
2020-02-24 13:37:27 +01:00
|
|
|
|
<LangVersion>8</LangVersion>
|
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>
|
2020-06-05 12:50:26 +02:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.4" />
|
2020-06-12 22:13:43 +02:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
2020-03-13 18:44:58 +11:00
|
|
|
|
<PackageReference Include="Serilog.AspNetCore" Version="3.2.0" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-05-16 19:35:45 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
|
<_Parameter1>Umbraco.Tests.UnitTests</_Parameter1>
|
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-03-05 15:20:08 +11:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Umbraco.Configuration\Umbraco.Configuration.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Umbraco.Core\Umbraco.Core.csproj" />
|
|
|
|
|
|
<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>
|
|
|
|
|
|
</Project>
|