Shad Storhaug

Results 300 comments of Shad Storhaug

Yeah, looks like we will need to target `net8.0` to avoid this. Can you be more specific as to which types you are seeing this in?

Maybe I am missing something, but why aren't you using the built-in string comparer (TermOrdValComparer) with reverse support? https://github.com/apache/lucenenet/blob/bed207a81acb7d100a5545dc28eeeb66d35e06ba/src/Lucene.Net.Tests/Search/TestSort.cs#L350-L384 https://github.com/apache/lucenenet/blob/bed207a81acb7d100a5545dc28eeeb66d35e06ba/src/Lucene.Net.Tests/Search/TestSort.cs#L279-L312 If the custom `FieldComparer` is required, your main issue is...

This implementation seems to work in the case of https://github.com/apache/lucenenet/pull/838. ```c# internal static void Sleep(int milliseconds) { long ticks = (long)((Stopwatch.Frequency / (double)1000) * milliseconds); // ticks per millisecond *...

@yysun - Now that .NET 7 is out, we have a framework to support that won't even build in VS 2019, yet I am stuck on VS 2019 until this...

@Dacke, @yysun - I have fixed the menu issue in https://github.com/yysun/git-tools/pull/41. Here is a copy of the VS2022 VSIX that can be used until there is an official release. [VSIXProject2022.zip](https://github.com/yysun/git-tools/files/9991208/VSIXProject2022.zip)

@asine Looks like the paths are all defaulted: https://github.com/yysun/git-tools/blob/49c0eb5cd3f09c8c9487eb4dcb49881718fc952b/GitApi/GitSccOptions.cs#L77-L97 I am not sure how you would override these, but if you can't the quick fix is to ensure Git is...

The default settings also obviously won't work on a Mac.

I have answered a similar question on [StackOverflow with an example](https://stackoverflow.com/a/35536912/181087).

Yes, you are correct that it should fallback. However, there are 2 exceptions: 1. If the neutral culture (e.g. `en/ICU4N.resources.dll`) is not present but a localized version of it (e.g....

I took a look by setting up a new .NET 8 project and noticed some strange behavior. I put 2 projects into a solution, a class library with a package...