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