2020-03-24 18:18:25 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<LangVersion>8</LangVersion>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-03-27 11:39:17 +01:00
|
|
|
<ProjectReference Include="..\Umbraco.Configuration\Umbraco.Configuration.csproj" />
|
2020-03-24 18:18:25 +01:00
|
|
|
<ProjectReference Include="..\Umbraco.Core\Umbraco.Core.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Umbraco.Infrastructure\Umbraco.Infrastructure.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-04-20 12:20:47 +02:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.3" />
|
2020-03-24 18:18:25 +01:00
|
|
|
<PackageReference Include="MiniProfiler.AspNetCore.Mvc" Version="4.1.0" />
|
2020-04-20 12:20:47 +02:00
|
|
|
<PackageReference Include="NETStandard.Library" Version="2.0.3" />
|
2020-04-21 13:07:20 +10:00
|
|
|
<PackageReference Include="Serilog.AspNetCore" Version="3.2.0" />
|
2020-05-12 10:21:40 +10:00
|
|
|
<PackageReference Include="SixLabors.ImageSharp.Web" Version="1.0.0-rc0001" />
|
2020-03-31 15:36:25 +02:00
|
|
|
<PackageReference Include="Smidge" Version="3.1.0" />
|
|
|
|
|
<PackageReference Include="Smidge.Nuglify" Version="2.0.0" />
|
2020-03-24 18:18:25 +01:00
|
|
|
</ItemGroup>
|
2020-04-20 12:20:47 +02:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
<_Parameter1>Umbraco.Tests.UnitTests</_Parameter1>
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
</ItemGroup>
|
2020-03-24 18:18:25 +01:00
|
|
|
|
|
|
|
|
</Project>
|