Projektdateien hinzufügen.

This commit is contained in:
2025-10-26 14:16:27 +01:00
parent 0ea9fe7e7d
commit ae37a63ec9
27 changed files with 981 additions and 0 deletions

27
ReSync.csproj Normal file
View File

@@ -0,0 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
</PropertyGroup>
<!-- Include resources (SVG/PNG/etc) so they are embedded and accessible via pack URIs -->
<ItemGroup>
<Resource Include="Resources\*.*" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Frames\**" />
<EmbeddedResource Remove="Frames\**" />
<None Remove="Frames\**" />
<Page Remove="Frames\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Blake3" Version="2.0.0" />
<PackageReference Include="MediaDevices" Version="1.10.0" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.10" />
</ItemGroup>
</Project>