Mercurial > pub > ImplabNet
comparison Implab/Implab.csproj @ 55:c0bf853aa04f
Added initial JSON support
+JSONParser
+JSONWriter
author | cin |
---|---|
date | Sun, 15 Jun 2014 19:39:11 +0400 |
parents | d10034588e38 |
children | 1710dcda34bb |
comparison
equal
deleted
inserted
replaced
51:2c332a9c64c0 | 55:c0bf853aa04f |
---|---|
31 <ItemGroup> | 31 <ItemGroup> |
32 <Reference Include="System" /> | 32 <Reference Include="System" /> |
33 </ItemGroup> | 33 </ItemGroup> |
34 <ItemGroup> | 34 <ItemGroup> |
35 <Compile Include="Component.cs" /> | 35 <Compile Include="Component.cs" /> |
36 <Compile Include="CustomEqualityComparer.cs" /> | |
36 <Compile Include="Diagnostics\ConsoleTraceListener.cs" /> | 37 <Compile Include="Diagnostics\ConsoleTraceListener.cs" /> |
37 <Compile Include="Diagnostics\EventText.cs" /> | 38 <Compile Include="Diagnostics\EventText.cs" /> |
38 <Compile Include="Diagnostics\IEventTextFormatter.cs" /> | 39 <Compile Include="Diagnostics\IEventTextFormatter.cs" /> |
39 <Compile Include="Diagnostics\LogChannel.cs" /> | 40 <Compile Include="Diagnostics\LogChannel.cs" /> |
40 <Compile Include="Diagnostics\LogicalOperation.cs" /> | 41 <Compile Include="Diagnostics\LogicalOperation.cs" /> |
50 <Compile Include="IProgressNotifier.cs" /> | 51 <Compile Include="IProgressNotifier.cs" /> |
51 <Compile Include="IPromise.cs" /> | 52 <Compile Include="IPromise.cs" /> |
52 <Compile Include="IPromiseBase.cs" /> | 53 <Compile Include="IPromiseBase.cs" /> |
53 <Compile Include="IServiceLocator.cs" /> | 54 <Compile Include="IServiceLocator.cs" /> |
54 <Compile Include="ITaskController.cs" /> | 55 <Compile Include="ITaskController.cs" /> |
56 <Compile Include="JSON\JSONElementContext.cs" /> | |
57 <Compile Include="JSON\JSONElementType.cs" /> | |
58 <Compile Include="JSON\JSONGrammar.cs" /> | |
59 <Compile Include="JSON\JSONParser.cs" /> | |
60 <Compile Include="JSON\JSONScanner.cs" /> | |
61 <Compile Include="JSON\JsonTokenType.cs" /> | |
62 <Compile Include="JSON\JSONWriter.cs" /> | |
63 <Compile Include="JSON\StringTranslator.cs" /> | |
55 <Compile Include="Parallels\DispatchPool.cs" /> | 64 <Compile Include="Parallels\DispatchPool.cs" /> |
56 <Compile Include="Parallels\ArrayTraits.cs" /> | 65 <Compile Include="Parallels\ArrayTraits.cs" /> |
57 <Compile Include="Parallels\MTQueue.cs" /> | 66 <Compile Include="Parallels\MTQueue.cs" /> |
58 <Compile Include="Parallels\WorkerPool.cs" /> | 67 <Compile Include="Parallels\WorkerPool.cs" /> |
68 <Compile Include="Parsing\Alphabet.cs" /> | |
69 <Compile Include="Parsing\AlphabetBase.cs" /> | |
70 <Compile Include="Parsing\AltToken.cs" /> | |
71 <Compile Include="Parsing\BinaryToken.cs" /> | |
72 <Compile Include="Parsing\CatToken.cs" /> | |
73 <Compile Include="Parsing\CDFADefinition.cs" /> | |
74 <Compile Include="Parsing\DFABuilder.cs" /> | |
75 <Compile Include="Parsing\DFADefinitionBase.cs" /> | |
76 <Compile Include="Parsing\DFAStateDescriptor.cs" /> | |
77 <Compile Include="Parsing\DFAutomaton.cs" /> | |
78 <Compile Include="Parsing\EDFADefinition.cs" /> | |
79 <Compile Include="Parsing\EmptyToken.cs" /> | |
80 <Compile Include="Parsing\EndToken.cs" /> | |
81 <Compile Include="Parsing\EnumAlphabet.cs" /> | |
82 <Compile Include="Parsing\Grammar.cs" /> | |
83 <Compile Include="Parsing\IAlphabet.cs" /> | |
84 <Compile Include="Parsing\IDFADefinition.cs" /> | |
85 <Compile Include="Parsing\IVisitor.cs" /> | |
86 <Compile Include="Parsing\ParserException.cs" /> | |
87 <Compile Include="Parsing\Scanner.cs" /> | |
88 <Compile Include="Parsing\StarToken.cs" /> | |
89 <Compile Include="Parsing\SymbolToken.cs" /> | |
90 <Compile Include="Parsing\Token.cs" /> | |
59 <Compile Include="ServiceLocator.cs" /> | 91 <Compile Include="ServiceLocator.cs" /> |
60 <Compile Include="TaskController.cs" /> | 92 <Compile Include="TaskController.cs" /> |
61 <Compile Include="ProgressInitEventArgs.cs" /> | 93 <Compile Include="ProgressInitEventArgs.cs" /> |
62 <Compile Include="Properties\AssemblyInfo.cs" /> | 94 <Compile Include="Properties\AssemblyInfo.cs" /> |
63 <Compile Include="Promise.cs" /> | 95 <Compile Include="Promise.cs" /> |