You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
661 B
27 lines
661 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<LangVersion>10</LangVersion>
|
|
<PackageVersion>1.8.0</PackageVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="utils/**">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="..\LICENSE">
|
|
<Link>LICENSE</Link>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|