24 lines
889 B
XML
24 lines
889 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
<PropertyGroup>
|
||
|
|
<Title>Umbraco CMS - Imaging - ImageSharp</Title>
|
||
|
|
<Description>Adds imaging support using ImageSharp/ImageSharp.Web to Umbraco CMS.</Description>
|
||
|
|
<!-- TODO: Enable when final version is shipped (because there's currently no previous version) -->
|
||
|
|
<EnablePackageValidation>false</EnablePackageValidation>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.3" />
|
||
|
|
<PackageReference Include="SixLabors.ImageSharp.Web" Version="2.0.2" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\Umbraco.Web.Common\Umbraco.Web.Common.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
||
|
|
<_Parameter1>Umbraco.Tests.UnitTests</_Parameter1>
|
||
|
|
</AssemblyAttribute>
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|