-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDithery-cli.csproj
33 lines (26 loc) · 1.18 KB
/
Dithery-cli.csproj
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
27
28
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<RootNamespace>Dithery_cli</RootNamespace>
<PackAsTool>true</PackAsTool>
<ToolCommandName>dithery</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<Authors>Kaarlo Räihä</Authors>
<Description>Dithery-cli is command-line image dithering tool</Description>
<PackageProjectUrl>https://github.com/mcraiha/Dithery-cli</PackageProjectUrl>
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
<PackageReadmeFile>nuget-readme.md</PackageReadmeFile>
<VersionPrefix>1.0.8</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SkiaSharp" Version="2.88.6" />
<PackageReference Include="SkiaSharp.NativeAssets.Win32" Version="2.88.6" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="2.88.6" />
<PackageReference Include="LibDithering" Version="1.0.1" />
</ItemGroup>
<ItemGroup>
<None Include="nuget-readme.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>