Bruno Juchli
Bruno Juchli
Hi Given the following code: ``` public static class ForEachExtensions { public static void ForEach(this IEnumerable enumerable, Action action) { Guard.That(() => enumerable).IsNotNull(); Guard.That(() => action).IsNotNull(); foreach (T item in...
When I get a copy of the source and build NotifyIconWpf.Sample.ShowCases the standard OS balloon tips don't show:  It doesn't matter whether I choose "Show as Info", "Show as...
#### Investigative information - Timestamp: 2022-09-27T13:55:45.1227038Z - Function App version: 4.10.4.4 - Function App name: sm-3rdparty-import-functions-test - Function name(s) (as appropriate): - Zaptec-StartImportPartition0 ... Zaptec-StartImportPartition59 (again, 60 of those, too)...
#### Investigative information https://github.com/Azure/azure-functions-host/wiki/Investigating-and-reporting-issues-with-timer-triggered-functions-not-firing Contains a link to https://social.msdn.microsoft.com/Forums/en-US/home?forum=AzureFunctions Which shows a warning > This forum has migrated to [Microsoft Q&A](https://docs.microsoft.com/en-us/answers/products/?WT.mc_id=msdnredirect-web-msdn). Visit [Microsoft Q&A](https://docs.microsoft.com/answers/products/?WT.mc_id=msdnredirect-web-msdn) to post new questions. ---- I...
### Background and motivation Some of our records don't have properties, some do. We like to use member-comparison by default, mainly because this enables much improved error messages. However, for...
### Problem Currently [megalinter Sqlfluff integration](https://megalinter.io/latest/descriptors/sql_sqlfluff/) does not support fixing of files. I have tried different combinations, like: #### passing `fix` as argument SQL_SQLFLUFF_ARGUMENTS: "fix" SQL_SQLFLUFF_CLI_LINT_MODE: "file" => Error says...
Fixes link to https://unicode-org.github.io/icu/userguide/format_parse/messages/ The old link redirects to https://unicode-org.github.io/icu/userguide/, so deep-linking to the correct page is broken. I hope the link I changed to is the correct one?
This change **fixes** support for collection expressions like: ```C# Arr arr = [1, 5, 17]; Lst lst = [5, ..arr, 19]; ``` for - `Arr` - `Lst` - `Seq` -...
Enable support for StaticProxy.Fody in scenarios where the user does not use a DI Container. Ideas / Alternatives: - Add an alternative to `new` by something like `StaticProxy.New(() => new...
Allow proxying 3rd party assembly types. - specify mechanism to define which types to proxy and how to retrieve these - maybe more along the lines of Castle DynamicProxy: Request...