fix SoftNcRunner GM code normalization.

This commit is contained in:
2026-05-06 13:21:19 +08:00
parent 0fe9497552
commit 2f57932000
1238 changed files with 69405 additions and 22511 deletions
@@ -221,8 +221,8 @@ Class XmlUtil
<a id="Hi_Common_XmlUtils_XmlUtil_GetDictionaryByXmlSource_" data-uid="Hi.Common.XmlUtils.XmlUtil.GetDictionaryByXmlSource*"></a>
<h3 id="Hi_Common_XmlUtils_XmlUtil_GetDictionaryByXmlSource__1_System_Xml_Linq_XElement_System_String_Hi_Common_XmlUtils_GenMode_" data-uid="Hi.Common.XmlUtils.XmlUtil.GetDictionaryByXmlSource``1(System.Xml.Linq.XElement,System.String,Hi.Common.XmlUtils.GenMode)">
GetDictionaryByXmlSource&lt;T&gt;(XElement, string, GenMode)
<h3 id="Hi_Common_XmlUtils_XmlUtil_GetDictionaryByXmlSource__1_System_Xml_Linq_XElement_System_String_System_IProgress_System_Object__System_Boolean_" data-uid="Hi.Common.XmlUtils.XmlUtil.GetDictionaryByXmlSource``1(System.Xml.Linq.XElement,System.String,System.IProgress{System.Object},System.Boolean)">
GetDictionaryByXmlSource&lt;T&gt;(XElement, string, IProgress&lt;object&gt;, bool)
</h3>
@@ -231,7 +231,7 @@ Class XmlUtil
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static Dictionary&lt;string, T&gt; GetDictionaryByXmlSource&lt;T&gt;(this XElement src, string baseDirectory, GenMode genMode) where T : class</code></pre>
<pre><code class="lang-csharp hljs">public static Dictionary&lt;string, T&gt; GetDictionaryByXmlSource&lt;T&gt;(this XElement src, string baseDirectory, IProgress&lt;object&gt; progress, bool enableRebase = true) where T : class</code></pre>
</div>
<h4 class="section">Parameters</h4>
@@ -242,8 +242,11 @@ Class XmlUtil
<dt><code>baseDirectory</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></dt>
<dd><p>The base directory for resolving paths</p>
</dd>
<dt><code>genMode</code> <a class="xref" href="Hi.Common.XmlUtils.GenMode.html">GenMode</a></dt>
<dd><p>The generation mode to use for deserialization</p>
<dt><code>progress</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.iprogress-1">IProgress</a>&lt;<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a>&gt;</dt>
<dd><p>Optional progress reporter for the XML parsing chain</p>
</dd>
<dt><code>enableRebase</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></dt>
<dd><p>Whether to rebase the directory to the file's location</p>
</dd>
</dl>