Skip to content

Instantly share code, notes, and snippets.

@kbaesler
Created July 27, 2015 20:40
Show Gist options
  • Save kbaesler/4abbca0dd1c32e8baa3c to your computer and use it in GitHub Desktop.
Save kbaesler/4abbca0dd1c32e8baa3c to your computer and use it in GitHub Desktop.
<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">
<s:Boolean x:Key="/Default/CodeEditing/GenerateMemberBody/CopyXmlDocumentation/@EntryValue">True</s:Boolean>
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantBaseQualifier/@EntryIndexedValue">DO_NOT_SHOW</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=RedundantThisQualifier/@EntryIndexedValue">DO_NOT_SHOW</s:String>
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=SuggestUseVarKeywordEvident/@EntryIndexedValue">HINT</s:String>
<s:String x:Key="/Default/CodeStyle/CodeCleanup/Profiles/=Reformat_002FCleanup/@EntryIndexedValue"></s:String>
<s:Boolean x:Key="/Default/CodeStyle/CodeCleanup/Profiles/=Reformat_002FCleanup/@EntryIndexRemoved">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/CodeCleanup/Profiles/=Sempra_0020Energy/@EntryIndexedValue">&lt;?xml version="1.0" encoding="utf-16"?&gt;&lt;Profile name="Sempra Energy"&gt;&lt;CSharpFormatDocComments&gt;True&lt;/CSharpFormatDocComments&gt;&lt;CSShortenReferences&gt;True&lt;/CSShortenReferences&gt;&lt;CSReformatCode&gt;True&lt;/CSReformatCode&gt;&lt;CSUseAutoProperty&gt;True&lt;/CSUseAutoProperty&gt;&lt;CSMakeFieldReadonly&gt;True&lt;/CSMakeFieldReadonly&gt;&lt;CSOptimizeUsings&gt;&lt;OptimizeUsings&gt;True&lt;/OptimizeUsings&gt;&lt;EmbraceInRegion&gt;False&lt;/EmbraceInRegion&gt;&lt;RegionName&gt;&lt;/RegionName&gt;&lt;/CSOptimizeUsings&gt;&lt;CSReorderTypeMembers&gt;True&lt;/CSReorderTypeMembers&gt;&lt;VBFormatDocComments&gt;True&lt;/VBFormatDocComments&gt;&lt;VBReformatCode&gt;True&lt;/VBReformatCode&gt;&lt;VBShortenReferences&gt;True&lt;/VBShortenReferences&gt;&lt;VBOptimizeImports&gt;True&lt;/VBOptimizeImports&gt;&lt;/Profile&gt;</s:String>
<s:String x:Key="/Default/CodeStyle/CodeCleanup/Profiles/=Sempra_0020Energy_0020_007C_0020Utilities/@EntryIndexedValue"></s:String>
<s:Boolean x:Key="/Default/CodeStyle/CodeCleanup/Profiles/=Sempra_0020Energy_0020_007C_0020Utilities/@EntryIndexRemoved">True</s:Boolean>
<s:String x:Key="/Default/CodeStyle/CodeCleanup/Profiles/=Smart_0020Infrastructure_0020_007C_0020Utilities/@EntryIndexedValue"></s:String>
<s:Boolean x:Key="/Default/CodeStyle/CodeCleanup/Profiles/=Smart_0020Infrastructure_0020_007C_0020Utilities/@EntryIndexRemoved">True</s:Boolean>
<s:Int64 x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/BLANK_LINES_BETWEEN_USING_GROUPS/@EntryValue">1</s:Int64>
<s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_LINES/@EntryValue">False</s:Boolean>
<s:String x:Key="/Default/CodeStyle/CSharpMemberOrderPattern/CustomPattern/@EntryValue">&lt;?xml version="1.0" encoding="utf-8" ?&gt;&#xD;
&#xD;
&lt;!--&#xD;
I. Overall&#xD;
&#xD;
I.1 Each pattern can have &lt;Match&gt;....&lt;/Match&gt; element. For the given type declaration, the pattern with the match, evaluated to 'true' with the largest weight, will be used &#xD;
I.2 Each pattern consists of the sequence of &lt;Entry&gt;...&lt;/Entry&gt; elements. Type member declarations are distributed between entries&#xD;
I.3 If pattern has RemoveAllRegions="true" attribute, then all regions will be cleared prior to reordering. Otherwise, only auto-generated regions will be cleared&#xD;
I.4 The contents of each entry is sorted by given keys (First key is primary, next key is secondary, etc). Then the declarations are grouped and en-regioned by given property&#xD;
&#xD;
II. Available match operands&#xD;
&#xD;
Each operand may have Weight="..." attribute. This weight will be added to the match weight if the operand is evaluated to 'true'.&#xD;
The default weight is 1&#xD;
&#xD;
II.1 Boolean functions:&#xD;
II.1.1 &lt;And&gt;....&lt;/And&gt;&#xD;
II.1.2 &lt;Or&gt;....&lt;/Or&gt;&#xD;
II.1.3 &lt;Not&gt;....&lt;/Not&gt;&#xD;
&#xD;
II.2 Operands&#xD;
II.2.1 &lt;Kind Is="..."/&gt;. Kinds are: class, struct, interface, enum, delegate, type, constructor, destructor, property, indexer, method, operator, field, constant, event, member&#xD;
II.2.2 &lt;Name Is="..." [IgnoreCase="true/false"] /&gt;. The 'Is' attribute contains regular expression&#xD;
II.2.3 &lt;HasAttribute CLRName="..." [Inherit="true/false"] /&gt;. The 'CLRName' attribute contains regular expression&#xD;
II.2.4 &lt;Access Is="..."/&gt;. The 'Is' values are: public, protected, internal, protected-internal, private&#xD;
II.2.5 &lt;Static/&gt;&#xD;
II.2.6 &lt;Abstract/&gt;&#xD;
II.2.7 &lt;Virtual/&gt;&#xD;
II.2.8 &lt;Override/&gt;&#xD;
II.2.9 &lt;Sealed/&gt;&#xD;
II.2.10 &lt;Readonly/&gt;&#xD;
II.2.11 &lt;ImplementsInterface CLRName="..."/&gt;. The 'CLRName' attribute contains regular expression&#xD;
II.2.12 &lt;HandlesEvent /&gt;&#xD;
--&gt;&#xD;
&#xD;
&lt;Patterns xmlns="urn:shemas-jetbrains-com:member-reordering-patterns"&gt;&#xD;
&#xD;
&lt;!--Do not reorder COM interfaces and structs marked by StructLayout attribute--&gt;&#xD;
&lt;Pattern&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;Or Weight="100"&gt;&#xD;
&lt;And&gt;&#xD;
&lt;Kind Is="interface"/&gt;&#xD;
&lt;Or&gt;&#xD;
&lt;HasAttribute CLRName="System.Runtime.InteropServices.InterfaceTypeAttribute"/&gt;&#xD;
&lt;HasAttribute CLRName="System.Runtime.InteropServices.ComImport"/&gt;&#xD;
&lt;/Or&gt;&#xD;
&lt;/And&gt;&#xD;
&lt;HasAttribute CLRName="System.Runtime.InteropServices.StructLayoutAttribute"/&gt;&#xD;
&lt;/Or&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;/Pattern&gt;&#xD;
&#xD;
&lt;!--Special formatting of NUnit test fixture--&gt;&#xD;
&lt;Pattern RemoveAllRegions="true"&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;And Weight="100"&gt;&#xD;
&lt;Kind Is="class"/&gt;&#xD;
&lt;HasAttribute CLRName="NUnit.Framework.TestFixtureAttribute" Inherit="true"/&gt;&#xD;
&lt;/And&gt;&#xD;
&lt;/Match&gt;&#xD;
&#xD;
&lt;!--Setup/Teardow--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;And&gt;&#xD;
&lt;Kind Is="method"/&gt;&#xD;
&lt;Or&gt;&#xD;
&lt;HasAttribute CLRName="NUnit.Framework.SetUpAttribute" Inherit="true"/&gt;&#xD;
&lt;HasAttribute CLRName="NUnit.Framework.TearDownAttribute" Inherit="true"/&gt;&#xD;
&lt;HasAttribute CLRName="NUnit.Framework.FixtureSetUpAttribute" Inherit="true"/&gt;&#xD;
&lt;HasAttribute CLRName="NUnit.Framework.FixtureTearDownAttribute" Inherit="true"/&gt;&#xD;
&lt;/Or&gt;&#xD;
&lt;/And&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Group Region="Setup/Teardown"/&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--All other members--&gt;&#xD;
&lt;Entry/&gt;&#xD;
&#xD;
&lt;!--Test methods--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;And Weight="100"&gt;&#xD;
&lt;Kind Is="method"/&gt;&#xD;
&lt;HasAttribute CLRName="NUnit.Framework.TestAttribute" Inherit="false"/&gt;&#xD;
&lt;/And&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;/Entry&gt;&#xD;
&lt;/Pattern&gt;&#xD;
&#xD;
&lt;!--Default pattern--&gt;&#xD;
&lt;Pattern RemoveAllRegions="true"&gt;&#xD;
&#xD;
&lt;!-- delegate--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;Kind Is="delegate"/&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Delegates"/&gt;&#xD;
&lt;/Entry&gt; &#xD;
&#xD;
&lt;!-- enum--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;Kind Is="enum"/&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Enumerations"/&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--constants--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;Kind Is="constant"/&gt; &#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Readonly/&gt;&#xD;
&lt;Name/&gt; &#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Constants"/&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--instance fields--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;Kind Is="field"/&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Readonly/&gt;&#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Fields"/&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--constructors. Place static one first--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;Kind Is="constructor"/&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Static/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Constructors"/&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--destructors. Place static one first--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;Kind Is="destructor"/&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Static/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Destructors"/&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!-- events --&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;Kind Is="event"/&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Events"/&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--public properties, indexers--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;And&gt;&#xD;
&lt;Access Is="public"/&gt;&#xD;
&lt;Or&gt;&#xD;
&lt;Kind Is="property"/&gt;&#xD;
&lt;Kind Is="indexer"/&gt;&#xD;
&lt;/Or&gt;&#xD;
&lt;/And&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Readonly/&gt;&#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Public Properties"/&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--internal properties, indexers--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;And&gt;&#xD;
&lt;Access Is="internal"/&gt;&#xD;
&lt;Or&gt;&#xD;
&lt;Kind Is="property"/&gt;&#xD;
&lt;Kind Is="indexer"/&gt;&#xD;
&lt;/Or&gt;&#xD;
&lt;/And&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Readonly/&gt;&#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Internal Properties"/&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--protected-internal properties, indexers--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;And&gt;&#xD;
&lt;Access Is="protected-internal"/&gt;&#xD;
&lt;Or&gt;&#xD;
&lt;Kind Is="property"/&gt;&#xD;
&lt;Kind Is="indexer"/&gt;&#xD;
&lt;/Or&gt;&#xD;
&lt;/And&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Readonly/&gt;&#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Protected Internal Properties"/&gt;&#xD;
&lt;/Entry&gt; &#xD;
&#xD;
&lt;!--protected properties, indexers--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;And&gt;&#xD;
&lt;Access Is="protected"/&gt;&#xD;
&lt;Or&gt;&#xD;
&lt;Kind Is="property"/&gt;&#xD;
&lt;Kind Is="indexer"/&gt;&#xD;
&lt;/Or&gt;&#xD;
&lt;/And&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Readonly/&gt;&#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Protected Properties"/&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--private properties, indexers--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;And&gt;&#xD;
&lt;Access Is="private"/&gt;&#xD;
&lt;Or&gt;&#xD;
&lt;Kind Is="property"/&gt;&#xD;
&lt;Kind Is="indexer"/&gt;&#xD;
&lt;/Or&gt;&#xD;
&lt;/And&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Readonly/&gt;&#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Private Properties"/&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--interface implementations--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;And Weight="100"&gt;&#xD;
&lt;Kind Is="member"/&gt;&#xD;
&lt;ImplementsInterface/&gt;&#xD;
&lt;/And&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;ImplementsInterface Immediate="true"/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group&gt;&#xD;
&lt;ImplementsInterface Immediate="true" Region="${ImplementsInterface} Members"/&gt;&#xD;
&lt;/Group&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--public methods--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;And&gt;&#xD;
&lt;Access Is="public"/&gt;&#xD;
&lt;Kind Is="method"/&gt;&#xD;
&lt;/And&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Readonly/&gt;&#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Public Methods"/&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--internal methods--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;And&gt;&#xD;
&lt;Access Is="internal"/&gt;&#xD;
&lt;Kind Is="method"/&gt;&#xD;
&lt;/And&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Readonly/&gt;&#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Internal Methods"/&gt; &#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--protected-internal methods--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;And&gt;&#xD;
&lt;Access Is="protected-internal"/&gt;&#xD;
&lt;Kind Is="method"/&gt;&#xD;
&lt;/And&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt; &#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Protected Internal Methods"/&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--protected methods--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;And&gt;&#xD;
&lt;Access Is="protected"/&gt;&#xD;
&lt;Kind Is="method"/&gt;&#xD;
&lt;/And&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt; &#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Protected Methods"/&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--private methods--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;And&gt;&#xD;
&lt;Access Is="private"/&gt;&#xD;
&lt;Kind Is="method"/&gt;&#xD;
&lt;/And&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt; &#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group Region="Private Methods"/&gt;&#xD;
&lt;/Entry&gt;&#xD;
&#xD;
&lt;!--all other members--&gt;&#xD;
&lt;Entry/&gt;&#xD;
&#xD;
&lt;!--nested types--&gt;&#xD;
&lt;Entry&gt;&#xD;
&lt;Match&gt;&#xD;
&lt;Kind Is="type"/&gt;&#xD;
&lt;/Match&gt;&#xD;
&lt;Sort&gt;&#xD;
&lt;Name/&gt;&#xD;
&lt;/Sort&gt;&#xD;
&lt;Group&gt;&#xD;
&lt;Name Region="Nested Type: ${Name}"/&gt;&#xD;
&lt;/Group&gt;&#xD;
&lt;/Entry&gt;&#xD;
&lt;/Pattern&gt;&#xD;
&#xD;
&lt;/Patterns&gt;&#xD;
</s:String>
<s:String x:Key="/Default/CodeStyle/CSharpMemberOrderPattern/LayoutType/@EntryValue">CustomLayout</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=CU/@EntryIndexedValue">CU</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=DBMS/@EntryIndexedValue">DBMS</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=EID/@EntryIndexedValue">EID</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=ESRI/@EntryIndexedValue">ESRI</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=GUID/@EntryIndexedValue">GUID</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=ID/@EntryIndexedValue">ID</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=OSA/@EntryIndexedValue">OSA</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=QAQC/@EntryIndexedValue">QAQC</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=Constants/@EntryIndexedValue">&lt;Policy Inspect="True" Prefix="" Suffix="" Style="AA_BB" /&gt;</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateInstanceFields/@EntryIndexedValue">&lt;Policy Inspect="True" Prefix="_" Suffix="" Style="AaBb" /&gt;</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateStaticFields/@EntryIndexedValue">&lt;Policy Inspect="True" Prefix="_" Suffix="" Style="AaBb" /&gt;</s:String>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateBlankLinesAroundFieldToBlankLinesAroundProperty/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment