Mercurial > pub > ImplabNet
annotate Implab/Implab.csproj @ 223:27ea7f07e2e4 default
Слияние
| author | cin |
|---|---|
| date | Tue, 22 Aug 2017 09:35:54 +0300 |
| parents | 98eeb63cedb2 |
| children | 1ba2127cfcd8 |
| 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> |
| 164 | 11 <ProductVersion>8.0.30703</ProductVersion> |
| 12 <SchemaVersion>2.0</SchemaVersion> | |
| 2 | 13 </PropertyGroup> |
| 14 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
| 15 <DebugSymbols>true</DebugSymbols> | |
| 16 <DebugType>full</DebugType> | |
| 17 <Optimize>false</Optimize> | |
| 18 <OutputPath>bin\Debug</OutputPath> | |
| 35 | 19 <DefineConstants>TRACE;DEBUG;</DefineConstants> |
| 2 | 20 <ErrorReport>prompt</ErrorReport> |
| 21 <WarningLevel>4</WarningLevel> | |
| 22 <ConsolePause>false</ConsolePause> | |
| 59 | 23 <RunCodeAnalysis>true</RunCodeAnalysis> |
| 2 | 24 </PropertyGroup> |
| 25 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
| 26 <DebugType>full</DebugType> | |
| 27 <Optimize>true</Optimize> | |
| 28 <OutputPath>bin\Release</OutputPath> | |
| 29 <ErrorReport>prompt</ErrorReport> | |
| 30 <WarningLevel>4</WarningLevel> | |
| 31 <ConsolePause>false</ConsolePause> | |
| 32 </PropertyGroup> | |
| 75 | 33 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' "> |
| 34 <DebugSymbols>true</DebugSymbols> | |
| 35 <DebugType>full</DebugType> | |
| 36 <Optimize>false</Optimize> | |
| 37 <OutputPath>bin\Debug</OutputPath> | |
| 38 <DefineConstants>TRACE;DEBUG;NET_4_5</DefineConstants> | |
| 39 <ErrorReport>prompt</ErrorReport> | |
| 40 <WarningLevel>4</WarningLevel> | |
| 41 <RunCodeAnalysis>true</RunCodeAnalysis> | |
| 42 <ConsolePause>false</ConsolePause> | |
| 43 </PropertyGroup> | |
| 44 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' "> | |
| 45 <Optimize>true</Optimize> | |
| 46 <OutputPath>bin\Release</OutputPath> | |
| 47 <ErrorReport>prompt</ErrorReport> | |
| 48 <WarningLevel>4</WarningLevel> | |
| 49 <ConsolePause>false</ConsolePause> | |
| 50 <DefineConstants>NET_4_5</DefineConstants> | |
| 51 </PropertyGroup> | |
| 85 | 52 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugMono|AnyCPU' "> |
| 53 <DebugSymbols>true</DebugSymbols> | |
| 54 <DebugType>full</DebugType> | |
| 55 <Optimize>false</Optimize> | |
| 56 <OutputPath>bin\Debug</OutputPath> | |
| 57 <DefineConstants>TRACE;DEBUG;NET_4_5;MONO</DefineConstants> | |
| 58 <ErrorReport>prompt</ErrorReport> | |
| 59 <WarningLevel>4</WarningLevel> | |
| 60 <RunCodeAnalysis>true</RunCodeAnalysis> | |
| 61 <ConsolePause>false</ConsolePause> | |
| 62 </PropertyGroup> | |
| 63 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseMono|AnyCPU' "> | |
| 64 <Optimize>true</Optimize> | |
| 65 <OutputPath>bin\Release</OutputPath> | |
| 66 <DefineConstants>NET_4_5;MONO;</DefineConstants> | |
| 67 <ErrorReport>prompt</ErrorReport> | |
| 68 <WarningLevel>4</WarningLevel> | |
| 69 <ConsolePause>false</ConsolePause> | |
| 70 </PropertyGroup> | |
| 2 | 71 <ItemGroup> |
| 72 <Reference Include="System" /> | |
| 67 | 73 <Reference Include="System.Xml" /> |
| 151 | 74 <Reference Include="mscorlib" /> |
| 2 | 75 </ItemGroup> |
| 76 <ItemGroup> | |
| 55 | 77 <Compile Include="CustomEqualityComparer.cs" /> |
| 36 | 78 <Compile Include="Diagnostics\ConsoleTraceListener.cs" /> |
| 40 | 79 <Compile Include="Diagnostics\EventText.cs" /> |
| 36 | 80 <Compile Include="Diagnostics\LogChannel.cs" /> |
| 35 | 81 <Compile Include="Diagnostics\LogicalOperation.cs" /> |
| 40 | 82 <Compile Include="Diagnostics\TextFileListener.cs" /> |
| 36 | 83 <Compile Include="Diagnostics\TraceLog.cs" /> |
| 84 <Compile Include="Diagnostics\TraceEvent.cs" /> | |
| 35 | 85 <Compile Include="Diagnostics\TraceEventType.cs" /> |
| 12 | 86 <Compile Include="ICancellable.cs" /> |
| 87 <Compile Include="IProgressHandler.cs" /> | |
| 88 <Compile Include="IProgressNotifier.cs" /> | |
| 66 | 89 <Compile Include="IPromiseT.cs" /> |
| 8 | 90 <Compile Include="IPromise.cs" /> |
| 40 | 91 <Compile Include="IServiceLocator.cs" /> |
| 12 | 92 <Compile Include="ITaskController.cs" /> |
| 15 | 93 <Compile Include="Parallels\DispatchPool.cs" /> |
| 94 <Compile Include="Parallels\ArrayTraits.cs" /> | |
| 14 | 95 <Compile Include="Parallels\MTQueue.cs" /> |
| 12 | 96 <Compile Include="Parallels\WorkerPool.cs" /> |
| 7 | 97 <Compile Include="ProgressInitEventArgs.cs" /> |
| 2 | 98 <Compile Include="Properties\AssemblyInfo.cs" /> |
| 11 | 99 <Compile Include="Parallels\AsyncPool.cs" /> |
| 2 | 100 <Compile Include="Safe.cs" /> |
| 7 | 101 <Compile Include="ValueEventArgs.cs" /> |
| 72 | 102 <Compile Include="PromiseExtensions.cs" /> |
| 103 <Compile Include="SyncContextPromise.cs" /> | |
| 92 | 104 <Compile Include="Diagnostics\OperationContext.cs" /> |
| 105 <Compile Include="Diagnostics\TraceContext.cs" /> | |
| 106 <Compile Include="Diagnostics\LogEventArgs.cs" /> | |
| 107 <Compile Include="Diagnostics\LogEventArgsT.cs" /> | |
| 108 <Compile Include="Diagnostics\Extensions.cs" /> | |
| 104 | 109 <Compile Include="PromiseEventType.cs" /> |
|
119
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
110 <Compile Include="Parallels\AsyncQueue.cs" /> |
|
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
111 <Compile Include="PromiseT.cs" /> |
|
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
112 <Compile Include="IDeferred.cs" /> |
|
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
113 <Compile Include="IDeferredT.cs" /> |
|
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
114 <Compile Include="Promise.cs" /> |
|
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
115 <Compile Include="PromiseTransientException.cs" /> |
|
128
6241bff0cd64
Added Signal class a lightweight alternative to ManualResetEvent
cin
parents:
127
diff
changeset
|
116 <Compile Include="Parallels\Signal.cs" /> |
| 129 | 117 <Compile Include="Parallels\SharedLock.cs" /> |
| 134 | 118 <Compile Include="Diagnostics\ILogWriter.cs" /> |
| 119 <Compile Include="Diagnostics\ListenerBase.cs" /> | |
| 137 | 120 <Compile Include="Parallels\BlockingQueue.cs" /> |
| 144 | 121 <Compile Include="AbstractEvent.cs" /> |
| 122 <Compile Include="AbstractPromise.cs" /> | |
| 123 <Compile Include="AbstractPromiseT.cs" /> | |
| 124 <Compile Include="FuncTask.cs" /> | |
| 125 <Compile Include="FuncTaskBase.cs" /> | |
| 126 <Compile Include="FuncTaskT.cs" /> | |
| 145 | 127 <Compile Include="ActionChainTaskBase.cs" /> |
| 128 <Compile Include="ActionChainTask.cs" /> | |
| 129 <Compile Include="ActionChainTaskT.cs" /> | |
| 130 <Compile Include="FuncChainTaskBase.cs" /> | |
| 131 <Compile Include="FuncChainTask.cs" /> | |
| 132 <Compile Include="FuncChainTaskT.cs" /> | |
| 133 <Compile Include="ActionTaskBase.cs" /> | |
| 134 <Compile Include="ActionTask.cs" /> | |
| 135 <Compile Include="ActionTaskT.cs" /> | |
| 136 <Compile Include="ICancellationToken.cs" /> | |
| 137 <Compile Include="SuccessPromise.cs" /> | |
| 138 <Compile Include="SuccessPromiseT.cs" /> | |
| 151 | 139 <Compile Include="PromiseAwaiterT.cs" /> |
| 140 <Compile Include="PromiseAwaiter.cs" /> | |
| 152 | 141 <Compile Include="Components\ComponentContainer.cs" /> |
| 142 <Compile Include="Components\Disposable.cs" /> | |
| 143 <Compile Include="Components\DisposablePool.cs" /> | |
| 144 <Compile Include="Components\ObjectPool.cs" /> | |
| 145 <Compile Include="Components\ServiceLocator.cs" /> | |
| 146 <Compile Include="Components\IInitializable.cs" /> | |
| 147 <Compile Include="TaskController.cs" /> | |
| 148 <Compile Include="Components\App.cs" /> | |
| 149 <Compile Include="Components\IRunnable.cs" /> | |
| 150 <Compile Include="Components\ExecutionState.cs" /> | |
|
156
97fbbf816844
Promises: SignalXXX methods merged into SignalHandler method.
cin
parents:
152
diff
changeset
|
151 <Compile Include="Components\RunnableComponent.cs" /> |
|
97fbbf816844
Promises: SignalXXX methods merged into SignalHandler method.
cin
parents:
152
diff
changeset
|
152 <Compile Include="Components\IFactory.cs" /> |
| 162 | 153 <Compile Include="Automaton\IAlphabet.cs" /> |
| 154 <Compile Include="Automaton\ParserException.cs" /> | |
| 155 <Compile Include="Automaton\IndexedAlphabetBase.cs" /> | |
| 156 <Compile Include="Automaton\IAlphabetBuilder.cs" /> | |
| 157 <Compile Include="Automaton\RegularExpressions\AltToken.cs" /> | |
| 158 <Compile Include="Automaton\RegularExpressions\BinaryToken.cs" /> | |
| 159 <Compile Include="Automaton\RegularExpressions\CatToken.cs" /> | |
| 160 <Compile Include="Automaton\RegularExpressions\StarToken.cs" /> | |
| 161 <Compile Include="Automaton\RegularExpressions\SymbolToken.cs" /> | |
| 162 <Compile Include="Automaton\RegularExpressions\EmptyToken.cs" /> | |
| 163 <Compile Include="Automaton\RegularExpressions\Token.cs" /> | |
| 164 <Compile Include="Automaton\RegularExpressions\IVisitor.cs" /> | |
| 165 <Compile Include="Automaton\AutomatonTransition.cs" /> | |
| 163 | 166 <Compile Include="Formats\JSON\JSONElementContext.cs" /> |
| 167 <Compile Include="Formats\JSON\JSONElementType.cs" /> | |
| 168 <Compile Include="Formats\JSON\JSONGrammar.cs" /> | |
| 169 <Compile Include="Formats\JSON\JSONParser.cs" /> | |
| 170 <Compile Include="Formats\JSON\JSONScanner.cs" /> | |
| 171 <Compile Include="Formats\JSON\JsonTokenType.cs" /> | |
| 172 <Compile Include="Formats\JSON\JSONWriter.cs" /> | |
| 173 <Compile Include="Formats\JSON\JSONXmlReader.cs" /> | |
| 174 <Compile Include="Formats\JSON\JSONXmlReaderOptions.cs" /> | |
| 175 <Compile Include="Formats\JSON\StringTranslator.cs" /> | |
| 176 <Compile Include="Automaton\MapAlphabet.cs" /> | |
| 164 | 177 <Compile Include="Formats\CharAlphabet.cs" /> |
| 178 <Compile Include="Formats\ByteAlphabet.cs" /> | |
| 165 | 179 <Compile Include="Automaton\IDFATable.cs" /> |
| 180 <Compile Include="Automaton\IDFATableBuilder.cs" /> | |
| 169 | 181 <Compile Include="Automaton\DFATable.cs" /> |
| 172 | 182 <Compile Include="Automaton\RegularExpressions\RegularExpressionVisitor.cs" /> |
| 183 <Compile Include="Automaton\RegularExpressions\ITaggedDFABuilder.cs" /> | |
| 173 | 184 <Compile Include="Formats\TextScanner.cs" /> |
| 176 | 185 <Compile Include="Formats\StringScanner.cs" /> |
| 186 <Compile Include="Formats\ReaderScanner.cs" /> | |
| 187 <Compile Include="Formats\ScannerContext.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" /> |
| 2 | 197 </ItemGroup> |
| 198 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | |
| 11 | 199 <ItemGroup /> |
| 72 | 200 <ProjectExtensions> |
| 201 <MonoDevelop> | |
| 202 <Properties> | |
| 203 <Policies> | |
| 222 | 204 <CSharpFormattingPolicy IndentBlock="True" IndentBraces="False" IndentSwitchSection="False" IndentSwitchCaseSection="True" LabelPositioning="OneLess" NewLinesForBracesInTypes="True" NewLinesForBracesInMethods="True" 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" SpacingAfterMethodDeclarationName="True" SpaceWithinMethodDeclarationParenthesis="False" SpaceBetweenEmptyMethodDeclarationParentheses="False" SpaceAfterMethodCallName="True" SpaceWithinMethodCallParentheses="False" SpaceBetweenEmptyMethodCallParentheses="False" SpaceAfterControlFlowStatementKeyword="True" SpaceWithinExpressionParentheses="False" SpaceWithinCastParentheses="False" SpaceWithinOtherParentheses="False" SpaceAfterCast="False" SpacesIgnoreAroundVariableDeclaration="False" SpaceBeforeOpenSquareBracket="True" SpaceBetweenEmptySquareBrackets="False" SpaceWithinSquareBrackets="False" SpaceAfterColonInBaseTypeDeclaration="True" SpaceAfterComma="True" SpaceAfterDot="False" SpaceAfterSemicolonsInForStatement="True" SpaceBeforeColonInBaseTypeDeclaration="True" SpaceBeforeComma="False" SpaceBeforeDot="False" SpaceBeforeSemicolonsInForStatement="False" SpacingAroundBinaryOperator="Single" WrappingPreserveSingleLine="True" WrappingKeepStatementsOnSingleLine="True" PlaceSystemDirectiveFirst="True" scope="text/x-csharp" /> |
| 205 <TextStylePolicy FileWidth="120" TabWidth="4" IndentWidth="4" RemoveTrailingWhitespace="True" NoTabsAfterNonTabs="False" TabsToSpaces="True" EolMarker="Unix" scope="text/x-csharp" /> | |
| 72 | 206 <DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="MSBuild" /> |
| 222 | 207 <TextStylePolicy FileWidth="120" TabWidth="4" TabsToSpaces="False" IndentWidth="4" RemoveTrailingWhitespace="True" NoTabsAfterNonTabs="False" EolMarker="Native" scope="application/xml" /> |
| 208 <XmlFormattingPolicy scope="application/xml"> | |
| 209 <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" /> | |
| 210 </XmlFormattingPolicy> | |
| 211 <TextStylePolicy FileWidth="120" TabWidth="4" TabsToSpaces="False" IndentWidth="4" RemoveTrailingWhitespace="True" NoTabsAfterNonTabs="False" EolMarker="Native" scope="text/plain" /> | |
| 72 | 212 <NameConventionPolicy> |
| 213 <Rules> | |
| 214 <NamingRule Name="Namespaces" AffectedEntity="Namespace" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 215 <NamingRule Name="Types" AffectedEntity="Class, Struct, Enum, Delegate" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 216 <NamingRule Name="Interfaces" AffectedEntity="Interface" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
| 217 <RequiredPrefixes> | |
| 218 <String>I</String> | |
| 219 </RequiredPrefixes> | |
| 220 </NamingRule> | |
| 221 <NamingRule Name="Attributes" AffectedEntity="CustomAttributes" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
| 222 <RequiredSuffixes> | |
| 223 <String>Attribute</String> | |
| 224 </RequiredSuffixes> | |
| 225 </NamingRule> | |
| 226 <NamingRule Name="Event Arguments" AffectedEntity="CustomEventArgs" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
| 227 <RequiredSuffixes> | |
| 228 <String>EventArgs</String> | |
| 229 </RequiredSuffixes> | |
| 230 </NamingRule> | |
| 231 <NamingRule Name="Exceptions" AffectedEntity="CustomExceptions" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
| 232 <RequiredSuffixes> | |
| 233 <String>Exception</String> | |
| 234 </RequiredSuffixes> | |
| 235 </NamingRule> | |
| 236 <NamingRule Name="Methods" AffectedEntity="Methods" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 237 <NamingRule Name="Static Readonly Fields" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Protected, Public" NamingStyle="CamelCase" IncludeInstanceMembers="False" IncludeStaticEntities="True" /> | |
| 238 <NamingRule Name="Fields (Non Private)" AffectedEntity="Field" VisibilityMask="Internal, Public" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 239 <NamingRule Name="ReadOnly Fields (Non Private)" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Public" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False" /> | |
| 240 <NamingRule Name="Fields (Private)" AffectedEntity="Field, ReadonlyField" VisibilityMask="Private, Protected" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False"> | |
| 241 <RequiredPrefixes> | |
| 242 <String>m_</String> | |
| 243 </RequiredPrefixes> | |
| 244 </NamingRule> | |
| 245 <NamingRule Name="Static Fields (Private)" AffectedEntity="Field" VisibilityMask="Private" NamingStyle="CamelCase" IncludeInstanceMembers="False" IncludeStaticEntities="True"> | |
| 246 <RequiredPrefixes> | |
| 247 <String>_</String> | |
| 248 </RequiredPrefixes> | |
| 249 </NamingRule> | |
| 250 <NamingRule Name="ReadOnly Fields (Private)" AffectedEntity="ReadonlyField" VisibilityMask="Private, Protected" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False"> | |
| 251 <RequiredPrefixes> | |
| 252 <String>m_</String> | |
| 253 </RequiredPrefixes> | |
| 254 </NamingRule> | |
| 255 <NamingRule Name="Constant Fields" AffectedEntity="ConstantField" VisibilityMask="VisibilityMask" NamingStyle="AllUpper" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 256 <NamingRule Name="Properties" AffectedEntity="Property" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 257 <NamingRule Name="Events" AffectedEntity="Event" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 258 <NamingRule Name="Enum Members" AffectedEntity="EnumMember" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 259 <NamingRule Name="Parameters" AffectedEntity="Parameter, LocalVariable" VisibilityMask="VisibilityMask" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
| 260 <NamingRule Name="Type Parameters" AffectedEntity="TypeParameter" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
| 261 <RequiredPrefixes> | |
| 262 <String>T</String> | |
| 263 </RequiredPrefixes> | |
| 264 </NamingRule> | |
| 265 </Rules> | |
| 266 </NameConventionPolicy> | |
| 267 </Policies> | |
| 268 </Properties> | |
| 269 </MonoDevelop> | |
| 270 </ProjectExtensions> | |
| 152 | 271 <ItemGroup> |
| 272 <Folder Include="Components\" /> | |
| 162 | 273 <Folder Include="Automaton\RegularExpressions\" /> |
| 163 | 274 <Folder Include="Formats\" /> |
| 275 <Folder Include="Formats\JSON\" /> | |
| 152 | 276 </ItemGroup> |
| 0 | 277 </Project> |
