Files
Il2CppInspectorRedux/Il2CppInspector.Redux.GUI/Il2CppInspector.Redux.GUI.csproj
2025-04-20 16:57:32 +02:00

28 lines
1.1 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<!-- todo: enable this once the app is aot compliant! -->
<PublishAot>false</PublishAot>
<OutputType Condition="'$(Configuration)' == 'Release'">WinExe</OutputType>
<PublishSingleFile>true</PublishSingleFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Bin2Object\Bin2Object\Bin2Object.csproj" />
<ProjectReference Include="..\Il2CppInspector.Common\Il2CppInspector.csproj" />
</ItemGroup>
<!-- todo: this needs to be adjusted for multiplatform support -->
<Target Name="BuildTauriFrontend" BeforeTargets="BeforeBuild">
<Exec Command="pnpm tauri build --no-bundle" WorkingDirectory="..\Il2CppInspector.Redux.GUI.UI" />
<ItemGroup>
<EmbeddedResource Include="..\Il2CppInspector.Redux.GUI.UI\src-tauri\target\release\il2cppinspectorredux.exe" />
</ItemGroup>
</Target>
</Project>