Christopher-Marcel Esser
Christopher-Marcel Esser
`AssemblyNameRegex` in the `FodyWeavers.xml` files should be restricting the assemblies the particular configuration file affects. Currently the setting just gets merged across files, but it makes more sense to allow...
Looks like the dotnet team decided auto-generated code needs to explicitly opt-in into nullable reference types: ```c# public partial class TestClass { public string? SomeTestProperty { get; } } ```...
## Describe the bug DiKTat is logging an error when the configured `srcDirectories` do not all end with `[Mm]ain`: https://github.com/saveourtool/diktat/blob/2ae350021a562c2a2ae24d3d906ef0e123b843bb/diktat-common/src/main/kotlin/org/cqfn/diktat/common/config/rules/RulesConfigReader.kt#L167 ## Expected behavior Configuring such source sets should not result...
It seems like the `NSBlock` was garbage collected before the task completed. That's because the method elided the `async`/`await` keywords. For more information see https://blog.stephencleary.com/2016/12/eliding-async-await.html.
The title property is non-nullable on the native side, so we cannot provide it a null `NSString` without crashing - the following is printed to the console: ``` *** Assertion...
Thanks a lot for the fantastic Gradle resources! I'm moving from a single `build.gradle.kts` file to a proper setup, primarily to ensure a growing team has a better time building...
When running `assembleDebug`, I'm getting the following warning: > > Task :hidden-apis:kaptDebugKotlin [WARN] Incremental annotation processing requested, but support is disabled because the following processors are not incremental: dev.rikka.tools.refine.RefineProcessor (DYNAMIC).
By using ~Xamarin.Mac~ .NET for macOS, we can call native macOS APIs via the .NET bindings Microsoft maintains. These changes fix at least one issue in which a native object...
For users who prefer a known host domain, this change allows customizing it.
Hello! Thanks for open-sourcing this library. The features added on top of Paho look great! Are there any plans to support MQTT v5?