Update to latest Iris

This commit is contained in:
Yoshi Askharoun
2023-05-22 13:14:12 -05:00
parent f1c7232f81
commit 73789cc9a9
3 changed files with 7 additions and 4 deletions
@@ -59,6 +59,9 @@ namespace ZuneUIXTools.Modules.UIX
try
{
Microsoft.Iris.Debug.Bridge bridge = new();
bridge.InterpreterStep += (ctx, entry) => System.Diagnostics.Debug.WriteLine($"[UIXT] [Interpreter] [{ctx}] {entry}");
//IrisApp.Window.RequestLoad("res://ZuneShellResources!Frame.uix#Frame");
AppDomain.CurrentDomain.AssemblyResolve += (sender, e) =>
@@ -101,7 +104,7 @@ namespace ZuneUIXTools.Modules.UIX
for (int i = 0; i < results.Count; i++)
{
var result = results[i];
File.WriteAllText(Path.ChangeExtension(FilePath, $"{i}.decomp.uix"), result.InnerXml);
File.WriteAllText(Path.ChangeExtension(FilePath, $"{i}.decomp.uix"), result.Doc.InnerXml);
}
}
}
+2 -2
View File
@@ -8,10 +8,10 @@
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\libs\MicrosoftIris\36MSApp1024.snk</AssemblyOriginatorKeyFile>
<DelaySign>True</DelaySign>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
@@ -26,7 +26,7 @@
<PackageReference Include="Gemini.Modules.Output" Version="1.0.44-beta" />
<PackageReference Include="Gemini.Modules.ErrorList" Version="1.0.44-beta" />
<PackageReference Include="Gemini.Modules.CodeEditor" Version="1.0.44-beta" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="7.0.0" />
<PackageReference Include="WPFHexaEditor" Version="2.1.7" />
<ProjectReference Include="..\libs\MicrosoftIris\UIX.Debug\UIX.Debug.csproj" />
<ProjectReference Include="..\libs\MicrosoftIris\UIX\UIX.csproj" />