mirror of
https://github.com/Syping/ragephoto-cli.git
synced 2025-12-04 16:51:48 +01:00
25 lines
976 B
XML
25 lines
976 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<AssemblyName>ragephoto-cli</AssemblyName>
|
|
<RootNamespace>RagePhoto.Cli</RootNamespace>
|
|
<Authors>Syping</Authors>
|
|
<Copyright>Copyright © 2025 Syping</Copyright>
|
|
<Description>Open Source RAGE Photo CLI based on libragephoto</Description>
|
|
<PackageLicenseExpression>BSD-2-Clause</PackageLicenseExpression>
|
|
<RepositoryUrl>https://github.com/Syping/ragephoto-cli</RepositoryUrl>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
<PublishAot>true</PublishAot>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="RagePhoto.Core" Version="0.8.2" />
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
|
|
<PackageReference Include="System.CommandLine" Version="2.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|