Mercurial > pub > ImplabNet
comparison Implab/Implab.csproj @ 164:ec35731ae299 ref20160224
Almost complete DFA refactoring
| author | cin |
|---|---|
| date | Thu, 25 Feb 2016 02:11:13 +0300 |
| parents | 419aa51b04fd |
| children | e227e78d72e4 |
comparison
equal
deleted
inserted
replaced
| 163:419aa51b04fd | 164:ec35731ae299 |
|---|---|
| 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> |
| 146 <Compile Include="Components\App.cs" /> | 149 <Compile Include="Components\App.cs" /> |
| 147 <Compile Include="Components\IRunnable.cs" /> | 150 <Compile Include="Components\IRunnable.cs" /> |
| 148 <Compile Include="Components\ExecutionState.cs" /> | 151 <Compile Include="Components\ExecutionState.cs" /> |
| 149 <Compile Include="Components\RunnableComponent.cs" /> | 152 <Compile Include="Components\RunnableComponent.cs" /> |
| 150 <Compile Include="Components\IFactory.cs" /> | 153 <Compile Include="Components\IFactory.cs" /> |
| 151 <Compile Include="Automaton\CDFADefinition.cs" /> | |
| 152 <Compile Include="Automaton\DFAStateDescriptor.cs" /> | 154 <Compile Include="Automaton\DFAStateDescriptor.cs" /> |
| 153 <Compile Include="Automaton\DFAutomaton.cs" /> | 155 <Compile Include="Automaton\DFAutomaton.cs" /> |
| 154 <Compile Include="Automaton\EDFADefinition.cs" /> | |
| 155 <Compile Include="Automaton\EnumAlphabet.cs" /> | 156 <Compile Include="Automaton\EnumAlphabet.cs" /> |
| 156 <Compile Include="Automaton\IAlphabet.cs" /> | 157 <Compile Include="Automaton\IAlphabet.cs" /> |
| 157 <Compile Include="Automaton\IDFADefinition.cs" /> | |
| 158 <Compile Include="Automaton\ParserException.cs" /> | 158 <Compile Include="Automaton\ParserException.cs" /> |
| 159 <Compile Include="Automaton\Scanner.cs" /> | 159 <Compile Include="Automaton\Scanner.cs" /> |
| 160 <Compile Include="Automaton\DFADefinition.cs" /> | |
| 161 <Compile Include="Automaton\IndexedAlphabetBase.cs" /> | 160 <Compile Include="Automaton\IndexedAlphabetBase.cs" /> |
| 162 <Compile Include="Automaton\CharAlphabet.cs" /> | |
| 163 <Compile Include="Automaton\IAlphabetBuilder.cs" /> | 161 <Compile Include="Automaton\IAlphabetBuilder.cs" /> |
| 164 <Compile Include="Automaton\IDFADefinitionBuilder.cs" /> | |
| 165 <Compile Include="Automaton\RegularExpressions\AltToken.cs" /> | 162 <Compile Include="Automaton\RegularExpressions\AltToken.cs" /> |
| 166 <Compile Include="Automaton\RegularExpressions\BinaryToken.cs" /> | 163 <Compile Include="Automaton\RegularExpressions\BinaryToken.cs" /> |
| 167 <Compile Include="Automaton\RegularExpressions\CatToken.cs" /> | 164 <Compile Include="Automaton\RegularExpressions\CatToken.cs" /> |
| 168 <Compile Include="Automaton\DFAConst.cs" /> | 165 <Compile Include="Automaton\DFAConst.cs" /> |
| 169 <Compile Include="Automaton\RegularExpressions\Grammar.cs" /> | 166 <Compile Include="Automaton\RegularExpressions\Grammar.cs" /> |
| 172 <Compile Include="Automaton\RegularExpressions\EmptyToken.cs" /> | 169 <Compile Include="Automaton\RegularExpressions\EmptyToken.cs" /> |
| 173 <Compile Include="Automaton\RegularExpressions\EndToken.cs" /> | 170 <Compile Include="Automaton\RegularExpressions\EndToken.cs" /> |
| 174 <Compile Include="Automaton\RegularExpressions\Token.cs" /> | 171 <Compile Include="Automaton\RegularExpressions\Token.cs" /> |
| 175 <Compile Include="Automaton\RegularExpressions\IVisitor.cs" /> | 172 <Compile Include="Automaton\RegularExpressions\IVisitor.cs" /> |
| 176 <Compile Include="Automaton\AutomatonTransition.cs" /> | 173 <Compile Include="Automaton\AutomatonTransition.cs" /> |
| 177 <Compile Include="Automaton\ByteAlphabet.cs" /> | |
| 178 <Compile Include="Automaton\RegularExpressions\RegularDFABuilder.cs" /> | 174 <Compile Include="Automaton\RegularExpressions\RegularDFABuilder.cs" /> |
| 179 <Compile Include="Formats\JSON\JSONElementContext.cs" /> | 175 <Compile Include="Formats\JSON\JSONElementContext.cs" /> |
| 180 <Compile Include="Formats\JSON\JSONElementType.cs" /> | 176 <Compile Include="Formats\JSON\JSONElementType.cs" /> |
| 181 <Compile Include="Formats\JSON\JSONGrammar.cs" /> | 177 <Compile Include="Formats\JSON\JSONGrammar.cs" /> |
| 182 <Compile Include="Formats\JSON\JSONParser.cs" /> | 178 <Compile Include="Formats\JSON\JSONParser.cs" /> |
| 186 <Compile Include="Formats\JSON\JSONXmlReader.cs" /> | 182 <Compile Include="Formats\JSON\JSONXmlReader.cs" /> |
| 187 <Compile Include="Formats\JSON\JSONXmlReaderOptions.cs" /> | 183 <Compile Include="Formats\JSON\JSONXmlReaderOptions.cs" /> |
| 188 <Compile Include="Formats\JSON\StringTranslator.cs" /> | 184 <Compile Include="Formats\JSON\StringTranslator.cs" /> |
| 189 <Compile Include="Automaton\MapAlphabet.cs" /> | 185 <Compile Include="Automaton\MapAlphabet.cs" /> |
| 190 <Compile Include="Automaton\DummyAlphabet.cs" /> | 186 <Compile Include="Automaton\DummyAlphabet.cs" /> |
| 187 <Compile Include="Automaton\DFATransitionTable.cs" /> | |
| 188 <Compile Include="Automaton\IDFATransitionTableBuilder.cs" /> | |
| 189 <Compile Include="Automaton\IDFATransitionTable.cs" /> | |
| 190 <Compile Include="Automaton\RegularExpressions\RegularDFADefinition.cs" /> | |
| 191 <Compile Include="Formats\CharAlphabet.cs" /> | |
| 192 <Compile Include="Formats\ByteAlphabet.cs" /> | |
| 191 </ItemGroup> | 193 </ItemGroup> |
| 192 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | 194 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
| 193 <ItemGroup /> | 195 <ItemGroup /> |
| 194 <ProjectExtensions> | 196 <ProjectExtensions> |
| 195 <MonoDevelop> | 197 <MonoDevelop> |
