tom-englert
tom-englert
Fix #10 to be able to use it with the latest versions of Fody.
Calling `ModuleDefinition.Write` multiple times generates different outputs. The first output is binary different from all subsequent outputs. This is not a blocking issue, since both outputs seem to work fine,...
With the latest changes 79b43e8 in `PortablePdb.cs` assemblies modified with cecil can no longer be debugged in VisualStudio when embedded pdbs are used. See https://github.com/Fody/Fody/issues/1110 for details how to reproduce.
Add failing test to reproduce #859
In my projects I use a file named `LICENSE`, without file extension. This file is part of the VSIX container. After signing the extension it is no longer installable; the...
Fix #732: Services without default constructor generate misleading error message
After adding a non-default constructor to a service registered only with `IServiceBuilder.AddService`, the following error message pops up: `add a default constructor to the type, or pass an instance of...
Since I did not find any good documentation on how to do a good test setup, so you can TDD your analyzer.
Writing custom analyzers becomes more and more popular, so testing should be easy to use and to customize out of the box Functionality of the testing framework is great, however...