use a empty jpeg instead of a null byte

This commit is contained in:
Syping 2025-10-24 15:57:09 +02:00
parent a36c2c467b
commit 90362c07eb
5 changed files with 216 additions and 3 deletions

View file

@ -4,12 +4,28 @@
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>ragephoto-cli</AssemblyName>
<RootNamespace>RagePhoto.Cli</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="RagePhoto.Core" Version="0.7.0" />
<PackageReference Include="System.CommandLine" Version="2.0.0-rc.2.25502.107" />