-
Notifications
You must be signed in to change notification settings - Fork 1
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
Update project for initial release #1
base: main
Are you sure you want to change the base?
Conversation
…ve VSIX, fix unit tests and analyser warnings
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR.
I confirmed I was able to run the tests and hit a breakpoint after the changes.
I noticed that Microsoft uses .ruleset
files to group rules together. Since we will have specific rules that will need to be enabled when we upgrade to the next version of Lucene (LuceneDev1000-LuceneDev1004 are all good examples of these) it would be good to be able to group them.
- Default - for general development
- Upgrade - only useful when upgrading Lucene
- Code Search - only useful when searching for complex code patterns that are specific to Lucene's design that are too difficult to do using Find and Replace
I suspect there will be other categories as the project develops.
According to ChatGPT we can use .ruleset
files for this purpose: https://chatgpt.com/share/67cfaeeb-72c4-8005-a530-afb1e27cec94
There is also some other stuff to address. Please see the inline comments.
src/Lucene.Net.CodeAnalysis.Dev.Sample/Lucene.Net.CodeAnalysis.Dev.Sample.csproj
Show resolved
Hide resolved
One thing I forgot about in the review was that since this project will be a private dependency of all of the Lucene.Net projects, it should be strong named to avoid the build warning. Ideally, we would use the same SNK from the lucenenet repo, but I see no issue with copying it here, since it is unlikely we will ever change it. |
@NightOwl888 I split out creating rulesets as apache/lucenenet#1143 Ready for re-review. |
This PR updates the project in preparation for our initial release under the Apache GitHub organization. It includes: