-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[+] Support all Melonloader versions
- Loading branch information
Showing
7 changed files
with
148 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Weavers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FodyWeavers.xsd"> | ||
<ILMerge> | ||
<IncludeAssemblies>tomlet</IncludeAssemblies> | ||
<NamespacePrefix>$AquaMai$_</NamespacePrefix> | ||
</ILMerge> | ||
</Weavers> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> | ||
<!-- This file was generated by Fody. Manual changes to this file will be lost when your project is rebuilt. --> | ||
<xs:element name="Weavers"> | ||
<xs:complexType> | ||
<xs:all> | ||
<xs:element name="ILMerge" minOccurs="0" maxOccurs="1"> | ||
<xs:complexType> | ||
<xs:all> | ||
<xs:element name="IncludeAssemblies" type="xs:string" minOccurs="0" maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation>A regular expression matching the assembly names to include in merging.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="ExcludeAssemblies" type="xs:string" minOccurs="0" maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation>A regular expression matching the assembly names to exclude from merging.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="IncludeResources" type="xs:string" minOccurs="0" maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation>A regular expression matching the resource names to include in merging.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="ExcludeResources" type="xs:string" minOccurs="0" maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation>A regular expression matching the resource names to exclude from merging.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="HideImportedTypes" type="xs:boolean" minOccurs="0" maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation>A switch to control whether the imported types are hidden (made private) or keep their visibility unchanged. Default is 'true'</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="NamespacePrefix" type="xs:string" minOccurs="0" maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation>A string that is used as prefix for the namespace of the imported types.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="FullImport" type="xs:boolean" minOccurs="0" maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation>A switch to control whether to import the full assemblies or only the referenced types. Default is 'false'</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="CompactMode" type="xs:boolean" minOccurs="0" maxOccurs="1"> | ||
<xs:annotation> | ||
<xs:documentation>A switch to enable compacting of the target assembly by skipping properties, events and unused methods. Default is 'false'</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
</xs:all> | ||
<xs:attribute name="IncludeAssemblies" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A regular expression matching the assembly names to include in merging.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="ExcludeAssemblies" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A regular expression matching the assembly names to exclude from merging.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="IncludeResources" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A regular expression matching the resource names to include in merging.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="ExcludeResources" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A regular expression matching the resource names to exclude from merging.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="HideImportedTypes" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>A switch to control whether the imported types are hidden (made private) or keep their visibility unchanged. Default is 'true'</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="NamespacePrefix" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A string that is used as prefix for the namespace of the imported types.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="FullImport" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>A switch to control whether to import the full assemblies or only the referenced types. Default is 'false'</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="CompactMode" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>A switch to enable compacting of the target assembly by skipping properties, events and unused methods. Default is 'false'</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:all> | ||
<xs:attribute name="VerifyAssembly" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="VerifyIgnoreCodes" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>A comma-separated list of error codes that can be safely ignored in assembly verification.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="GenerateXsd" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>'false' to turn off automatic generation of the XML Schema file.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:schema> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Fody" version="6.8.1" targetFramework="net472" developmentDependency="true" /> | ||
<package id="ILMerge.Fody" version="1.24.0" targetFramework="net472" /> | ||
<package id="Samboy063.Tomlet" version="5.4.0" targetFramework="net472" /> | ||
</packages> |