<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:String x:Key="/Default/CodeEditing/GenerateMemberBody/MethodImplementationKind/@EntryValue">ReturnDefaultValue</s:String> <s:Boolean x:Key="/Default/CodeInspection/ExcludedFiles/FileMasksToSkip/=_002A_002Emin_002Ejs/@EntryIndexedValue">True</s:Boolean> <s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpCodeStyle/APPLY_ON_COMPLETION/@EntryValue">True</s:Boolean> <s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpCodeStyle/ThisQualifier/INSTANCE_MEMBERS_QUALIFY_MEMBERS/@EntryValue">15</s:String> <s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_ATTRIBUTE_STYLE/@EntryValue">SEPARATE</s:String> <s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_FIXED_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String> <s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_FOR_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String> <s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_FOREACH_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String> <s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_IFELSE_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String> <s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_USING_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String> <s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/FORCE_WHILE_BRACES_STYLE/@EntryValue">ALWAYS_ADD</s:String> <s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/INDENT_NESTED_FIXED_STMT/@EntryValue">True</s:Boolean> <s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/INDENT_NESTED_USINGS_STMT/@EntryValue">True</s:Boolean> <s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/PLACE_FIELD_ATTRIBUTE_ON_SAME_LINE/@EntryValue">False</s:Boolean> <s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/PLACE_SIMPLE_ACCESSOR_ON_SINGLE_LINE/@EntryValue">False</s:Boolean> <s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/PLACE_WHILE_ON_NEW_LINE/@EntryValue">True</s:Boolean> <s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/REDUNDANT_THIS_QUALIFIER_STYLE/@EntryValue">ALWAYS_USE</s:String> <s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_AFTER_TYPECAST_PARENTHESES/@EntryValue">False</s:Boolean> <s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_AROUND_MULTIPLICATIVE_OP/@EntryValue">True</s:Boolean> <s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/SPACE_BEFORE_TYPEOF_PARENTHESES/@EntryValue">False</s:Boolean> <s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/STICK_COMMENT/@EntryValue">False</s:Boolean> <s:Boolean x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_LINES/@EntryValue">False</s:Boolean> <s:String x:Key="/Default/CodeStyle/CodeFormatting/CSharpFormat/WRAP_LINQ_EXPRESSIONS/@EntryValue">CHOP_ALWAYS</s:String> <s:String x:Key="/Default/CodeStyle/CSharpMemberOrderPattern/CustomPattern/@EntryValue"><?xml version="1.0" encoding="utf-8"?>
 <Patterns xmlns="urn:shemas-jetbrains-com:member-reordering-patterns">
 
 <!-- Do not reorder COM interfaces -->
 <Pattern>
 <Match>
 <And Weight="2000">
 <Kind Is="interface"/>
 <HasAttribute CLRName="System.Runtime.InteropServices.InterfaceTypeAttribute"
 Inherit="true"/>
 </And>
 </Match>
 </Pattern>
 
 <!-- Do not reorder P/Invoke structs -->
 <Pattern>
 <Match>
 <And Weight="2000">
 <Or>
 <Kind Is="struct"/>
 <Kind Is="class"/>
 </Or>
 <HasAttribute CLRName="System.Runtime.InteropServices.StructLayoutAttribute"
 Inherit="true"/>
 </And>
 </Match>
 </Pattern>
 
 <!-- Do not reorder P/Invoke classes (called xxxNativeMethods) -->
 <Pattern>
 <Match>
 <And Weight="2000">
 <Kind Is="class"/>
 <Name Is=".*NativeMethods" />
 </And>
 </Match>
 </Pattern>
 
 <!-- StyleCop pattern -->
 <Pattern RemoveAllRegions="true">
 <Match>
 <Or Weight="1000" >
 <Kind Is="class" />
 <Kind Is="struct" />
 <Kind Is="interface"/>
 </Or>
 </Match>
 
 <!-- constants and fields -->
 <Entry>
 <Match>
 <Or>
 <Kind Is="constant"/>
 <Kind Is="field"/>
 </Or>
 </Match>
 <Sort>
 <Access Order="public internal protected-internal protected private"/>
 <Kind Order="constant field"/>
 <Readonly/>
 <Static/>
 <Name/>
 </Sort>
 <Group Region="Constants and Fields"/>
 </Entry>
 
 <!-- constructors -->
 <Entry>
 <Match>
 <Or Weight="200">
 <Kind Is="constructor"/>
 <Kind Is="destructor"/>
 </Or>
 </Match>
 <Sort>
 <Static/>
 <Kind Order="constructor destructor"/>
 <Access Order="public internal protected-internal protected private"/>
 </Sort>
 <Group Region="Constructors and Destructors"/>
 </Entry>
 
 <!-- delegates -->
 <Entry>
 <Match>
 <Kind Is="delegate"/>
 </Match>
 <Sort>
 <Access Order="public internal protected-internal protected private" />
 <Static />
 <Name/>
 </Sort>
 <Group Region="Delegates"/>
 </Entry>
 
 <!-- events -->
 <Entry>
 <Match>
 <Kind Is="event"/>
 </Match>
 <Sort>
 <Access Order="public internal protected-internal protected private" />
 <Static />
 <Name/>
 </Sort>
 <Group Region="Events"/>
 </Entry>
 
 <!-- enum -->
 <Entry>
 <Match>
 <Kind Is="enum"/>
 </Match>
 <Sort>
 <Access Order="public internal protected-internal protected private" />
 <Name/>
 </Sort>
 <Group Region="Enums"/>
 </Entry>
 
 <!-- interfaces -->
 <Entry>
 <Match>
 <Kind Is="interface" />
 </Match>
 <Sort>
 <Access Order="public internal protected-internal protected private" />
 <Name/>
 </Sort>
 <Group Region="Interfaces"/>
 </Entry>
 
 <!-- properties -->
 <Entry>
 <Match>
 <And Weight="500">
 <Kind Is="property"/>
 <ImplementsInterface CLRName=".*"/>
 </And>
 </Match>
 <Sort>
 <ImplementsInterface />
 <Access Order="public internal protected-internal protected private"/>
 <Static/>
 <Name/>
 </Sort>
 <Group Region="Implemented Interfaces">
 <ImplementsInterface Region="${ImplementsInterface}" />
 </Group>
 </Entry>
 
 
 <Entry>
 <Match>
 <Kind Is="property"/>
 </Match>
 <Sort>
 <Access Order="public internal protected-internal protected private"/>
 <Static/>
 <Name/>
 </Sort>
 <Group Region="Properties"/>
 </Entry>
 
 <!-- indexers -->
 <Entry>
 <Match>
 <Kind Is="indexer"
 Weight="300" />
 </Match>
 <Sort>
 <Access Order="public internal protected-internal protected private" />
 <Static/>
 <Name/>
 </Sort>
 <Group Region="Indexers"/>
 </Entry>
 
 <!-- operator -->
 <Entry>
 <Match>
 <Kind Is="operator"/>
 </Match>
 <Sort>
 <Access Order="public internal protected-internal protected private" />
 <Static/>
 <Name/>
 </Sort>
 <Group Region="Operators"/>
 </Entry>
 
 <!-- public methods -->
 <Entry>
 <Match>
 <And>
 <Kind Is="method"/>
 <Access Is="public"/>
 </And>
 </Match>
 <Sort>
 <Access Order="public"/>
 <Static/>
 <Name/>
 </Sort>
 <Group Region="Public Methods"/>
 </Entry>
 
 <!-- Implemented Interfaces -->
 <Entry>
 <Match>
 <And Weight="500">
 <Kind Is="method"/>
 <ImplementsInterface CLRName=".*"/>
 </And>
 </Match>
 <Sort>
 <ImplementsInterface />
 <Access Order="public internal protected-internal protected private"/>
 <Static/>
 <Name/>
 </Sort>
 <Group Region="Implemented Interfaces">
 <ImplementsInterface Region="${ImplementsInterface}" />
 </Group>
 </Entry>
 
 <!-- other methods -->
 <Entry>
 <Match>
 <Kind Is="method"/>
 </Match>
 <Sort>
 <Access Order="public internal protected-internal protected private"/>
 <Static/>
 <Name/>
 </Sort>
 <Group Region="Methods"/>
 </Entry>
 
 <!-- Nested structs -->
 <Entry>
 <Match>
 <Kind Is="struct"
 Weight="600" />
 </Match>
 <Sort>
 <Static />
 <Access Order="public internal protected-internal protected private" />
 <Name/>
 </Sort>
 </Entry>
 
 <!-- Nested classes -->
 <Entry>
 <Match>
 <Kind Is="class"
 Weight="700" />
 </Match>
 <Sort>
 <Static />
 <Access Order="public internal protected-internal protected private" />
 <Name/>
 </Sort>
 </Entry>
 
 <!-- all other members -->
 <Entry/>
 
 </Pattern>
 </Patterns>
 </s:String> <s:Boolean x:Key="/Default/CodeStyle/CSharpUsing/AddImportsToDeepestScope/@EntryValue">True</s:Boolean> <s:Boolean x:Key="/Default/CodeStyle/CSharpUsing/AllowAlias/@EntryValue">False</s:Boolean> <s:Boolean x:Key="/Default/CodeStyle/CSharpUsing/CanUseGlobalAlias/@EntryValue">False</s:Boolean> <s:Boolean x:Key="/Default/CodeStyle/CSharpUsing/QualifiedUsingAtNestedScope/@EntryValue">True</s:Boolean> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/EventHandlerPatternLong/@EntryValue">$object$_On$event$</s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/ExceptionName/@EntryValue"></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=Constants/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=EnumMember/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=Interfaces/@EntryIndexedValue"><Policy Inspect="True" Prefix="I" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=LocalConstants/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=Locals/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=MethodPropertyEvent/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=Other/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=Parameters/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateConstants/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateInstanceFields/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateStaticFields/@EntryIndexedValue"><Policy Inspect="True" Prefix="_" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateStaticReadonly/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PublicFields/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=StaticReadonly/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=TypeParameters/@EntryIndexedValue"><Policy Inspect="True" Prefix="T" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=TypesAndNamespaces/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FBLOCK_005FSCOPE_005FCONSTANT/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FBLOCK_005FSCOPE_005FVARIABLE/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FCONSTRUCTOR/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FFUNCTION/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FGLOBAL_005FVARIABLE/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FLABEL/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FLOCAL_005FCONSTRUCTOR/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FLOCAL_005FVARIABLE/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FOBJECT_005FPROPERTY_005FOF_005FFUNCTION/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FPARAMETER/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FCLASS/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FENUM/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FENUM_005FMEMBER/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FINTERFACE/@EntryIndexedValue"><Policy Inspect="True" Prefix="I" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FMODULE/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FMODULE_005FEXPORTED/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FMODULE_005FLOCAL/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPRIVATE_005FMEMBER_005FACCESSOR/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPRIVATE_005FSTATIC_005FTYPE_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPRIVATE_005FTYPE_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPRIVATE_005FTYPE_005FMETHOD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPROTECTED_005FMEMBER_005FACCESSOR/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPROTECTED_005FSTATIC_005FTYPE_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPROTECTED_005FTYPE_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPROTECTED_005FTYPE_005FMETHOD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPUBLIC_005FMEMBER_005FACCESSOR/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPUBLIC_005FSTATIC_005FTYPE_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPUBLIC_005FTYPE_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPUBLIC_005FTYPE_005FMETHOD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FTYPE_005FPARAMETER/@EntryIndexedValue"><Policy Inspect="True" Prefix="T" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/EventHandlerPatternLong/@EntryValue">$object$_On$event$</s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/ExceptionName/@EntryValue"></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=Constants/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=EnumMember/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=Interfaces/@EntryIndexedValue"><Policy Inspect="True" Prefix="I" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=LocalConstants/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=Locals/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=MethodPropertyEvent/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=Other/@EntryIndexedValue"><Policy Inspect="False" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=Parameters/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=PrivateConstants/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=PrivateInstanceFields/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=PrivateStaticFields/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=PrivateStaticReadonly/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=PublicFields/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=StaticReadonly/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=TypeParameters/@EntryIndexedValue"><Policy Inspect="True" Prefix="T" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/VBNaming/PredefinedNamingRules/=TypesAndNamespaces/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/WebNaming/UserRules/=ASP_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/WebNaming/UserRules/=ASP_005FHTML_005FCONTROL/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/WebNaming/UserRules/=ASP_005FTAG_005FNAME/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/WebNaming/UserRules/=ASP_005FTAG_005FPREFIX/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/XamlNaming/UserRules/=NAMESPACE_005FALIAS/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/XamlNaming/UserRules/=XAML_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:String x:Key="/Default/CodeStyle/Naming/XamlNaming/UserRules/=XAML_005FRESOURCE/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> <s:Boolean x:Key="/Default/Environment/InjectedLayers/FileInjectedLayer/=8F79358E36F9114E8925983731F53D8E/@KeyIndexDefined">True</s:Boolean> <s:String x:Key="/Default/Environment/InjectedLayers/FileInjectedLayer/=8F79358E36F9114E8925983731F53D8E/AbsolutePath/@EntryValue">C:\Habitat\Habitat.sln.DotSettings</s:String> <s:String x:Key="/Default/Environment/InjectedLayers/FileInjectedLayer/=8F79358E36F9114E8925983731F53D8E/RelativePath/@EntryValue"></s:String> <s:Boolean x:Key="/Default/Environment/InjectedLayers/InjectedLayerCustomization/=File8F79358E36F9114E8925983731F53D8E/@KeyIndexDefined">True</s:Boolean> <s:Double x:Key="/Default/Environment/InjectedLayers/InjectedLayerCustomization/=File8F79358E36F9114E8925983731F53D8E/RelativePriority/@EntryValue">1</s:Double> <s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpFileLayoutPatternsUpgrade/@EntryIndexedValue">True</s:Boolean> <s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EAddAccessorOwnerDeclarationBracesMigration/@EntryIndexedValue">True</s:Boolean> <s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateBlankLinesAroundFieldToBlankLinesAroundProperty/@EntryIndexedValue">True</s:Boolean> <s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateThisQualifierSettings/@EntryIndexedValue">True</s:Boolean> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/@KeyIndexDefined">True</s:Boolean> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Applicability/=Live/@EntryIndexedValue">True</s:Boolean> <s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Categories/=Imported_002012_002F8_002F2015/@EntryIndexedValue">Imported 12/8/2015</s:String> <s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Description/@EntryValue">Template for xunit theory</s:String> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Field/=Arguments/@KeyIndexDefined">True</s:Boolean> <s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Field/=Arguments/Order/@EntryValue">3</s:Int64> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Field/=ExpectedBehavior/@KeyIndexDefined">True</s:Boolean> <s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Field/=ExpectedBehavior/Order/@EntryValue">2</s:Int64> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Field/=StateUnderTest/@KeyIndexDefined">True</s:Boolean> <s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Field/=StateUnderTest/Order/@EntryValue">1</s:Int64> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Field/=UnitOfWork/@KeyIndexDefined">True</s:Boolean> <s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Field/=UnitOfWork/Order/@EntryValue">0</s:Int64> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Reformat/@EntryValue">True</s:Boolean> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Scope/=C3001E7C0DA78E4487072B7E050D86C5/@KeyIndexDefined">True</s:Boolean> <s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Scope/=C3001E7C0DA78E4487072B7E050D86C5/CustomProperties/=minimumLanguageVersion/@EntryIndexedValue">2.0</s:String> <s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Scope/=C3001E7C0DA78E4487072B7E050D86C5/Type/@EntryValue">InCSharpFile</s:String> <s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Shortcut/@EntryValue">theory</s:String> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/ShortenQualifiedReferences/@EntryValue">True</s:Boolean> <s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=265E44EAE15B1D48A22D22CE017C8499/Text/@EntryValue">[Theory]
 [AutoDbData]
 public void $UnitOfWork$_$StateUnderTest$_$ExpectedBehavior$($Arguments$)
 {
 //Arrange
 $END$
 //Act
 //Assert 
 }</s:String> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/@KeyIndexDefined">True</s:Boolean> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/Applicability/=Live/@EntryIndexedValue">True</s:Boolean> <s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/Categories/=Imported_002012_002F8_002F2015/@EntryIndexedValue">Imported 12/8/2015</s:String> <s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/Description/@EntryValue">Xunit fact method</s:String> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/Field/=ExpectedBehavior/@KeyIndexDefined">True</s:Boolean> <s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/Field/=ExpectedBehavior/Order/@EntryValue">2</s:Int64> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/Field/=StateUnderTest/@KeyIndexDefined">True</s:Boolean> <s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/Field/=StateUnderTest/Order/@EntryValue">1</s:Int64> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/Field/=UnitOfWork/@KeyIndexDefined">True</s:Boolean> <s:Int64 x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/Field/=UnitOfWork/Order/@EntryValue">0</s:Int64> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/Reformat/@EntryValue">True</s:Boolean> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/Scope/=C3001E7C0DA78E4487072B7E050D86C5/@KeyIndexDefined">True</s:Boolean> <s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/Scope/=C3001E7C0DA78E4487072B7E050D86C5/CustomProperties/=minimumLanguageVersion/@EntryIndexedValue">2.0</s:String> <s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/Scope/=C3001E7C0DA78E4487072B7E050D86C5/Type/@EntryValue">InCSharpFile</s:String> <s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/Shortcut/@EntryValue">fact</s:String> <s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/ShortenQualifiedReferences/@EntryValue">True</s:Boolean> <s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=5E0E96BB36B1A848B405ADFBE321CA8E/Text/@EntryValue">[Fact]
 public void $UnitOfWork$_$StateUnderTest$_$ExpectedBehavior$()
 {
 //Arrange
 $END$
 //Act
 //Assert 
 }</s:String> </wpf:ResourceDictionary>