Initial version

This commit is contained in:
2026-07-04 20:24:40 +02:00
parent 5429339f62
commit b3ae12245b
20 changed files with 1131 additions and 70 deletions
+35
View File
@@ -0,0 +1,35 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="icon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="EonaCat.Editor" Version="0.0.2" />
</ItemGroup>
<ItemGroup>
<None Update="external\cfr.jar">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>assets\external\cfr.jar</TargetPath>
</None>
<None Update="external\icons\*.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>assets\external\icons\%(Filename)%(Extension)</TargetPath>
</None>
<None Update="external\themes\EonaCat.JavaDecompile.eeh">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>assets\external\themes\EonaCat.JavaDecompile.eeh</TargetPath>
</None>
</ItemGroup>
</Project>