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