Hi, unfortunately this isnt something that we can address at this time. The issue is that "<Include … Action="None"/>" on a ruleset basically means skip loading this ruleset, but since it is already loaded earlier in the hierarchy, it just stays there.
In Roslyn any suppressed ruleset (or "None" as that translates into suppressed) is not loaded. With that present on the external ruleset, the content of the referenced ruleset (in this case InnoGames.ruleset ) is not evaluated but skipped. All the rules in that ruleset are thus not loaded again.
There is however a workaround we can suggest to try which would be Referencing the ruleset with any other Action than "None".
E.g. `<Include Path="../InnoGames.ruleset" Action="Hidden"/>` will suppress it and so will `<IncludeAll Action="None"/>`.
Please try if that workaround works for you and if not do let us know please.