Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co

## Project Overview

SIC! (Simple Image Converter) is a Windows Forms desktop application (.NET 8.0, x64-only) by Oire Software. It converts images between formats (JPG, PNG, WEBP, ICO, BMP, TIFF, GIF, AVIF) with optional resizing, using Magick.NET as the image processing backend. The app has both a GUI mode and a headless CLI mode.
SIC! (Simple Image Converter) is a Windows Forms desktop application (.NET 10.0, x64-only) by Oire Software. It converts images between formats (JPG, PNG, WEBP, ICO, BMP, TIFF, GIF, AVIF) with optional resizing, using Magick.NET as the image processing backend. The app has both a GUI mode and a headless CLI mode.

It uses structured logging (Serilog), file-based configuration (SharpConfig), and gettext-based localization (GetText.NET). Versioning is handled automatically via GitVersion (GitVersion.MsBuild) from git history.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Built with accessibility in mind — screen-reader friendly with proper labels a
## Requirements

- Windows 10/11 (x64)
- [.NET 8.0 Runtime](https://dotnet.microsoft.com/download/dotnet/8.0)
- [.NET 10.0 Runtime](https://dotnet.microsoft.com/download/dotnet/10.0)

## Installation

Expand Down Expand Up @@ -112,7 +112,7 @@ To run SIC! in portable mode, create an empty `userdata` folder next to `Sic.exe

## Building

Requires [.NET 8.0 SDK](https://dotnet.microsoft.com/download/dotnet/8.0).
Requires [.NET 10.0 SDK](https://dotnet.microsoft.com/download/dotnet/10.0).

```bash
dotnet build # Debug build (x64)
Expand Down
13 changes: 6 additions & 7 deletions src/Sic/Sic.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net10.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand All @@ -16,7 +16,6 @@
<AnalysisLevel>latest</AnalysisLevel>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>NU1901;NU1902</NoWarn>
<Product>SIC!</Product>
<Description>SIC! — Simple Image Converter</Description>
<Company>Oire Software</Company>
Expand All @@ -38,20 +37,20 @@

<ItemGroup>
<PackageReference Include="GetText.NET.WindowsForms" Version="10.0.1" NoWarn="NU1701" />
<PackageReference Include="Magick.NET-Q16-x64" Version="14.12.0" />
<PackageReference Include="Magick.NET-Q16-x64" Version="14.14.0" />
<PackageReference Include="GitVersion.MsBuild" Version="6.7.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="NetSparkleUpdater.SparkleUpdater" Version="3.0.4" />
<PackageReference Include="NetSparkleUpdater.UI.WinForms.NetCore" Version="3.0.4" />
<PackageReference Include="NetSparkleUpdater.SparkleUpdater" Version="3.1.0" />
<PackageReference Include="NetSparkleUpdater.UI.WinForms.NetCore" Version="3.1.0" />
<PackageReference Include="Serilog" Version="4.3.1" />
<PackageReference Include="Serilog.Formatting.Compact" Version="3.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageReference Include="GetText.NET" Version="10.0.1" />
<PackageReference Include="System.CommandLine" Version="2.0.6" />
<PackageReference Include="System.CommandLine" Version="2.0.8" />
<PackageReference Include="sharpconfig-huanlin" Version="4.2.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="5.3.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.202" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.300" PrivateAssets="all" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading