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