| 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> | 
|  | 6     <ProductVersion>10.0.0</ProductVersion> | 
|  | 7     <SchemaVersion>2.0</SchemaVersion> | 
| 4 | 8     <ProjectGuid>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</ProjectGuid> | 
| 2 | 9     <OutputType>Library</OutputType> | 
|  | 10     <RootNamespace>Implab</RootNamespace> | 
|  | 11     <AssemblyName>Implab</AssemblyName> | 
|  | 12   </PropertyGroup> | 
|  | 13   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | 
|  | 14     <DebugSymbols>true</DebugSymbols> | 
|  | 15     <DebugType>full</DebugType> | 
|  | 16     <Optimize>false</Optimize> | 
|  | 17     <OutputPath>bin\Debug</OutputPath> | 
| 35 | 18     <DefineConstants>TRACE;DEBUG;</DefineConstants> | 
| 2 | 19     <ErrorReport>prompt</ErrorReport> | 
|  | 20     <WarningLevel>4</WarningLevel> | 
|  | 21     <ConsolePause>false</ConsolePause> | 
| 59 | 22     <RunCodeAnalysis>true</RunCodeAnalysis> | 
| 2 | 23   </PropertyGroup> | 
|  | 24   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | 
|  | 25     <DebugType>full</DebugType> | 
|  | 26     <Optimize>true</Optimize> | 
|  | 27     <OutputPath>bin\Release</OutputPath> | 
|  | 28     <ErrorReport>prompt</ErrorReport> | 
|  | 29     <WarningLevel>4</WarningLevel> | 
|  | 30     <ConsolePause>false</ConsolePause> | 
|  | 31   </PropertyGroup> | 
|  | 32   <ItemGroup> | 
|  | 33     <Reference Include="System" /> | 
| 58 | 34     <Reference Include="System.XML" /> | 
| 2 | 35   </ItemGroup> | 
|  | 36   <ItemGroup> | 
| 40 | 37     <Compile Include="Component.cs" /> | 
| 55 | 38     <Compile Include="CustomEqualityComparer.cs" /> | 
| 36 | 39     <Compile Include="Diagnostics\ConsoleTraceListener.cs" /> | 
| 40 | 40     <Compile Include="Diagnostics\EventText.cs" /> | 
|  | 41     <Compile Include="Diagnostics\IEventTextFormatter.cs" /> | 
| 36 | 42     <Compile Include="Diagnostics\LogChannel.cs" /> | 
| 35 | 43     <Compile Include="Diagnostics\LogicalOperation.cs" /> | 
| 40 | 44     <Compile Include="Diagnostics\TextFileListener.cs" /> | 
|  | 45     <Compile Include="Diagnostics\TextListenerBase.cs" /> | 
| 36 | 46     <Compile Include="Diagnostics\TraceLog.cs" /> | 
|  | 47     <Compile Include="Diagnostics\TraceContext.cs" /> | 
|  | 48     <Compile Include="Diagnostics\TraceEvent.cs" /> | 
| 35 | 49     <Compile Include="Diagnostics\TraceEventType.cs" /> | 
| 40 | 50     <Compile Include="Disposable.cs" /> | 
| 12 | 51     <Compile Include="ICancellable.cs" /> | 
|  | 52     <Compile Include="IProgressHandler.cs" /> | 
|  | 53     <Compile Include="IProgressNotifier.cs" /> | 
| 8 | 54     <Compile Include="IPromise.cs" /> | 
| 25 | 55     <Compile Include="IPromiseBase.cs" /> | 
| 40 | 56     <Compile Include="IServiceLocator.cs" /> | 
| 12 | 57     <Compile Include="ITaskController.cs" /> | 
| 55 | 58     <Compile Include="JSON\JSONElementContext.cs" /> | 
|  | 59     <Compile Include="JSON\JSONElementType.cs" /> | 
|  | 60     <Compile Include="JSON\JSONGrammar.cs" /> | 
|  | 61     <Compile Include="JSON\JSONParser.cs" /> | 
|  | 62     <Compile Include="JSON\JSONScanner.cs" /> | 
|  | 63     <Compile Include="JSON\JsonTokenType.cs" /> | 
|  | 64     <Compile Include="JSON\JSONWriter.cs" /> | 
| 58 | 65     <Compile Include="JSON\JSONXmlReader.cs" /> | 
| 60 | 66     <Compile Include="JSON\JSONXmlReaderOptions.cs" /> | 
| 55 | 67     <Compile Include="JSON\StringTranslator.cs" /> | 
| 15 | 68     <Compile Include="Parallels\DispatchPool.cs" /> | 
|  | 69     <Compile Include="Parallels\ArrayTraits.cs" /> | 
| 14 | 70     <Compile Include="Parallels\MTQueue.cs" /> | 
| 12 | 71     <Compile Include="Parallels\WorkerPool.cs" /> | 
| 55 | 72     <Compile Include="Parsing\Alphabet.cs" /> | 
|  | 73     <Compile Include="Parsing\AlphabetBase.cs" /> | 
|  | 74     <Compile Include="Parsing\AltToken.cs" /> | 
|  | 75     <Compile Include="Parsing\BinaryToken.cs" /> | 
|  | 76     <Compile Include="Parsing\CatToken.cs" /> | 
|  | 77     <Compile Include="Parsing\CDFADefinition.cs" /> | 
|  | 78     <Compile Include="Parsing\DFABuilder.cs" /> | 
|  | 79     <Compile Include="Parsing\DFADefinitionBase.cs" /> | 
|  | 80     <Compile Include="Parsing\DFAStateDescriptor.cs" /> | 
|  | 81     <Compile Include="Parsing\DFAutomaton.cs" /> | 
|  | 82     <Compile Include="Parsing\EDFADefinition.cs" /> | 
|  | 83     <Compile Include="Parsing\EmptyToken.cs" /> | 
|  | 84     <Compile Include="Parsing\EndToken.cs" /> | 
|  | 85     <Compile Include="Parsing\EnumAlphabet.cs" /> | 
|  | 86     <Compile Include="Parsing\Grammar.cs" /> | 
|  | 87     <Compile Include="Parsing\IAlphabet.cs" /> | 
|  | 88     <Compile Include="Parsing\IDFADefinition.cs" /> | 
|  | 89     <Compile Include="Parsing\IVisitor.cs" /> | 
|  | 90     <Compile Include="Parsing\ParserException.cs" /> | 
|  | 91     <Compile Include="Parsing\Scanner.cs" /> | 
|  | 92     <Compile Include="Parsing\StarToken.cs" /> | 
|  | 93     <Compile Include="Parsing\SymbolToken.cs" /> | 
|  | 94     <Compile Include="Parsing\Token.cs" /> | 
| 61 | 95     <Compile Include="SafePool.cs" /> | 
| 40 | 96     <Compile Include="ServiceLocator.cs" /> | 
| 7 | 97     <Compile Include="TaskController.cs" /> | 
|  | 98     <Compile Include="ProgressInitEventArgs.cs" /> | 
| 2 | 99     <Compile Include="Properties\AssemblyInfo.cs" /> | 
|  | 100     <Compile Include="Promise.cs" /> | 
| 11 | 101     <Compile Include="Parallels\AsyncPool.cs" /> | 
| 2 | 102     <Compile Include="Safe.cs" /> | 
| 7 | 103     <Compile Include="ValueEventArgs.cs" /> | 
| 2 | 104   </ItemGroup> | 
|  | 105   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | 
| 11 | 106   <ItemGroup /> | 
| 0 | 107 </Project> |