| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796 |
- <?xml version="1.0" encoding="utf-16"?>
- <Patterns xmlns="urn:schemas-jetbrains-com:member-reordering-patterns">
- <TypePattern DisplayName="Non-reorderable types">
- <TypePattern.Match>
- <Or>
- <And>
- <Kind Is="Interface" />
- <Or>
- <HasAttribute Name="System.Runtime.InteropServices.InterfaceTypeAttribute" />
- <HasAttribute Name="System.Runtime.InteropServices.ComImport" />
- </Or>
- </And>
- <Kind Is="Struct" />
- <HasAttribute Name="JetBrains.Annotations.NoReorderAttribute" />
- <HasAttribute Name="JetBrains.Annotations.NoReorder" />
- </Or>
- </TypePattern.Match>
- </TypePattern>
- <TypePattern DisplayName="xUnit.net Test Classes"
- RemoveRegions="All">
- <TypePattern.Match>
- <And>
- <Kind Is="Class" />
- <HasMember>
- <And>
- <Kind Is="Method" />
- <HasAttribute Name="Xunit.FactAttribute"
- Inherited="True" />
- <HasAttribute Name="Xunit.TheoryAttribute"
- Inherited="True" />
- </And>
- </HasMember>
- </And>
- </TypePattern.Match>
- <Entry DisplayName="Setup/Teardown Methods">
- <Entry.Match>
- <Or>
- <Kind Is="Constructor" />
- <And>
- <Kind Is="Method" />
- <ImplementsInterface Name="System.IDisposable" />
- </And>
- </Or>
- </Entry.Match>
- <Entry.SortBy>
- <Kind Order="Constructor" />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="All other members" />
- <Entry DisplayName="Test Methods">
- <Entry.Match>
- <And>
- <Kind Is="Method" />
- <HasAttribute Name="Xunit.FactAttribute" />
- <HasAttribute Name="Xunit.TheoryAttribute" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Name />
- </Entry.SortBy>
- </Entry>
- </TypePattern>
- <TypePattern DisplayName="StyleCop">
- <TypePattern.Match>
- <Or>
- <Kind Is="Class" />
- <Kind Is="Struct" />
- <Kind Is="Interface" />
- </Or>
- </TypePattern.Match>
- <Entry DisplayName="Public Constants">
- <Entry.Match>
- <And>
- <Kind Is="Constant" />
- <Access Is="Public" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Internal Constants">
- <Entry.Match>
- <And>
- <Kind Is="Constant" />
- <Access Is="Internal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="ProtectedInternal Constants">
- <Entry.Match>
- <And>
- <Kind Is="Constant" />
- <Access Is="ProtectedInternal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Protected Constants">
- <Entry.Match>
- <And>
- <Kind Is="Constant" />
- <Access Is="Protected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="PrivateProtected Constants">
- <Entry.Match>
- <And>
- <Kind Is="Constant" />
- <Access Is="PrivateProtected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Private Constants">
- <Entry.Match>
- <And>
- <Kind Is="Constant" />
- <Access Is="Private" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Public Fields">
- <Entry.Match>
- <And>
- <Kind Is="Field" />
- <Access Is="Public" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Internal Fields">
- <Entry.Match>
- <And>
- <Kind Is="Field" />
- <Access Is="Internal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="ProtectedInternal Fields">
- <Entry.Match>
- <And>
- <Kind Is="Field" />
- <Access Is="ProtectedInternal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Protected Fields">
- <Entry.Match>
- <And>
- <Kind Is="Field" />
- <Access Is="Protected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="PrivateProtected Fields">
- <Entry.Match>
- <And>
- <Kind Is="Field" />
- <Access Is="PrivateProtected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Private Fields">
- <Entry.Match>
- <And>
- <Kind Is="Field" />
- <Access Is="Private" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Static Constructor">
- <Entry.Match>
- <And>
- <Kind Is="Constructor" />
- <Static />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Public Constructors">
- <Entry.Match>
- <And>
- <Kind Is="Constructor" />
- <Access Is="Public" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Internal Constructors">
- <Entry.Match>
- <And>
- <Kind Is="Constructor" />
- <Access Is="Internal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="ProtectedInternal Constructors">
- <Entry.Match>
- <And>
- <Kind Is="Constructor" />
- <Access Is="ProtectedInternal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Protected Constructors">
- <Entry.Match>
- <And>
- <Kind Is="Constructor" />
- <Access Is="Protected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="PrivateProtected Constructors">
- <Entry.Match>
- <And>
- <Kind Is="Constructor" />
- <Access Is="PrivateProtected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Private Constructors">
- <Entry.Match>
- <And>
- <Kind Is="Constructor" />
- <Access Is="Private" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Destructor">
- <Entry.Match>
- <Kind Is="Destructor" />
- </Entry.Match>
- </Entry>
- <Entry DisplayName="Public Delegates">
- <Entry.Match>
- <And>
- <Kind Is="Delegate" />
- <Access Is="Public" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Internal Delegates">
- <Entry.Match>
- <And>
- <Kind Is="Delegate" />
- <Access Is="Internal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="ProtectedInternal Delegates">
- <Entry.Match>
- <And>
- <Kind Is="Delegate" />
- <Access Is="ProtectedInternal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Protected Delegates">
- <Entry.Match>
- <And>
- <Kind Is="Delegate" />
- <Access Is="Protected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="PrivateProtected Delegates">
- <Entry.Match>
- <And>
- <Kind Is="Delegate" />
- <Access Is="PrivateProtected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Private Delegates">
- <Entry.Match>
- <And>
- <Kind Is="Delegate" />
- <Access Is="Private" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Public Events">
- <Entry.Match>
- <And>
- <Kind Is="Event" />
- <Access Is="Public" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Internal Events">
- <Entry.Match>
- <And>
- <Kind Is="Event" />
- <Access Is="Internal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="ProtectedInternal Events">
- <Entry.Match>
- <And>
- <Kind Is="Event" />
- <Access Is="ProtectedInternal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Protected Events">
- <Entry.Match>
- <And>
- <Kind Is="Event" />
- <Access Is="Protected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="PrivateProtected Events">
- <Entry.Match>
- <And>
- <Kind Is="Event" />
- <Access Is="PrivateProtected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Private Events">
- <Entry.Match>
- <And>
- <Kind Is="Event" />
- <Access Is="Private" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Public Enums">
- <Entry.Match>
- <And>
- <Kind Is="Enum" />
- <Access Is="Public" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Internal Enums">
- <Entry.Match>
- <And>
- <Kind Is="Enum" />
- <Access Is="Internal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="ProtectedInternal Enums">
- <Entry.Match>
- <And>
- <Kind Is="Enum" />
- <Access Is="ProtectedInternal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Internal Enums">
- <Entry.Match>
- <And>
- <Kind Is="Enum" />
- <Access Is="Internal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Protected Enums">
- <Entry.Match>
- <And>
- <Kind Is="Enum" />
- <Access Is="Protected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="PrivateProtected Enums">
- <Entry.Match>
- <And>
- <Kind Is="Enum" />
- <Access Is="PrivateProtected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Private Enums">
- <Entry.Match>
- <And>
- <Kind Is="Enum" />
- <Access Is="Private" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Public Properties">
- <Entry.Match>
- <And>
- <Or>
- <Kind Is="Property" />
- <Kind Is="Autoproperty" />
- </Or>
- <Access Is="Public" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Internal Properties">
- <Entry.Match>
- <And>
- <Or>
- <Kind Is="Property" />
- <Kind Is="Autoproperty" />
- </Or>
- <Access Is="Internal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="ProtectedInternal Properties">
- <Entry.Match>
- <And>
- <Or>
- <Kind Is="Property" />
- <Kind Is="Autoproperty" />
- </Or>
- <Access Is="ProtectedInternal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Protected Properties">
- <Entry.Match>
- <And>
- <Or>
- <Kind Is="Property" />
- <Kind Is="Autoproperty" />
- </Or>
- <Access Is="Protected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="PrivateProtected Properties">
- <Entry.Match>
- <And>
- <Or>
- <Kind Is="Property" />
- <Kind Is="Autoproperty" />
- </Or>
- <Access Is="PrivateProtected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Private Properties">
- <Entry.Match>
- <And>
- <Or>
- <Kind Is="Property" />
- <Kind Is="Autoproperty" />
- </Or>
- <Access Is="Private" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Indexers">
- <Entry.Match>
- <Kind Is="Indexer" />
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Public Methods">
- <Entry.Match>
- <And>
- <Kind Is="Method" />
- <Access Is="Public" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Internal Methods">
- <Entry.Match>
- <And>
- <Kind Is="Method" />
- <Access Is="Internal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="ProtectedInternal Methods">
- <Entry.Match>
- <And>
- <Kind Is="Method" />
- <Access Is="ProtectedInternal" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Protected Methods">
- <Entry.Match>
- <And>
- <Kind Is="Method" />
- <Access Is="Protected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="PrivateProtected Methods">
- <Entry.Match>
- <And>
- <Kind Is="Method" />
- <Access Is="PrivateProtected" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Private Methods">
- <Entry.Match>
- <And>
- <Kind Is="Method" />
- <Access Is="Private" />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- <Name />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Structs">
- <Entry.Match>
- <Kind Is="Struct" />
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Classes">
- <Entry.Match>
- <Kind Is="Class" />
- </Entry.Match>
- <Entry.SortBy>
- <Access />
- <Static />
- <Readonly />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="All other members" />
- <Entry DisplayName="Interface Implementations">
- <Entry.Match>
- <And>
- <Kind Is="Member" />
- <ImplementsInterface />
- </And>
- </Entry.Match>
- <Entry.SortBy>
- <ImplementsInterface Immediate="True" />
- </Entry.SortBy>
- </Entry>
- <Entry DisplayName="Nested Types">
- <Entry.Match>
- <Kind Is="Type" />
- </Entry.Match>
- </Entry>
- </TypePattern>
- </Patterns>
|