Remove unused dependencies and code#920
Merged
albertospelta merged 4 commits intomainfrom Mar 2, 2026
Merged
Conversation
Deleted Antlr4.Runtime.dll and TOMWrapper.dll from the project and removed their references from Bravo.csproj to clean up unused dependencies.
The BPA functionality is not currently implemented, and the existing code was obsolete and unused. Keeping it in the repository added unnecessary complexity. The BPA feature will be reintroduced once the functionality is properly implemented and ready for integration.
Added launchBrowser, launchUrl, and applicationUrl to the Bravo profile in launchSettings.json to control browser launch behavior, set the default Swagger UI route, and specify the development server URL.
Explicitly set NuGet.org as the sole package source and add packageSourceMapping to ensure all packages are restored from NuGet.org, improving source control and clarity.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request removes the entire
DynamicLinqextension from thesrc/Infrastructure/Extensions/DynamicLinqdirectory, including all related classes for dynamic expression parsing and class generation. Additionally, it updates the NuGet configuration to explicitly map package sources and cleans up unused assembly references in the project file.Removal of DynamicLinq extension:
ClassFactory,DynamicClass,DynamicExpression,DynamicOrdering, andDynamicProperty, effectively removing the ability to create and parse dynamic expressions and classes at runtime. [1] [2] [3] [4] [5]Project and package management updates:
nuget.configto add apackageSourceMappingsection, ensuring all packages are explicitly mapped to thenuget.orgsource.Antlr4.RuntimeandTOMWrapperfromBravo.csproj, likely as part of cleaning up dependencies related to the deletedDynamicLinqcode.