1
1
<wpf : ResourceDictionary xml : space =" preserve" xmlns : x =" http://schemas.microsoft.com/winfx/2006/xaml" xmlns : s =" clr-namespace:System;assembly=mscorlib" xmlns : ss =" urn:shemas-jetbrains-com:settings-storage-xaml" xmlns : wpf =" http://schemas.microsoft.com/winfx/2006/xaml/presentation" >
2
+ <s : String x : Key =" /Default/CodeStyle/CSharpFileLayoutPatterns/Pattern/@EntryValue" >< Patterns xmlns="urn:schemas-jetbrains-com:member-reordering-patterns">
3
+ < TypePattern DisplayName="Non-reorderable types" Priority="99999999">
4
+ < TypePattern.Match>
5
+ < Or>
6
+ < And>
7
+ < Kind Is="Interface" />
8
+ < Or>
9
+ < HasAttribute Name="System.Runtime.InteropServices.InterfaceTypeAttribute" />
10
+ < HasAttribute Name="System.Runtime.InteropServices.ComImport" />
11
+ < /Or>
12
+ < /And>
13
+ < Kind Is="Struct" />
14
+ < HasAttribute Name="System.Runtime.InteropServices.StructLayoutAttribute" />
15
+ < HasAttribute Name="JetBrains.Annotations.NoReorderAttribute" />
16
+ < /Or>
17
+ < /TypePattern.Match>
18
+ < /TypePattern>
19
+
20
+ < TypePattern DisplayName="xUnit.net Test Classes" RemoveRegions="All">
21
+ < TypePattern.Match>
22
+ < And>
23
+ < Kind Is="Class" />
24
+ < HasMember>
25
+ < And>
26
+ < Kind Is="Method" />
27
+ < HasAttribute Name="Xunit.FactAttribute" Inherited="True" />
28
+ < HasAttribute Name="Xunit.TheoryAttribute" Inherited="True" />
29
+ < /And>
30
+ < /HasMember>
31
+ < /And>
32
+ < /TypePattern.Match>
33
+
34
+ < Entry DisplayName="Fields">
35
+ < Entry.Match>
36
+ < And>
37
+ < Kind Is="Field" />
38
+ < Not>
39
+ < Static />
40
+ < /Not>
41
+ < /And>
42
+ < /Entry.Match>
43
+
44
+ < Entry.SortBy>
45
+ < Readonly />
46
+ < Name />
47
+ < /Entry.SortBy>
48
+ < /Entry>
49
+
50
+ < Entry DisplayName="Constructors">
51
+ < Entry.Match>
52
+ < Kind Is="Constructor" />
53
+ < /Entry.Match>
54
+
55
+ < Entry.SortBy>
56
+ < Static/>
57
+ < /Entry.SortBy>
58
+ < /Entry>
59
+
60
+ < Entry DisplayName="Teardown Methods">
61
+ < Entry.Match>
62
+ < And>
63
+ < Kind Is="Method" />
64
+ < ImplementsInterface Name="System.IDisposable" />
65
+ < /And>
66
+ < /Entry.Match>
67
+ < /Entry>
68
+
69
+ < Entry DisplayName="All other members" />
70
+
71
+ < Entry DisplayName="Test Methods" Priority="100">
72
+ < Entry.Match>
73
+ < And>
74
+ < Kind Is="Method" />
75
+ < HasAttribute Name="Xunit.FactAttribute" Inherited="false" />
76
+ < HasAttribute Name="Xunit.TheoryAttribute" Inherited="false" />
77
+ < /And>
78
+ < /Entry.Match>
79
+
80
+ < Entry.SortBy>
81
+ < Name />
82
+ < /Entry.SortBy>
83
+ < /Entry>
84
+ < /TypePattern>
85
+
86
+ < TypePattern DisplayName="NUnit Test Fixtures" RemoveRegions="All">
87
+ < TypePattern.Match>
88
+ < And>
89
+ < Kind Is="Class" />
90
+ < Or>
91
+ < HasAttribute Name="NUnit.Framework.TestFixtureAttribute" Inherited="true" />
92
+ < HasAttribute Name="NUnit.Framework.TestFixtureSourceAttribute" Inherited="true" />
93
+ < HasMember>
94
+ < And>
95
+ < Kind Is="Method" />
96
+ < HasAttribute Name="NUnit.Framework.TestAttribute" Inherited="false" />
97
+ < HasAttribute Name="NUnit.Framework.TestCaseAttribute" Inherited="false" />
98
+ < HasAttribute Name="NUnit.Framework.TestCaseSourceAttribute" Inherited="false" />
99
+ < /And>
100
+ < /HasMember>
101
+ < /Or>
102
+ < /And>
103
+ < /TypePattern.Match>
104
+
105
+ < Entry DisplayName="Setup/Teardown Methods">
106
+ < Entry.Match>
107
+ < And>
108
+ < Kind Is="Method" />
109
+ < Or>
110
+ < HasAttribute Name="NUnit.Framework.SetUpAttribute" Inherited="true" />
111
+ < HasAttribute Name="NUnit.Framework.TearDownAttribute" Inherited="true" />
112
+ < HasAttribute Name="NUnit.Framework.TestFixtureSetUpAttribute" Inherited="true" />
113
+ < HasAttribute Name="NUnit.Framework.TestFixtureTearDownAttribute" Inherited="true" />
114
+ < HasAttribute Name="NUnit.Framework.OneTimeSetUpAttribute" Inherited="true" />
115
+ < HasAttribute Name="NUnit.Framework.OneTimeTearDownAttribute" Inherited="true" />
116
+ < /Or>
117
+ < /And>
118
+ < /Entry.Match>
119
+ < /Entry>
120
+
121
+ < Entry DisplayName="All other members" />
122
+
123
+ < Entry DisplayName="Test Methods" Priority="100">
124
+ < Entry.Match>
125
+ < And>
126
+ < Kind Is="Method" />
127
+ < HasAttribute Name="NUnit.Framework.TestAttribute" Inherited="false" />
128
+ < HasAttribute Name="NUnit.Framework.TestCaseAttribute" Inherited="false" />
129
+ < HasAttribute Name="NUnit.Framework.TestCaseSourceAttribute" Inherited="false" />
130
+ < /And>
131
+ < /Entry.Match>
132
+
133
+ < Entry.SortBy>
134
+ < Name />
135
+ < /Entry.SortBy>
136
+ < /Entry>
137
+ < /TypePattern>
138
+
139
+ < TypePattern DisplayName="Default Pattern">
140
+ < Entry DisplayName="Public Delegates" Priority="100">
141
+ < Entry.Match>
142
+ < And>
143
+ < Access Is="Public" />
144
+ < Kind Is="Delegate" />
145
+ < /And>
146
+ < /Entry.Match>
147
+
148
+ < Entry.SortBy>
149
+ < Name />
150
+ < /Entry.SortBy>
151
+ < /Entry>
152
+
153
+ < Entry DisplayName="Public Enums" Priority="100">
154
+ < Entry.Match>
155
+ < And>
156
+ < Access Is="Public" />
157
+ < Kind Is="Enum" />
158
+ < /And>
159
+ < /Entry.Match>
160
+
161
+ < Entry.SortBy>
162
+ < Name />
163
+ < /Entry.SortBy>
164
+ < /Entry>
165
+
166
+ < Entry DisplayName="Static Fields and Constants">
167
+ < Entry.Match>
168
+ < Or>
169
+ < Kind Is="Constant" />
170
+ < And>
171
+ < Kind Is="Field" />
172
+ < Static />
173
+ < /And>
174
+ < /Or>
175
+ < /Entry.Match>
176
+
177
+ < Entry.SortBy>
178
+ < Kind>
179
+ < Kind.Order>
180
+ < DeclarationKind> Constant< /DeclarationKind>
181
+ < DeclarationKind> Field< /DeclarationKind>
182
+ < /Kind.Order>
183
+ < /Kind>
184
+ < /Entry.SortBy>
185
+ < /Entry>
186
+
187
+ < Entry DisplayName="Fields">
188
+ < Entry.Match>
189
+ < And>
190
+ < Kind Is="Field" />
191
+ < Not>
192
+ < Static />
193
+ < /Not>
194
+ < /And>
195
+ < /Entry.Match>
196
+
197
+ < Entry.SortBy>
198
+ < Readonly />
199
+ < Name />
200
+ < /Entry.SortBy>
201
+ < /Entry>
202
+
203
+ < Entry DisplayName="Events">
204
+ < Entry.Match>
205
+ < Kind Is="Event" />
206
+ < /Entry.Match>
207
+
208
+ < Entry.SortBy>
209
+ < Name />
210
+ < /Entry.SortBy>
211
+ < /Entry>
212
+
213
+ < Entry DisplayName="Constructors">
214
+ < Entry.Match>
215
+ < Kind Is="Constructor" />
216
+ < /Entry.Match>
217
+
218
+ < Entry.SortBy>
219
+ < Static/>
220
+ < /Entry.SortBy>
221
+ < /Entry>
222
+
223
+ < Entry DisplayName="Properties, Indexers">
224
+ < Entry.Match>
225
+ < Or>
226
+ < Kind Is="Property" />
227
+ < Kind Is="Indexer" />
228
+ < /Or>
229
+ < /Entry.Match>
230
+ < /Entry>
231
+
232
+ < Entry DisplayName="Interface Implementations" Priority="100">
233
+ < Entry.Match>
234
+ < And>
235
+ < Kind Is="Member" />
236
+ < ImplementsInterface />
237
+ < /And>
238
+ < /Entry.Match>
239
+
240
+ < Entry.SortBy>
241
+ < ImplementsInterface Immediate="true" />
242
+ < /Entry.SortBy>
243
+ < /Entry>
244
+
245
+ < Entry DisplayName="All other members" />
246
+
247
+ < Entry DisplayName="Nested Types">
248
+ < Entry.Match>
249
+ < Kind Is="Type" />
250
+ < /Entry.Match>
251
+ < /Entry>
252
+ < /TypePattern>
253
+ < /Patterns>
254
+ </s : String >
2
255
<s : Boolean x : Key =" /Default/UserDictionary/Words/=serdes/@EntryIndexedValue" >True</s : Boolean ></wpf : ResourceDictionary >
0 commit comments