Bart J.F. De Smet
Bart J.F. De Smet
**Version Used**: Microsoft Visual Studio Enterprise 2022 Version 17.2.4 VisualStudio.17.Release/17.2.4+32602.215 C# Tools 4.2.0-4.22281.5+8d3180e5f00d42f0f0295165f756f368f0cbfa44 **Steps to Reproduce**: ```csharp class Bar { public Qux? Qux { get; } void Foo() { if...
Fixes https://github.com/pmem/syscall_intercept/issues/115.
Referring to the discussion over at the Roslyn repo (https://github.com/dotnet/roslyn/issues/32851), the IDE0060 warning can be raised for unused parameters that are required to match a delegate signature. There's currently no...
Implementation of suggestion in https://github.com/matus-chochlik/ctcache/issues/50.
It'd be useful to have a "read-only" flag for remote caches, similar to `ccache`'s support for a `read-only=true` flag that can be specified on a per-remote basis. See https://ccache.dev/manual/4.9.1.html#_attributes_for_all_backends. Our...
First of all, thanks for the work on `ccache`. We've successfully rolled it out in our development environment, both on local developer machines and in a distributed CI environment (using...
Changes in https://github.com/matus-chochlik/ctcache/issues/50 worked very well for our setup to pull down cache `clang-tidy` results from the remote cache, thus greatly reducing local development time, without pushing back changes to...