Files
EonaCat.JavaDecompile/EonaCat.JavaDecompile.csproj
T
2026-07-04 20:24:40 +02:00

35 lines
1.0 KiB
XML

<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>