matode
Results
2
issues of
matode
If you have code like this: ```csharp var actualValue = Foo.GetValue(); Assert.That(actualValue, Is.EqualTo(expectedValue).After(Timeout, PollInterval), "Error message"); ``` Changing to ```csharp var actualValue = Foo.GetValue(); Assert.That(() => actualValue, Is.EqualTo(expectedValue).After(Timeout, PollInterval), "Error...
When I create a plugin for custom C# analyzers, the static folder within the jar file contains a zip file with all dlls. However the zip file is not OS...