Skip to content

Commit

Permalink
Remove Utilities namespace references
Browse files Browse the repository at this point in the history
  • Loading branch information
mnadareski committed Nov 4, 2024
1 parent b8b70a3 commit 9490d06
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions Coding Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,6 @@ This section contains information on project and class organization principles t
| `BinaryObjectScanner/Interfaces` | One file per interface. |
| `BinaryObjectScanner/Packer` | At least one file per packer type. Partial classes allowed. |
| `BinaryObjectScanner/Protection` | At least one file per protection type. Partial classes allowed. |
| `BinaryObjectScanner/Utilities` | Flat directory structure. |
| `Test` | All functionality lives in `Program.cs`. |

If the project or directory you are looking for is not included in the above, please consider it to be outside the context of this document.
Expand All @@ -381,7 +380,6 @@ This section contains information on in-code organization principles that depend
| `BinaryObjectScanner/Interfaces` | Methods ordered alphabetically. |
| `BinaryObjectScanner/Packer` | `IContentCheck` implementations, `ILinearExecutableCheck` implementations, `INewExecutableCheck` implementations, `IPortableExecutableCheck` implementations, `IPathCheck` implementations, `IExtractable` implementations, helper methods. |
| `BinaryObjectScanner/Protection` | `IContentCheck` implementations, `ILinearExecutableCheck` implementations, `INewExecutableCheck` implementations, `IPortableExecutableCheck` implementations, `IPathCheck` implementations, `IExtractable` implementations, helper methods. |
| `BinaryObjectScanner/Utilities` | Varies from file to file. |
| `Test` | New functionality should be added as a combination of a flag with a long and a short form, a new line in the help text, and a new method (if necessary). |

If the project or directory you are looking for is not included in the above, please consider it to be outside the context of this document.
1 change: 0 additions & 1 deletion Developer Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ This is a guide for any developers who wish to research protections, implement n
| `BinaryObjectScanner.Interfaces` | Namespace containing interface definitions for scanning and detection. |
| `BinaryObjectScanner.Packer` | Namespace containing packer scanning definitions. |
| `BinaryObjectScanner.Protection` | Namespace containing protection scanning definitions. |
| `BinaryObjectScanner.Utilities` | Library containing helper and extension methods that don't rely on any other libraries. |
| `Test` | Testing executable that allows for standalone testing of the library. Includes the ability to scan files for protection as well as output executable information. |

## Researching Protections
Expand Down

0 comments on commit 9490d06

Please sign in to comment.