Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

restructure: Group related elements of each core module to maximize cohesion #113

Merged
merged 1 commit into from
Jul 5, 2024

Conversation

MrDave1999
Copy link
Member

@MrDave1999 MrDave1999 commented Jul 5, 2024

Requirements

  • Classes that do not belong to any core module go in "Common".
  • The directory structure of the test project must match the main project.
  • The namespace will remain "YeSql.Net" in order not to introduce a breaking change.

Directory tree

.
└── src/
    ├── Loader/
    │   ├── YeSqlLoader.cs
    │   ├── YeSqlLoader.HelperMethods.cs
    │   ├── YeSqlLoaderException.cs
    │   └── SqlFile.cs
    ├── Parser/
    │   ├── YeSqlParser.cs
    │   ├── YeSqlParser.HelperMethods.cs
    │   ├── YeSqlParserException.cs
    │   └── Line.cs
    ├── Reader/
    │   ├── ISqlCollection.cs
    │   ├── YeSqlDictionary.cs
    │   ├── TagNotFoundException.cs
    │   └── ModelTag.cs
    └── Common/
        ├── Extensions/
        │   └── EnumerableExtensions.cs
        ├── Results/
        │   ├── YeSqlValidationResult.cs
        │   └── ResultOfT.cs
        ├── FormattingMessage.cs
        └── ExceptionMessages.cs

@MrDave1999 MrDave1999 added the restructure Issue or pull request related to project structure label Jul 5, 2024
@MrDave1999 MrDave1999 merged commit d49710e into master Jul 5, 2024
1 check passed
@MrDave1999 MrDave1999 deleted the restructure-1 branch July 5, 2024 23:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
restructure Issue or pull request related to project structure
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant