comparison Implab/Implab.csproj @ 190:1c2a16d071a7 v2

Слияние с ref20160224
author cin
date Fri, 22 Apr 2016 13:08:08 +0300
parents dd4a3590f9c6
children d45bdf510514 98eeb63cedb2
comparison
equal deleted inserted replaced
161:2a8466f0cb8a 190:1c2a16d071a7
6 <ProjectGuid>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</ProjectGuid> 6 <ProjectGuid>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</ProjectGuid>
7 <OutputType>Library</OutputType> 7 <OutputType>Library</OutputType>
8 <RootNamespace>Implab</RootNamespace> 8 <RootNamespace>Implab</RootNamespace>
9 <AssemblyName>Implab</AssemblyName> 9 <AssemblyName>Implab</AssemblyName>
10 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> 10 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
11 <ReleaseVersion>0.2</ReleaseVersion>
12 <ProductVersion>8.0.30703</ProductVersion>
13 <SchemaVersion>2.0</SchemaVersion>
11 </PropertyGroup> 14 </PropertyGroup>
12 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 15 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
13 <DebugSymbols>true</DebugSymbols> 16 <DebugSymbols>true</DebugSymbols>
14 <DebugType>full</DebugType> 17 <DebugType>full</DebugType>
15 <Optimize>false</Optimize> 18 <Optimize>false</Optimize>
86 <Compile Include="IProgressNotifier.cs" /> 89 <Compile Include="IProgressNotifier.cs" />
87 <Compile Include="IPromiseT.cs" /> 90 <Compile Include="IPromiseT.cs" />
88 <Compile Include="IPromise.cs" /> 91 <Compile Include="IPromise.cs" />
89 <Compile Include="IServiceLocator.cs" /> 92 <Compile Include="IServiceLocator.cs" />
90 <Compile Include="ITaskController.cs" /> 93 <Compile Include="ITaskController.cs" />
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" />
98 <Compile Include="JSON\JSONXmlReader.cs" />
99 <Compile Include="JSON\JSONXmlReaderOptions.cs" />
100 <Compile Include="JSON\StringTranslator.cs" />
101 <Compile Include="Parallels\DispatchPool.cs" /> 94 <Compile Include="Parallels\DispatchPool.cs" />
102 <Compile Include="Parallels\ArrayTraits.cs" /> 95 <Compile Include="Parallels\ArrayTraits.cs" />
103 <Compile Include="Parallels\MTQueue.cs" /> 96 <Compile Include="Parallels\MTQueue.cs" />
104 <Compile Include="Parallels\WorkerPool.cs" /> 97 <Compile Include="Parallels\WorkerPool.cs" />
105 <Compile Include="Parsing\AltToken.cs" />
106 <Compile Include="Parsing\BinaryToken.cs" />
107 <Compile Include="Parsing\CatToken.cs" />
108 <Compile Include="Parsing\CDFADefinition.cs" />
109 <Compile Include="Parsing\DFABuilder.cs" />
110 <Compile Include="Parsing\DFAStateDescriptor.cs" />
111 <Compile Include="Parsing\DFAutomaton.cs" />
112 <Compile Include="Parsing\EDFADefinition.cs" />
113 <Compile Include="Parsing\EmptyToken.cs" />
114 <Compile Include="Parsing\EndToken.cs" />
115 <Compile Include="Parsing\EnumAlphabet.cs" />
116 <Compile Include="Parsing\Grammar.cs" />
117 <Compile Include="Parsing\IAlphabet.cs" />
118 <Compile Include="Parsing\IDFADefinition.cs" />
119 <Compile Include="Parsing\IVisitor.cs" />
120 <Compile Include="Parsing\ParserException.cs" />
121 <Compile Include="Parsing\Scanner.cs" />
122 <Compile Include="Parsing\StarToken.cs" />
123 <Compile Include="Parsing\SymbolToken.cs" />
124 <Compile Include="Parsing\Token.cs" />
125 <Compile Include="ProgressInitEventArgs.cs" /> 98 <Compile Include="ProgressInitEventArgs.cs" />
126 <Compile Include="Properties\AssemblyInfo.cs" /> 99 <Compile Include="Properties\AssemblyInfo.cs" />
127 <Compile Include="Parallels\AsyncPool.cs" /> 100 <Compile Include="Parallels\AsyncPool.cs" />
128 <Compile Include="Safe.cs" /> 101 <Compile Include="Safe.cs" />
129 <Compile Include="ValueEventArgs.cs" /> 102 <Compile Include="ValueEventArgs.cs" />
176 <Compile Include="Components\App.cs" /> 149 <Compile Include="Components\App.cs" />
177 <Compile Include="Components\IRunnable.cs" /> 150 <Compile Include="Components\IRunnable.cs" />
178 <Compile Include="Components\ExecutionState.cs" /> 151 <Compile Include="Components\ExecutionState.cs" />
179 <Compile Include="Components\RunnableComponent.cs" /> 152 <Compile Include="Components\RunnableComponent.cs" />
180 <Compile Include="Components\IFactory.cs" /> 153 <Compile Include="Components\IFactory.cs" />
181 <Compile Include="Parsing\DFADefinition.cs" /> 154 <Compile Include="Automaton\IAlphabet.cs" />
182 <Compile Include="Parsing\IndexedAlphabetBase.cs" /> 155 <Compile Include="Automaton\ParserException.cs" />
183 <Compile Include="Parsing\CharAlphabet.cs" /> 156 <Compile Include="Automaton\IndexedAlphabetBase.cs" />
184 <Compile Include="Parsing\IAlphabetBuilder.cs" /> 157 <Compile Include="Automaton\IAlphabetBuilder.cs" />
185 <Compile Include="Parsing\IDFADefinitionBuilder.cs" /> 158 <Compile Include="Automaton\RegularExpressions\AltToken.cs" />
159 <Compile Include="Automaton\RegularExpressions\BinaryToken.cs" />
160 <Compile Include="Automaton\RegularExpressions\CatToken.cs" />
161 <Compile Include="Automaton\RegularExpressions\StarToken.cs" />
162 <Compile Include="Automaton\RegularExpressions\SymbolToken.cs" />
163 <Compile Include="Automaton\RegularExpressions\EmptyToken.cs" />
164 <Compile Include="Automaton\RegularExpressions\Token.cs" />
165 <Compile Include="Automaton\RegularExpressions\IVisitor.cs" />
166 <Compile Include="Automaton\AutomatonTransition.cs" />
167 <Compile Include="Formats\JSON\JSONElementContext.cs" />
168 <Compile Include="Formats\JSON\JSONElementType.cs" />
169 <Compile Include="Formats\JSON\JSONGrammar.cs" />
170 <Compile Include="Formats\JSON\JSONParser.cs" />
171 <Compile Include="Formats\JSON\JSONScanner.cs" />
172 <Compile Include="Formats\JSON\JsonTokenType.cs" />
173 <Compile Include="Formats\JSON\JSONWriter.cs" />
174 <Compile Include="Formats\JSON\JSONXmlReader.cs" />
175 <Compile Include="Formats\JSON\JSONXmlReaderOptions.cs" />
176 <Compile Include="Formats\JSON\StringTranslator.cs" />
177 <Compile Include="Automaton\MapAlphabet.cs" />
178 <Compile Include="Formats\CharAlphabet.cs" />
179 <Compile Include="Formats\ByteAlphabet.cs" />
180 <Compile Include="Automaton\IDFATable.cs" />
181 <Compile Include="Automaton\IDFATableBuilder.cs" />
182 <Compile Include="Automaton\DFATable.cs" />
183 <Compile Include="Automaton\RegularExpressions\RegularExpressionVisitor.cs" />
184 <Compile Include="Automaton\RegularExpressions\ITaggedDFABuilder.cs" />
185 <Compile Include="Formats\TextScanner.cs" />
186 <Compile Include="Formats\StringScanner.cs" />
187 <Compile Include="Formats\ReaderScanner.cs" />
188 <Compile Include="Formats\ScannerContext.cs" />
189 <Compile Include="Formats\Grammar.cs" />
190 <Compile Include="Automaton\RegularExpressions\EndTokenT.cs" />
191 <Compile Include="Automaton\RegularExpressions\EndToken.cs" />
192 <Compile Include="Automaton\RegularExpressions\RegularExpressionVisitorT.cs" />
193 <Compile Include="Automaton\AutomatonConst.cs" />
194 <Compile Include="Automaton\RegularExpressions\RegularDFA.cs" />
195 <Compile Include="Components\LazyAndWeak.cs" />
196 <Compile Include="AbstractTask.cs" />
197 <Compile Include="AbstractTaskT.cs" />
186 </ItemGroup> 198 </ItemGroup>
187 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 199 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
188 <ItemGroup /> 200 <ItemGroup />
189 <ProjectExtensions> 201 <ProjectExtensions>
190 <MonoDevelop> 202 <MonoDevelop>
255 </Properties> 267 </Properties>
256 </MonoDevelop> 268 </MonoDevelop>
257 </ProjectExtensions> 269 </ProjectExtensions>
258 <ItemGroup> 270 <ItemGroup>
259 <Folder Include="Components\" /> 271 <Folder Include="Components\" />
272 <Folder Include="Automaton\RegularExpressions\" />
273 <Folder Include="Formats\" />
274 <Folder Include="Formats\JSON\" />
260 </ItemGroup> 275 </ItemGroup>
261 </Project> 276 </Project>