Joseph Musser
Joseph Musser
Yes! Or however https://github.com/nunit/nunit.analyzers already determines that a method is a test method or that a class is a test fixture.
In working scenario 1 (System.ValueTuple 4.6.1, TaskTupleAwaiter 1.0.1), the Csc MSBuild task references include a netstandard2.0 build of TaskTupleAwaiter.dll and the netstandard.dll facade. In working scenario 2 (System.ValueTuple 4.5.0, TaskTupleAwaiter...
Unlike 4.3.1 and 4.5.0, System.ValueTuple 4.6.1 includes an empty net471 folder which is why no reference assembly is added. This may be a legitimate package authoring bug in System.ValueTuple 4.6.1....
I reported the System.ValueTuple defect at https://github.com/dotnet/maintenance-packages/issues/243.
> Both of these do not allow for a property or indexer with a ref get accessor For my benefit, why do they not allow for a ref get accessor?...
I believe a ref get accessor is a special case of a get accessor- in particular, a ref get accessor is a get accessor whose return type is a by-ref...
In today's meeting, we decided we liked an approach where assignments and reads of properties and indexers are defined once, handling the details of ref vs non-ref properties. Everything that...
While compiling a list of references to consider, I am skipping places like the following, where the value of a ref-typed property is the ref address itself. That ref address...
Found a couple of English grammar issues: https://github.com/dotnet/csharpstandard/blob/62c498fb2a0c1a2e7bf059819a606e56f4eadb3b/standard/classes.md?plain=1#L3418
Edit: never mind, I see the section is split to refer to different grammar productions. ~~Side issue, I think~~ > For `abstract` and `extern` non-ref-valued properties, any *accessor_body* for each...