Silence IDE0290.
This rule recommends use of primary constructors. Apply the suggestions on simple POCOs, adjusting some to readonly/structs/records at the same time. For more complex classes, the use of primary constructors is more distracting than helpful, so silence the rule. IDEs can still offer fixes for using primary constructors, but it will not show up as a build issue.
This commit is contained in:
committed by
Gustas Kažukauskas
parent
3de6a5fd5a
commit
36660b89e9
@@ -74,17 +74,7 @@ namespace OpenRA.Mods.Common.Graphics
|
||||
}
|
||||
}
|
||||
|
||||
public struct SpriteSequenceField<T>
|
||||
{
|
||||
public string Key;
|
||||
public T DefaultValue;
|
||||
|
||||
public SpriteSequenceField(string key, T defaultValue)
|
||||
{
|
||||
Key = key;
|
||||
DefaultValue = defaultValue;
|
||||
}
|
||||
}
|
||||
public readonly record struct SpriteSequenceField<T>(string Key, T DefaultValue);
|
||||
|
||||
[Desc("Generic sprite sequence implementation, mostly unencumbered with game- or artwork-specific logic.")]
|
||||
public class DefaultSpriteSequence : ISpriteSequence
|
||||
|
||||
Reference in New Issue
Block a user