-
Maybe this is useful for others. We are in the process of migrating 50 repositories from NUnit 3.x to 4.x and we are doing a step by step approach by first referencing the analyzer, fix the analyzer s…
-
#3301 brings up the fact that Partial Trust is no longer supported in .NET Core and conflicts with `HandleProcessCorruptedStateExceptions` in the full framework. This and other changes make me think t…
-
Unable to generate .feature.cs files in classic style project - error is displayed in output:
specflow.tools.msbuild.generation\2.4.1\build\SpecFlow.Tools.MsBuild.Generation.targets(72,5): error : Ob…
glyad updated
4 years ago
-
There's a fair amount of things like string concatenation in loops and various other things related to relatively simple string operations that are costly, sprinkled around both old and new code.
T…
-
Currently CS8602 (Dereference of possibly null reference) is triggered for nullable properties in linq expressions, even though no NRE possible when query is executed on DB side.
Example 1 (Linq)…
-
### Version
1.47.0
### Steps to reproduce
1. Create ApiDriver class as per Driver pattern:
using Microsoft.Playwright;
namespace NodeExeNotDisposed
{
public class ApiDriver : IDis…
-
### Issue
The package stats page https://www.nuget.org/stats/packages attempts to show the top 100 community packages. However many packages are distributed in groups, where if one of the popular pac…
-
Upgrading from NUnit 4.1.0 to 4.2.0 in a .NET Framework project causes a `System.IO.FileNotFoundException` of `System.Buffers` at runtime, when asserting equality on any type after the `StreamsCompare…
-
C# 7.0 added support for [ref returns](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/ref-returns). I tried to mock the value of one such method via `.Returns`, b…
-
We have internal Assert functions that do multiple separate NUnit Asserts internally.
Main purpose is to compare instance of types that don't override/implement an Equals method.
E.g.:
```csharp
…