You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The StyleCop Resharper plugin is removing the generic types in my generic type alias. Even with all rules turned off, when I run the resharper "cleanup" with the only item in the cleanup tasks being the "fix stylecop violations" the cleanup removes the types on my generic alias:
namespace TG.Gateway.Tests.Translator.Victim
{
using ExpectedActionsGenerator = Func<VictimScenario, InboundMessage, IReadOnlyCollection<VictimScenario.ExpectedCrossTrackeeAction>>;
is turned into
namespace TG.Gateway.Tests.Translator.Victim
{
using ExpectedActionsGenerator = Func;
Which causes compilation errors.
If you could reproduce this issue or tell me how to disable this behaviour I'd be very appreciative.
The text was updated successfully, but these errors were encountered:
The StyleCop Resharper plugin is removing the generic types in my generic type alias. Even with all rules turned off, when I run the resharper "cleanup" with the only item in the cleanup tasks being the "fix stylecop violations" the cleanup removes the types on my generic alias:
is turned into
Which causes compilation errors.
If you could reproduce this issue or tell me how to disable this behaviour I'd be very appreciative.
The text was updated successfully, but these errors were encountered: