forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.ImageSharp.csproj
More file actions
26 lines (23 loc) · 1.27 KB
/
Copy pathServiceStack.ImageSharp.csproj
File metadata and controls
26 lines (23 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Title>ServiceStack.ImageSharp</Title>
<PackageDescription>ServiceStack Imagigng features implemented in ImageSharp</PackageDescription>
<PackageTags>ServiceStack;Imaging;ImageSharp</PackageTags>
<RootNamespace>ServiceStack.ImageSharp</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
<DefineConstants>$(DefineConstants);NETCORE;NET6_0;NET6_0_OR_GREATER</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ServiceStack.Interfaces\ServiceStack.Interfaces.csproj" />
<ProjectReference Include="..\ServiceStack.Common\ServiceStack.Common.csproj" />
<ProjectReference Include="..\ServiceStack.Client\ServiceStack.Client.csproj" />
<ProjectReference Include="..\ServiceStack\ServiceStack.csproj" />
<PackageReference Include="ServiceStack.Text" Version="$(Version)" />
<PackageReference Include="System.Memory" Version="4.5.4" />
<PackageReference Include="SixLabors.ImageSharp.Web" Version="1.*" />
</ItemGroup>
</Project>