23 lines
642 B
XML
23 lines
642 B
XML
|
|
<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>
|
||
|
|
<ProjectReference Include="..\Umbraco.Core\Umbraco.Core.csproj" />
|
||
|
|
<ProjectReference Include="..\Umbraco.Infrastructure\Umbraco.Infrastructure.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="MiniProfiler.AspNetCore.Mvc" Version="4.1.0" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|