mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-07-09 02:16:46 +00:00
Update guides
This commit is contained in:
@@ -320,13 +320,13 @@ This section contains information on project and class organization principles t
|
||||
| `BurnOutSharp` | One file per class. See below for details on subdirectories. |
|
||||
| `BurnOutSharp/External` | One directory per external project. |
|
||||
| `BurnOutSharp/FileType` | One file per file type. |
|
||||
| `BurnOutSharp/Interfaces` | One file per interface. |
|
||||
| `BurnOutSharp/PackerType` | At least one file per packer type. Partial classes allowed. |
|
||||
| `BurnOutSharp/ProtectionType` | At least one file per protection type. Partial classes allowed. |
|
||||
| `BurnOutSharp/Tools` | Two files - one for extension methods and one for utilities. |
|
||||
| `BinaryObjectScanner.ASN1` | Flat directory structure. |
|
||||
| `BinaryObjectScanner.Builders` | One file per executable type. |
|
||||
| `BinaryObjectScanner.Compression` | One directory per compression type. |
|
||||
| `BinaryObjectScanner.Interfaces` | One file per interface. |
|
||||
| `BinaryObjectScanner.Matching` | Flat directory structure. Include interfaces and base classes. |
|
||||
| `BinaryObjectScanner.Models` | One directory per executable type. One file per object model. |
|
||||
| `BinaryObjectScanner.Utilities` | Flat directory structure. |
|
||||
@@ -343,14 +343,14 @@ This section contains information on in-code organization principles that depend
|
||||
| Project | Description |
|
||||
| --- | --- |
|
||||
| `BurnOutSharp` | Varies from file to file. |
|
||||
| `BurnOutSharp/FileType` | `Scan(Scanner, string)`, `Scan(Scanner, Stream, string)`, helper methods. |
|
||||
| `BurnOutSharp/Interfaces` | Methods ordered alphabetically. |
|
||||
| `BurnOutSharp/PackerType` | `IContentCheck` implementations, `INewExecutableCheck` implementations, `IPortableExecutableCheck` implementations, `IPathCheck` implementations, `IScannable` implementations, helper methods. |
|
||||
| `BurnOutSharp/ProtectionType` | `IContentCheck` implementations, `INewExecutableCheck` implementations, `IPortableExecutableCheck` implementations, `IPathCheck` implementations, `IScannable` implementations, helper methods.. |
|
||||
| `BurnOutSharp/FileType` | `IExtractable` implementations, `IScannable` implementations, helper methods. |
|
||||
| `BurnOutSharp/PackerType` | `IContentCheck` implementations, `ILinearExecutableCheck` implementations, `INewExecutableCheck` implementations, `IPortableExecutableCheck` implementations, `IPathCheck` implementations, `IExtractable` implementations, `IScannable` implementations, helper methods. |
|
||||
| `BurnOutSharp/ProtectionType` | `IContentCheck` implementations, `ILinearExecutableCheck` implementations, `INewExecutableCheck` implementations, `IPortableExecutableCheck` implementations, `IPathCheck` implementations, `IExtractable` implementations, `IScannable` implementations, helper methods. |
|
||||
| `BurnOutSharp/Tools` | Methods grouped by function. Regions ordered alphabetically. |
|
||||
| `BinaryObjectScanner.ASN1` | Partial classes suggested for different implmentations. |
|
||||
| `BinaryObjectScanner.Builders` | Two copies of each non-generic method: one for byte arrays and one for Streams. |
|
||||
| `BinaryObjectScanner.Compression` | Varies from file to file. |
|
||||
| `BinaryObjectScanner.Interfaces` | Methods ordered alphabetically. |
|
||||
| `BinaryObjectScanner.Matching` | Varies from file to file. |
|
||||
| `BinaryObjectScanner.Models` | No methods at all, just properties. |
|
||||
| `BinaryObjectScanner.Utilities` | Varies from file to file. |
|
||||
|
||||
Reference in New Issue
Block a user