embed ui executable directly into c# assembly
This commit is contained in:
@@ -5,10 +5,10 @@
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<InvariantGlobalization>true</InvariantGlobalization>
|
||||
<PublishAot>false</PublishAot>
|
||||
<!-- todo: enable this once the app is aot compliant! -->
|
||||
<OutputType Condition="'$(Configuration)' == 'Release'">WinExe</OutputType>
|
||||
<PublishSingleFile>true</PublishSingleFile>
|
||||
<!-- todo: enable this once the app is aot compliant! -->
|
||||
<PublishAot>false</PublishAot>
|
||||
<OutputType Condition="'$(Configuration)' == 'Release'">WinExe</OutputType>
|
||||
<PublishSingleFile>true</PublishSingleFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
@@ -16,4 +16,12 @@
|
||||
<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>
|
||||
|
||||
Reference in New Issue
Block a user