Mercurial > pub > ImplabNet
annotate Implab/Implab.csproj @ 229:5f7a3e1d32b9 v2
JsonXmlReader performance tuning
JsonScanner now operates strings and doesn't
parses number and literals.
Added SerializationHelpers to common serialize/deserialize operations
author | cin |
---|---|
date | Tue, 12 Sep 2017 19:07:42 +0300 |
parents | 6fa235c5a760 |
children | 3e26338eb977 d6fe09f5592c |
rev | line source |
---|---|
2 | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
3 <PropertyGroup> | |
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
4 | 6 <ProjectGuid>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</ProjectGuid> |
2 | 7 <OutputType>Library</OutputType> |
8 <RootNamespace>Implab</RootNamespace> | |
9 <AssemblyName>Implab</AssemblyName> | |
151 | 10 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> |
2 | 11 </PropertyGroup> |
12 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
13 <DebugSymbols>true</DebugSymbols> | |
14 <DebugType>full</DebugType> | |
15 <Optimize>false</Optimize> | |
16 <OutputPath>bin\Debug</OutputPath> | |
35 | 17 <DefineConstants>TRACE;DEBUG;</DefineConstants> |
2 | 18 <ErrorReport>prompt</ErrorReport> |
19 <WarningLevel>4</WarningLevel> | |
20 <ConsolePause>false</ConsolePause> | |
59 | 21 <RunCodeAnalysis>true</RunCodeAnalysis> |
2 | 22 </PropertyGroup> |
23 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
24 <DebugType>full</DebugType> | |
25 <Optimize>true</Optimize> | |
26 <OutputPath>bin\Release</OutputPath> | |
27 <ErrorReport>prompt</ErrorReport> | |
28 <WarningLevel>4</WarningLevel> | |
29 <ConsolePause>false</ConsolePause> | |
30 </PropertyGroup> | |
75 | 31 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' "> |
32 <DebugSymbols>true</DebugSymbols> | |
33 <DebugType>full</DebugType> | |
34 <Optimize>false</Optimize> | |
35 <OutputPath>bin\Debug</OutputPath> | |
36 <DefineConstants>TRACE;DEBUG;NET_4_5</DefineConstants> | |
37 <ErrorReport>prompt</ErrorReport> | |
38 <WarningLevel>4</WarningLevel> | |
39 <RunCodeAnalysis>true</RunCodeAnalysis> | |
40 <ConsolePause>false</ConsolePause> | |
41 </PropertyGroup> | |
42 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' "> | |
43 <Optimize>true</Optimize> | |
44 <OutputPath>bin\Release</OutputPath> | |
45 <ErrorReport>prompt</ErrorReport> | |
46 <WarningLevel>4</WarningLevel> | |
47 <ConsolePause>false</ConsolePause> | |
48 <DefineConstants>NET_4_5</DefineConstants> | |
49 </PropertyGroup> | |
85 | 50 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugMono|AnyCPU' "> |
51 <DebugSymbols>true</DebugSymbols> | |
52 <DebugType>full</DebugType> | |
53 <Optimize>false</Optimize> | |
54 <OutputPath>bin\Debug</OutputPath> | |
55 <DefineConstants>TRACE;DEBUG;NET_4_5;MONO</DefineConstants> | |
56 <ErrorReport>prompt</ErrorReport> | |
57 <WarningLevel>4</WarningLevel> | |
58 <RunCodeAnalysis>true</RunCodeAnalysis> | |
59 <ConsolePause>false</ConsolePause> | |
60 </PropertyGroup> | |
61 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseMono|AnyCPU' "> | |
62 <Optimize>true</Optimize> | |
63 <OutputPath>bin\Release</OutputPath> | |
64 <DefineConstants>NET_4_5;MONO;</DefineConstants> | |
65 <ErrorReport>prompt</ErrorReport> | |
66 <WarningLevel>4</WarningLevel> | |
67 <ConsolePause>false</ConsolePause> | |
68 </PropertyGroup> | |
2 | 69 <ItemGroup> |
70 <Reference Include="System" /> | |
67 | 71 <Reference Include="System.Xml" /> |
151 | 72 <Reference Include="mscorlib" /> |
229 | 73 <Reference Include="System.Xml.Linq" /> |
2 | 74 </ItemGroup> |
75 <ItemGroup> | |
205
8200ab154c8a
Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
203
diff
changeset
|
76 <Compile Include="Components\StateChangeEventArgs.cs" /> |
55 | 77 <Compile Include="CustomEqualityComparer.cs" /> |
36 | 78 <Compile Include="Diagnostics\ConsoleTraceListener.cs" /> |
79 <Compile Include="Diagnostics\LogChannel.cs" /> | |
35 | 80 <Compile Include="Diagnostics\LogicalOperation.cs" /> |
40 | 81 <Compile Include="Diagnostics\TextFileListener.cs" /> |
212
a01d9df88d74
Added class Trace<T> to manage channels for individual classes, if SomeClass
cin
parents:
211
diff
changeset
|
82 <Compile Include="Diagnostics\Trace.cs" /> |
36 | 83 <Compile Include="Diagnostics\TraceLog.cs" /> |
84 <Compile Include="Diagnostics\TraceEvent.cs" /> | |
35 | 85 <Compile Include="Diagnostics\TraceEventType.cs" /> |
212
a01d9df88d74
Added class Trace<T> to manage channels for individual classes, if SomeClass
cin
parents:
211
diff
changeset
|
86 <Compile Include="Diagnostics\TraceSourceAttribute.cs" /> |
228 | 87 <Compile Include="Formats\CharMap.cs" /> |
88 <Compile Include="Formats\InputScanner.cs" /> | |
89 <Compile Include="Formats\Json\JsonStringScanner.cs" /> | |
90 <Compile Include="Formats\Json\JsonTextScanner.cs" /> | |
12 | 91 <Compile Include="ICancellable.cs" /> |
92 <Compile Include="IProgressHandler.cs" /> | |
93 <Compile Include="IProgressNotifier.cs" /> | |
66 | 94 <Compile Include="IPromiseT.cs" /> |
8 | 95 <Compile Include="IPromise.cs" /> |
40 | 96 <Compile Include="IServiceLocator.cs" /> |
12 | 97 <Compile Include="ITaskController.cs" /> |
15 | 98 <Compile Include="Parallels\DispatchPool.cs" /> |
99 <Compile Include="Parallels\ArrayTraits.cs" /> | |
14 | 100 <Compile Include="Parallels\MTQueue.cs" /> |
12 | 101 <Compile Include="Parallels\WorkerPool.cs" /> |
7 | 102 <Compile Include="ProgressInitEventArgs.cs" /> |
2 | 103 <Compile Include="Properties\AssemblyInfo.cs" /> |
11 | 104 <Compile Include="Parallels\AsyncPool.cs" /> |
2 | 105 <Compile Include="Safe.cs" /> |
211
3eb3255d8cc5
Code review, added a non generic version of SyncContextPromise
cin
parents:
205
diff
changeset
|
106 <Compile Include="SyncContextPromise.cs" /> |
7 | 107 <Compile Include="ValueEventArgs.cs" /> |
72 | 108 <Compile Include="PromiseExtensions.cs" /> |
211
3eb3255d8cc5
Code review, added a non generic version of SyncContextPromise
cin
parents:
205
diff
changeset
|
109 <Compile Include="SyncContextPromiseT.cs" /> |
92 | 110 <Compile Include="Diagnostics\OperationContext.cs" /> |
111 <Compile Include="Diagnostics\TraceContext.cs" /> | |
112 <Compile Include="Diagnostics\LogEventArgs.cs" /> | |
113 <Compile Include="Diagnostics\LogEventArgsT.cs" /> | |
114 <Compile Include="Diagnostics\Extensions.cs" /> | |
104 | 115 <Compile Include="PromiseEventType.cs" /> |
119
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
116 <Compile Include="Parallels\AsyncQueue.cs" /> |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
117 <Compile Include="PromiseT.cs" /> |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
118 <Compile Include="IDeferred.cs" /> |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
119 <Compile Include="IDeferredT.cs" /> |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
120 <Compile Include="Promise.cs" /> |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
121 <Compile Include="PromiseTransientException.cs" /> |
128
6241bff0cd64
Added Signal class a lightweight alternative to ManualResetEvent
cin
parents:
127
diff
changeset
|
122 <Compile Include="Parallels\Signal.cs" /> |
129 | 123 <Compile Include="Parallels\SharedLock.cs" /> |
134 | 124 <Compile Include="Diagnostics\ILogWriter.cs" /> |
125 <Compile Include="Diagnostics\ListenerBase.cs" /> | |
137 | 126 <Compile Include="Parallels\BlockingQueue.cs" /> |
144 | 127 <Compile Include="AbstractEvent.cs" /> |
128 <Compile Include="AbstractPromise.cs" /> | |
129 <Compile Include="AbstractPromiseT.cs" /> | |
130 <Compile Include="FuncTask.cs" /> | |
131 <Compile Include="FuncTaskBase.cs" /> | |
132 <Compile Include="FuncTaskT.cs" /> | |
145 | 133 <Compile Include="ActionChainTaskBase.cs" /> |
134 <Compile Include="ActionChainTask.cs" /> | |
135 <Compile Include="ActionChainTaskT.cs" /> | |
136 <Compile Include="FuncChainTaskBase.cs" /> | |
137 <Compile Include="FuncChainTask.cs" /> | |
138 <Compile Include="FuncChainTaskT.cs" /> | |
139 <Compile Include="ActionTaskBase.cs" /> | |
140 <Compile Include="ActionTask.cs" /> | |
141 <Compile Include="ActionTaskT.cs" /> | |
142 <Compile Include="ICancellationToken.cs" /> | |
143 <Compile Include="SuccessPromise.cs" /> | |
144 <Compile Include="SuccessPromiseT.cs" /> | |
151 | 145 <Compile Include="PromiseAwaiterT.cs" /> |
146 <Compile Include="PromiseAwaiter.cs" /> | |
152 | 147 <Compile Include="Components\ComponentContainer.cs" /> |
148 <Compile Include="Components\Disposable.cs" /> | |
149 <Compile Include="Components\DisposablePool.cs" /> | |
150 <Compile Include="Components\ObjectPool.cs" /> | |
151 <Compile Include="Components\ServiceLocator.cs" /> | |
152 <Compile Include="Components\IInitializable.cs" /> | |
153 <Compile Include="TaskController.cs" /> | |
154 <Compile Include="Components\App.cs" /> | |
155 <Compile Include="Components\IRunnable.cs" /> | |
156 <Compile Include="Components\ExecutionState.cs" /> | |
156
97fbbf816844
Promises: SignalXXX methods merged into SignalHandler method.
cin
parents:
152
diff
changeset
|
157 <Compile Include="Components\RunnableComponent.cs" /> |
97fbbf816844
Promises: SignalXXX methods merged into SignalHandler method.
cin
parents:
152
diff
changeset
|
158 <Compile Include="Components\IFactory.cs" /> |
162 | 159 <Compile Include="Automaton\IAlphabet.cs" /> |
160 <Compile Include="Automaton\ParserException.cs" /> | |
161 <Compile Include="Automaton\IndexedAlphabetBase.cs" /> | |
162 <Compile Include="Automaton\IAlphabetBuilder.cs" /> | |
163 <Compile Include="Automaton\RegularExpressions\AltToken.cs" /> | |
164 <Compile Include="Automaton\RegularExpressions\BinaryToken.cs" /> | |
165 <Compile Include="Automaton\RegularExpressions\CatToken.cs" /> | |
166 <Compile Include="Automaton\RegularExpressions\StarToken.cs" /> | |
167 <Compile Include="Automaton\RegularExpressions\SymbolToken.cs" /> | |
168 <Compile Include="Automaton\RegularExpressions\EmptyToken.cs" /> | |
169 <Compile Include="Automaton\RegularExpressions\Token.cs" /> | |
170 <Compile Include="Automaton\RegularExpressions\IVisitor.cs" /> | |
171 <Compile Include="Automaton\AutomatonTransition.cs" /> | |
228 | 172 <Compile Include="Formats\Json\JsonElementContext.cs" /> |
173 <Compile Include="Formats\Json\JsonElementType.cs" /> | |
174 <Compile Include="Formats\Json\JsonGrammar.cs" /> | |
229 | 175 <Compile Include="Formats\Json\JsonReader.cs" /> |
228 | 176 <Compile Include="Formats\Json\JsonScanner.cs" /> |
177 <Compile Include="Formats\Json\JsonTokenType.cs" /> | |
178 <Compile Include="Formats\Json\JsonWriter.cs" /> | |
179 <Compile Include="Formats\Json\StringTranslator.cs" /> | |
163 | 180 <Compile Include="Automaton\MapAlphabet.cs" /> |
164 | 181 <Compile Include="Formats\CharAlphabet.cs" /> |
182 <Compile Include="Formats\ByteAlphabet.cs" /> | |
165 | 183 <Compile Include="Automaton\IDFATable.cs" /> |
184 <Compile Include="Automaton\IDFATableBuilder.cs" /> | |
169 | 185 <Compile Include="Automaton\DFATable.cs" /> |
172 | 186 <Compile Include="Automaton\RegularExpressions\RegularExpressionVisitor.cs" /> |
187 <Compile Include="Automaton\RegularExpressions\ITaggedDFABuilder.cs" /> | |
177 | 188 <Compile Include="Formats\Grammar.cs" /> |
189 <Compile Include="Automaton\RegularExpressions\EndTokenT.cs" /> | |
190 <Compile Include="Automaton\RegularExpressions\EndToken.cs" /> | |
178 | 191 <Compile Include="Automaton\RegularExpressions\RegularExpressionVisitorT.cs" /> |
192 <Compile Include="Automaton\AutomatonConst.cs" /> | |
193 <Compile Include="Automaton\RegularExpressions\RegularDFA.cs" /> | |
194 <Compile Include="Components\LazyAndWeak.cs" /> | |
187
dd4a3590f9c6
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler
cin
parents:
180
diff
changeset
|
195 <Compile Include="AbstractTask.cs" /> |
dd4a3590f9c6
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler
cin
parents:
180
diff
changeset
|
196 <Compile Include="AbstractTaskT.cs" /> |
203
4d9830a9bbb8
Added 'Fail' method to RunnableComponent which allows component to move from
cin
parents:
202
diff
changeset
|
197 <Compile Include="FailedPromise.cs" /> |
4d9830a9bbb8
Added 'Fail' method to RunnableComponent which allows component to move from
cin
parents:
202
diff
changeset
|
198 <Compile Include="FailedPromiseT.cs" /> |
4d9830a9bbb8
Added 'Fail' method to RunnableComponent which allows component to move from
cin
parents:
202
diff
changeset
|
199 <Compile Include="Components\PollingComponent.cs" /> |
227
8d5de4eb9c2c
Reimplemented JsonXmlReader, added support for null values: JSON null values are
cin
parents:
225
diff
changeset
|
200 <Compile Include="Xml\JsonXmlReader.cs" /> |
8d5de4eb9c2c
Reimplemented JsonXmlReader, added support for null values: JSON null values are
cin
parents:
225
diff
changeset
|
201 <Compile Include="Xml\JsonXmlReaderOptions.cs" /> |
8d5de4eb9c2c
Reimplemented JsonXmlReader, added support for null values: JSON null values are
cin
parents:
225
diff
changeset
|
202 <Compile Include="Xml\JsonXmlReaderPosition.cs" /> |
229 | 203 <Compile Include="Xml\SerializationHelpers.cs" /> |
204 <Compile Include="Xml\SerializersPool.cs" /> | |
227
8d5de4eb9c2c
Reimplemented JsonXmlReader, added support for null values: JSON null values are
cin
parents:
225
diff
changeset
|
205 <Compile Include="Xml\XmlSimpleAttribute.cs" /> |
8d5de4eb9c2c
Reimplemented JsonXmlReader, added support for null values: JSON null values are
cin
parents:
225
diff
changeset
|
206 <Compile Include="Xml\XmlNameContext.cs" /> |
2 | 207 </ItemGroup> |
208 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | |
11 | 209 <ItemGroup /> |
72 | 210 <ProjectExtensions> |
211 <MonoDevelop> | |
212 <Properties> | |
213 <Policies> | |
225 | 214 <CSharpFormattingPolicy IndentBlock="True" IndentBraces="False" IndentSwitchSection="False" IndentSwitchCaseSection="True" LabelPositioning="OneLess" NewLinesForBracesInProperties="False" NewLinesForBracesInAccessors="False" NewLinesForBracesInAnonymousMethods="False" NewLinesForBracesInControlBlocks="False" NewLinesForBracesInAnonymousTypes="False" NewLinesForBracesInObjectCollectionArrayInitializers="False" NewLinesForBracesInLambdaExpressionBody="False" NewLineForElse="False" NewLineForCatch="False" NewLineForFinally="False" NewLineForMembersInObjectInit="False" NewLineForMembersInAnonymousTypes="False" NewLineForClausesInQuery="False" SpaceWithinMethodDeclarationParenthesis="False" SpaceBetweenEmptyMethodDeclarationParentheses="False" SpaceWithinMethodCallParentheses="False" SpaceBetweenEmptyMethodCallParentheses="False" SpaceAfterControlFlowStatementKeyword="True" SpaceWithinExpressionParentheses="False" SpaceWithinCastParentheses="False" SpaceWithinOtherParentheses="False" SpaceAfterCast="False" SpacesIgnoreAroundVariableDeclaration="False" SpaceBetweenEmptySquareBrackets="False" SpaceWithinSquareBrackets="False" SpaceAfterColonInBaseTypeDeclaration="True" SpaceAfterComma="True" SpaceAfterDot="False" SpaceAfterSemicolonsInForStatement="True" SpaceBeforeComma="False" SpaceBeforeDot="False" SpaceBeforeSemicolonsInForStatement="False" SpacingAroundBinaryOperator="Single" WrappingPreserveSingleLine="True" WrappingKeepStatementsOnSingleLine="True" PlaceSystemDirectiveFirst="True" NewLinesForBracesInTypes="True" NewLinesForBracesInMethods="True" SpacingAfterMethodDeclarationName="True" SpaceAfterMethodCallName="True" SpaceBeforeOpenSquareBracket="True" SpaceBeforeColonInBaseTypeDeclaration="True" scope="text/x-csharp" /> |
215 <TextStylePolicy FileWidth="120" TabWidth="4" IndentWidth="4" RemoveTrailingWhitespace="True" NoTabsAfterNonTabs="False" TabsToSpaces="True" EolMarker="Unix" scope="text/x-csharp" /> | |
72 | 216 <DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="MSBuild" /> |
225 | 217 <TextStylePolicy FileWidth="120" TabWidth="4" TabsToSpaces="False" IndentWidth="4" RemoveTrailingWhitespace="True" NoTabsAfterNonTabs="False" EolMarker="Native" scope="application/xml" /> |
218 <XmlFormattingPolicy scope="application/xml"> | |
227
8d5de4eb9c2c
Reimplemented JsonXmlReader, added support for null values: JSON null values are
cin
parents:
225
diff
changeset
|
219 <DefaultFormat OmitXmlDeclaration="False" NewLineChars="
" IndentContent="True" ContentIndentString=" " AttributesInNewLine="False" MaxAttributesPerLine="10" AttributesIndentString=" " WrapAttributes="False" AlignAttributes="False" AlignAttributeValues="False" QuoteChar=""" SpacesBeforeAssignment="0" SpacesAfterAssignment="0" EmptyLinesBeforeStart="0" EmptyLinesAfterStart="0" EmptyLinesBeforeEnd="0" EmptyLinesAfterEnd="0" /> |
225 | 220 </XmlFormattingPolicy> |
221 <TextStylePolicy FileWidth="120" TabWidth="4" TabsToSpaces="False" IndentWidth="4" RemoveTrailingWhitespace="True" NoTabsAfterNonTabs="False" EolMarker="Native" scope="text/plain" /> | |
72 | 222 <NameConventionPolicy> |
223 <Rules> | |
224 <NamingRule Name="Namespaces" AffectedEntity="Namespace" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
225 <NamingRule Name="Types" AffectedEntity="Class, Struct, Enum, Delegate" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
226 <NamingRule Name="Interfaces" AffectedEntity="Interface" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
227 <RequiredPrefixes> | |
228 <String>I</String> | |
229 </RequiredPrefixes> | |
230 </NamingRule> | |
231 <NamingRule Name="Attributes" AffectedEntity="CustomAttributes" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
232 <RequiredSuffixes> | |
233 <String>Attribute</String> | |
234 </RequiredSuffixes> | |
235 </NamingRule> | |
236 <NamingRule Name="Event Arguments" AffectedEntity="CustomEventArgs" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
237 <RequiredSuffixes> | |
238 <String>EventArgs</String> | |
239 </RequiredSuffixes> | |
240 </NamingRule> | |
241 <NamingRule Name="Exceptions" AffectedEntity="CustomExceptions" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
242 <RequiredSuffixes> | |
243 <String>Exception</String> | |
244 </RequiredSuffixes> | |
245 </NamingRule> | |
246 <NamingRule Name="Methods" AffectedEntity="Methods" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
247 <NamingRule Name="Static Readonly Fields" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Protected, Public" NamingStyle="CamelCase" IncludeInstanceMembers="False" IncludeStaticEntities="True" /> | |
248 <NamingRule Name="Fields (Non Private)" AffectedEntity="Field" VisibilityMask="Internal, Public" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
249 <NamingRule Name="ReadOnly Fields (Non Private)" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Public" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False" /> | |
250 <NamingRule Name="Fields (Private)" AffectedEntity="Field, ReadonlyField" VisibilityMask="Private, Protected" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False"> | |
251 <RequiredPrefixes> | |
252 <String>m_</String> | |
253 </RequiredPrefixes> | |
254 </NamingRule> | |
255 <NamingRule Name="Static Fields (Private)" AffectedEntity="Field" VisibilityMask="Private" NamingStyle="CamelCase" IncludeInstanceMembers="False" IncludeStaticEntities="True"> | |
256 <RequiredPrefixes> | |
257 <String>_</String> | |
258 </RequiredPrefixes> | |
259 </NamingRule> | |
260 <NamingRule Name="ReadOnly Fields (Private)" AffectedEntity="ReadonlyField" VisibilityMask="Private, Protected" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False"> | |
261 <RequiredPrefixes> | |
262 <String>m_</String> | |
263 </RequiredPrefixes> | |
264 </NamingRule> | |
265 <NamingRule Name="Constant Fields" AffectedEntity="ConstantField" VisibilityMask="VisibilityMask" NamingStyle="AllUpper" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
266 <NamingRule Name="Properties" AffectedEntity="Property" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
267 <NamingRule Name="Events" AffectedEntity="Event" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
268 <NamingRule Name="Enum Members" AffectedEntity="EnumMember" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
269 <NamingRule Name="Parameters" AffectedEntity="Parameter, LocalVariable" VisibilityMask="VisibilityMask" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
270 <NamingRule Name="Type Parameters" AffectedEntity="TypeParameter" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
271 <RequiredPrefixes> | |
272 <String>T</String> | |
273 </RequiredPrefixes> | |
274 </NamingRule> | |
275 </Rules> | |
276 </NameConventionPolicy> | |
277 </Policies> | |
278 </Properties> | |
279 </MonoDevelop> | |
280 </ProjectExtensions> | |
205
8200ab154c8a
Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
203
diff
changeset
|
281 <ItemGroup /> |
0 | 282 </Project> |