Jason Bock
Jason Bock
This is old, but....yes, I was referring to Roslyn analyzers, not the validators in Benchmark.NET. Here's another example: ``` [Params("a", false)] public bool HasParams { get; set; } ``` This...
Another one I found is with `[ParamsAllValues]`. If it's used with a type that isn't in [the supported list](https://benchmarkdotnet.org/articles/samples/IntroParamsAllValues.html#sample-introparamsallvalues), it won't work. So if I did this: ``` [ParamsAllValues] public...
OK, one more :) - ``` BenchmarkRunner.Run(); ``` This doesn't fail if you run it, but....I'm guessing a class provided in the generic type parameter should be one that has...
That makes sense. If that debug mode isn't supported and that's documented, that works (and again, we usually don't set that mode anyway, so removing it was fine by us)....
About the .ps1 files, they're needed for projects that use `packages.config`. If you're using the modern SDK style for .csproj files, and you're using `` in the file, you don't...
More details from someone on the Roslyn Discord server... "Old-style projects have been able to use PackageReference instead of packages.config for a very long time now, and there are very...
`ReadOnlyListBase` implements `IReadOnlyListBase`, which derives from `IMobileObject`. The `IsMobileObject()` extension method **should** pick this up, but obviously it's not. That's probably where the problem lies.
The endianness question would affect CSLA right now. It wouldn't be a source generator-specific thing. FWIW I have three repos in flight that use source generators. They have nothing to...
My point is, this serialization idea really isn't doing anything different from what `MobileFormatter` does right now. So `MobileFormatter` would have the same issues if a binary reader/writer is being...
I would assume that's the case currently in CSLA?