Björn Hellander
Björn Hellander
First off: This is a seriously cool project! I started tinkering with one of the samples and ended up with this not-working-as-I-expected piece of code. Having zero experience in shaders...
Repro code: ``` Assert.Same(17, 18); Assert.Same(17, null); Assert.Same(null, 17); ``` Expected result: xUnit2005 triggered for all asserts, since at least one of the values are of value type. Actual result:...
Fixes https://github.com/xunit/xunit/issues/2395 The old code in WalkDownImplicitConversions checked `IOperation.IsImplicit` instead of `IConversionOperation.Conversion.IsImplicit`, which apparently was not the same thing.
Hi! I am having issues navigating to test cases through the Test Explorer in this repository: https://github.com/DotNetAnalyzers/StyleCopAnalyzers It has a test project per c# language version and inherits test cases...
Hi! I am writing some code fix tests in which I want to have shared files between projects and wonder if you can offer some help on how to do...
Would be nice with a diagnostic when Assert.IsNotNull and Assert.IsNull is called with a value type other than Nullable, since those asserts will either always pass or always fail. AB#2112219
**Version Used**: Visual Studio 17.11.3 **Steps to Reproduce**: StyleCop.Analyzers received this bug report: https://github.com/DotNetAnalyzers/StyleCopAnalyzers/issues/3887 @AArnott experienced a malfunctioning StyleCop.Analyzers rule. While debugging this it seemed that the analyzer did not...
I get this exception when running analyzer tests against Roslyn 2.3.2: System.TypeLoadException: 'Method 'RegisterOperationBlockStartActionInternal' on type 'CustomAnalysisContextImpl' from assembly 'codeAnalysisProxies_af0f5d57-e957-457a-bcb7-9146cf3acf3b, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' is overriding a method that is not...