Łukasz Domeradzki

Results 65 comments of Łukasz Domeradzki

@ahmadnassri I checked the code and various examples, the current code fails at interpreting the semver version because it expects all updates to be semver-compatible. Digest doesn't parse to a...

Also, I'd like to have a config similar to what I have right now in old dependabot, that is: - all git submodules updates are merged - only minor semver...

Also, I believe that even without custom matches, the script should not throw at semver parsing, as it does right now. The ideal solution would be detecting that this is...

I was just about to post this. Current version of 5.0.0 calls this example code of mine as a possibility of missing `ConfigureAwait(false)`: ```cs await using FileStream fileStream = File.Open(sentryFilePath,...

Thanks a lot, that did the trick! Leaving the answer for people that might stumble upon this as well: ```cs FileStream fileStream = File.Open(sentryFilePath, FileMode.OpenOrCreate, FileAccess.ReadWrite); await using (fileStream.ConfigureAwait(false)) {...

Is there any chance ILRepack can actually work OOB with those localized DLLs without unnecessary hacky code changes? I'm currently using **[Fody.Costura](https://github.com/Fody/Costura)** + **[Resource.Embedder](https://gitlab.com/MarcStan/Resource.Embedder)** for merging normal dlls and satellite...

It could probably work, but Resource.Embedder didn't work on Linux/Mono last time I tried, and in fact, I love ILRepack for being able to work on both Windows and Mono...

@rafaelgomesxyz https://github.com/JustArchi/ESGST/commit/203d7dcde9777a427feee9100e482a014b489b61 for this one.

@rafaelgomesxyz https://github.com/JustArchi/ESGST/commit/5183f5c3c0af9d6954de689a0296ae539d24b40e + https://github.com/JustArchi/ESGST/commit/8d42dff14698ed8504ac6d57ba79f9edbf3f74ea for this issue.

And you might also want https://github.com/JustArchi/ESGST/commit/a3b671f29656d1300e4f550cc4ddf4dc91ec29fa along with it.