Mercurial > pub > ImplabNet
annotate Implab/Implab.csproj @ 162:0526412bbb26 ref20160224
DFA refactoring
author | cin |
---|---|
date | Wed, 24 Feb 2016 08:39:53 +0300 |
parents | 2a8466f0cb8a |
children | 419aa51b04fd |
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" /> |
2 | 73 </ItemGroup> |
74 <ItemGroup> | |
55 | 75 <Compile Include="CustomEqualityComparer.cs" /> |
36 | 76 <Compile Include="Diagnostics\ConsoleTraceListener.cs" /> |
40 | 77 <Compile Include="Diagnostics\EventText.cs" /> |
36 | 78 <Compile Include="Diagnostics\LogChannel.cs" /> |
35 | 79 <Compile Include="Diagnostics\LogicalOperation.cs" /> |
40 | 80 <Compile Include="Diagnostics\TextFileListener.cs" /> |
36 | 81 <Compile Include="Diagnostics\TraceLog.cs" /> |
82 <Compile Include="Diagnostics\TraceEvent.cs" /> | |
35 | 83 <Compile Include="Diagnostics\TraceEventType.cs" /> |
12 | 84 <Compile Include="ICancellable.cs" /> |
85 <Compile Include="IProgressHandler.cs" /> | |
86 <Compile Include="IProgressNotifier.cs" /> | |
66 | 87 <Compile Include="IPromiseT.cs" /> |
8 | 88 <Compile Include="IPromise.cs" /> |
40 | 89 <Compile Include="IServiceLocator.cs" /> |
12 | 90 <Compile Include="ITaskController.cs" /> |
55 | 91 <Compile Include="JSON\JSONElementContext.cs" /> |
92 <Compile Include="JSON\JSONElementType.cs" /> | |
93 <Compile Include="JSON\JSONGrammar.cs" /> | |
94 <Compile Include="JSON\JSONParser.cs" /> | |
95 <Compile Include="JSON\JSONScanner.cs" /> | |
96 <Compile Include="JSON\JsonTokenType.cs" /> | |
97 <Compile Include="JSON\JSONWriter.cs" /> | |
58 | 98 <Compile Include="JSON\JSONXmlReader.cs" /> |
60 | 99 <Compile Include="JSON\JSONXmlReaderOptions.cs" /> |
55 | 100 <Compile Include="JSON\StringTranslator.cs" /> |
15 | 101 <Compile Include="Parallels\DispatchPool.cs" /> |
102 <Compile Include="Parallels\ArrayTraits.cs" /> | |
14 | 103 <Compile Include="Parallels\MTQueue.cs" /> |
12 | 104 <Compile Include="Parallels\WorkerPool.cs" /> |
7 | 105 <Compile Include="ProgressInitEventArgs.cs" /> |
2 | 106 <Compile Include="Properties\AssemblyInfo.cs" /> |
11 | 107 <Compile Include="Parallels\AsyncPool.cs" /> |
2 | 108 <Compile Include="Safe.cs" /> |
7 | 109 <Compile Include="ValueEventArgs.cs" /> |
72 | 110 <Compile Include="PromiseExtensions.cs" /> |
111 <Compile Include="SyncContextPromise.cs" /> | |
92 | 112 <Compile Include="Diagnostics\OperationContext.cs" /> |
113 <Compile Include="Diagnostics\TraceContext.cs" /> | |
114 <Compile Include="Diagnostics\LogEventArgs.cs" /> | |
115 <Compile Include="Diagnostics\LogEventArgsT.cs" /> | |
116 <Compile Include="Diagnostics\Extensions.cs" /> | |
104 | 117 <Compile Include="PromiseEventType.cs" /> |
119
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
118 <Compile Include="Parallels\AsyncQueue.cs" /> |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
119 <Compile Include="PromiseT.cs" /> |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
120 <Compile Include="IDeferred.cs" /> |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
121 <Compile Include="IDeferredT.cs" /> |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
122 <Compile Include="Promise.cs" /> |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
123 <Compile Include="PromiseTransientException.cs" /> |
128
6241bff0cd64
Added Signal class a lightweight alternative to ManualResetEvent
cin
parents:
127
diff
changeset
|
124 <Compile Include="Parallels\Signal.cs" /> |
129 | 125 <Compile Include="Parallels\SharedLock.cs" /> |
134 | 126 <Compile Include="Diagnostics\ILogWriter.cs" /> |
127 <Compile Include="Diagnostics\ListenerBase.cs" /> | |
137 | 128 <Compile Include="Parallels\BlockingQueue.cs" /> |
144 | 129 <Compile Include="AbstractEvent.cs" /> |
130 <Compile Include="AbstractPromise.cs" /> | |
131 <Compile Include="AbstractPromiseT.cs" /> | |
132 <Compile Include="FuncTask.cs" /> | |
133 <Compile Include="FuncTaskBase.cs" /> | |
134 <Compile Include="FuncTaskT.cs" /> | |
145 | 135 <Compile Include="ActionChainTaskBase.cs" /> |
136 <Compile Include="ActionChainTask.cs" /> | |
137 <Compile Include="ActionChainTaskT.cs" /> | |
138 <Compile Include="FuncChainTaskBase.cs" /> | |
139 <Compile Include="FuncChainTask.cs" /> | |
140 <Compile Include="FuncChainTaskT.cs" /> | |
141 <Compile Include="ActionTaskBase.cs" /> | |
142 <Compile Include="ActionTask.cs" /> | |
143 <Compile Include="ActionTaskT.cs" /> | |
144 <Compile Include="ICancellationToken.cs" /> | |
145 <Compile Include="SuccessPromise.cs" /> | |
146 <Compile Include="SuccessPromiseT.cs" /> | |
151 | 147 <Compile Include="PromiseAwaiterT.cs" /> |
148 <Compile Include="PromiseAwaiter.cs" /> | |
152 | 149 <Compile Include="Components\ComponentContainer.cs" /> |
150 <Compile Include="Components\Disposable.cs" /> | |
151 <Compile Include="Components\DisposablePool.cs" /> | |
152 <Compile Include="Components\ObjectPool.cs" /> | |
153 <Compile Include="Components\ServiceLocator.cs" /> | |
154 <Compile Include="Components\IInitializable.cs" /> | |
155 <Compile Include="TaskController.cs" /> | |
156 <Compile Include="Components\App.cs" /> | |
157 <Compile Include="Components\IRunnable.cs" /> | |
158 <Compile Include="Components\ExecutionState.cs" /> | |
156
97fbbf816844
Promises: SignalXXX methods merged into SignalHandler method.
cin
parents:
152
diff
changeset
|
159 <Compile Include="Components\RunnableComponent.cs" /> |
97fbbf816844
Promises: SignalXXX methods merged into SignalHandler method.
cin
parents:
152
diff
changeset
|
160 <Compile Include="Components\IFactory.cs" /> |
162 | 161 <Compile Include="Automaton\CDFADefinition.cs" /> |
162 <Compile Include="Automaton\DFAStateDescriptor.cs" /> | |
163 <Compile Include="Automaton\DFAutomaton.cs" /> | |
164 <Compile Include="Automaton\EDFADefinition.cs" /> | |
165 <Compile Include="Automaton\EnumAlphabet.cs" /> | |
166 <Compile Include="Automaton\IAlphabet.cs" /> | |
167 <Compile Include="Automaton\IDFADefinition.cs" /> | |
168 <Compile Include="Automaton\ParserException.cs" /> | |
169 <Compile Include="Automaton\Scanner.cs" /> | |
170 <Compile Include="Automaton\DFADefinition.cs" /> | |
171 <Compile Include="Automaton\IndexedAlphabetBase.cs" /> | |
172 <Compile Include="Automaton\CharAlphabet.cs" /> | |
173 <Compile Include="Automaton\IAlphabetBuilder.cs" /> | |
174 <Compile Include="Automaton\IDFADefinitionBuilder.cs" /> | |
175 <Compile Include="Automaton\RegularExpressions\AltToken.cs" /> | |
176 <Compile Include="Automaton\RegularExpressions\BinaryToken.cs" /> | |
177 <Compile Include="Automaton\RegularExpressions\CatToken.cs" /> | |
178 <Compile Include="Automaton\DFAConst.cs" /> | |
179 <Compile Include="Automaton\RegularExpressions\Grammar.cs" /> | |
180 <Compile Include="Automaton\RegularExpressions\StarToken.cs" /> | |
181 <Compile Include="Automaton\RegularExpressions\SymbolToken.cs" /> | |
182 <Compile Include="Automaton\RegularExpressions\EmptyToken.cs" /> | |
183 <Compile Include="Automaton\RegularExpressions\EndToken.cs" /> | |
184 <Compile Include="Automaton\RegularExpressions\Token.cs" /> | |
185 <Compile Include="Automaton\RegularExpressions\IVisitor.cs" /> | |
186 <Compile Include="Automaton\RegularExpressions\DFABuilder.cs" /> | |
187 <Compile Include="Automaton\AutomatonTransition.cs" /> | |
188 <Compile Include="Automaton\ByteAlphabet.cs" /> | |
2 | 189 </ItemGroup> |
190 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | |
11 | 191 <ItemGroup /> |
72 | 192 <ProjectExtensions> |
193 <MonoDevelop> | |
194 <Properties> | |
195 <Policies> | |
196 <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" /> | |
197 <TextStylePolicy FileWidth="120" EolMarker="Unix" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/x-csharp" /> | |
198 <DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="MSBuild" /> | |
199 <TextStylePolicy FileWidth="120" TabsToSpaces="False" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="application/xml" /> | |
200 <XmlFormattingPolicy inheritsSet="Mono" inheritsScope="application/xml" scope="application/xml" /> | |
201 <TextStylePolicy FileWidth="120" TabsToSpaces="False" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/plain" /> | |
202 <NameConventionPolicy> | |
203 <Rules> | |
204 <NamingRule Name="Namespaces" AffectedEntity="Namespace" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
205 <NamingRule Name="Types" AffectedEntity="Class, Struct, Enum, Delegate" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
206 <NamingRule Name="Interfaces" AffectedEntity="Interface" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
207 <RequiredPrefixes> | |
208 <String>I</String> | |
209 </RequiredPrefixes> | |
210 </NamingRule> | |
211 <NamingRule Name="Attributes" AffectedEntity="CustomAttributes" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
212 <RequiredSuffixes> | |
213 <String>Attribute</String> | |
214 </RequiredSuffixes> | |
215 </NamingRule> | |
216 <NamingRule Name="Event Arguments" AffectedEntity="CustomEventArgs" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
217 <RequiredSuffixes> | |
218 <String>EventArgs</String> | |
219 </RequiredSuffixes> | |
220 </NamingRule> | |
221 <NamingRule Name="Exceptions" AffectedEntity="CustomExceptions" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
222 <RequiredSuffixes> | |
223 <String>Exception</String> | |
224 </RequiredSuffixes> | |
225 </NamingRule> | |
226 <NamingRule Name="Methods" AffectedEntity="Methods" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
227 <NamingRule Name="Static Readonly Fields" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Protected, Public" NamingStyle="CamelCase" IncludeInstanceMembers="False" IncludeStaticEntities="True" /> | |
228 <NamingRule Name="Fields (Non Private)" AffectedEntity="Field" VisibilityMask="Internal, Public" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
229 <NamingRule Name="ReadOnly Fields (Non Private)" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Public" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False" /> | |
230 <NamingRule Name="Fields (Private)" AffectedEntity="Field, ReadonlyField" VisibilityMask="Private, Protected" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False"> | |
231 <RequiredPrefixes> | |
232 <String>m_</String> | |
233 </RequiredPrefixes> | |
234 </NamingRule> | |
235 <NamingRule Name="Static Fields (Private)" AffectedEntity="Field" VisibilityMask="Private" NamingStyle="CamelCase" IncludeInstanceMembers="False" IncludeStaticEntities="True"> | |
236 <RequiredPrefixes> | |
237 <String>_</String> | |
238 </RequiredPrefixes> | |
239 </NamingRule> | |
240 <NamingRule Name="ReadOnly Fields (Private)" AffectedEntity="ReadonlyField" VisibilityMask="Private, Protected" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False"> | |
241 <RequiredPrefixes> | |
242 <String>m_</String> | |
243 </RequiredPrefixes> | |
244 </NamingRule> | |
245 <NamingRule Name="Constant Fields" AffectedEntity="ConstantField" VisibilityMask="VisibilityMask" NamingStyle="AllUpper" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
246 <NamingRule Name="Properties" AffectedEntity="Property" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
247 <NamingRule Name="Events" AffectedEntity="Event" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
248 <NamingRule Name="Enum Members" AffectedEntity="EnumMember" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
249 <NamingRule Name="Parameters" AffectedEntity="Parameter, LocalVariable" VisibilityMask="VisibilityMask" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" /> | |
250 <NamingRule Name="Type Parameters" AffectedEntity="TypeParameter" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True"> | |
251 <RequiredPrefixes> | |
252 <String>T</String> | |
253 </RequiredPrefixes> | |
254 </NamingRule> | |
255 </Rules> | |
256 </NameConventionPolicy> | |
257 </Policies> | |
258 </Properties> | |
259 </MonoDevelop> | |
260 </ProjectExtensions> | |
152 | 261 <ItemGroup> |
262 <Folder Include="Components\" /> | |
162 | 263 <Folder Include="Automaton\RegularExpressions\" /> |
152 | 264 </ItemGroup> |
0 | 265 </Project> |