Mercurial > pub > ImplabNet
annotate Implab/Implab.csproj @ 230:3e26338eb977 v2
slowly cutting off mono specific settings
author | cin |
---|---|
date | Wed, 13 Sep 2017 16:55:13 +0300 |
parents | 5f7a3e1d32b9 |
children | b49969a7043c |
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> | |
230 | 17 <DefineConstants>TRACE;DEBUG;NET_4_5</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> | |
75 | 27 <DefineConstants>NET_4_5</DefineConstants> |
85 | 28 <ErrorReport>prompt</ErrorReport> |
29 <WarningLevel>4</WarningLevel> | |
30 <ConsolePause>false</ConsolePause> | |
31 </PropertyGroup> | |
2 | 32 <ItemGroup> |
33 <Reference Include="System" /> | |
67 | 34 <Reference Include="System.Xml" /> |
151 | 35 <Reference Include="mscorlib" /> |
229 | 36 <Reference Include="System.Xml.Linq" /> |
2 | 37 </ItemGroup> |
38 <ItemGroup> | |
205
8200ab154c8a
Added ResetState to RunnableComponent to reset in case of failure
cin
parents:
203
diff
changeset
|
39 <Compile Include="Components\StateChangeEventArgs.cs" /> |
55 | 40 <Compile Include="CustomEqualityComparer.cs" /> |
36 | 41 <Compile Include="Diagnostics\ConsoleTraceListener.cs" /> |
42 <Compile Include="Diagnostics\LogChannel.cs" /> | |
35 | 43 <Compile Include="Diagnostics\LogicalOperation.cs" /> |
40 | 44 <Compile Include="Diagnostics\TextFileListener.cs" /> |
212
a01d9df88d74
Added class Trace<T> to manage channels for individual classes, if SomeClass
cin
parents:
211
diff
changeset
|
45 <Compile Include="Diagnostics\Trace.cs" /> |
36 | 46 <Compile Include="Diagnostics\TraceLog.cs" /> |
47 <Compile Include="Diagnostics\TraceEvent.cs" /> | |
35 | 48 <Compile Include="Diagnostics\TraceEventType.cs" /> |
212
a01d9df88d74
Added class Trace<T> to manage channels for individual classes, if SomeClass
cin
parents:
211
diff
changeset
|
49 <Compile Include="Diagnostics\TraceSourceAttribute.cs" /> |
228 | 50 <Compile Include="Formats\CharMap.cs" /> |
51 <Compile Include="Formats\InputScanner.cs" /> | |
52 <Compile Include="Formats\Json\JsonStringScanner.cs" /> | |
53 <Compile Include="Formats\Json\JsonTextScanner.cs" /> | |
12 | 54 <Compile Include="ICancellable.cs" /> |
55 <Compile Include="IProgressHandler.cs" /> | |
56 <Compile Include="IProgressNotifier.cs" /> | |
66 | 57 <Compile Include="IPromiseT.cs" /> |
8 | 58 <Compile Include="IPromise.cs" /> |
40 | 59 <Compile Include="IServiceLocator.cs" /> |
12 | 60 <Compile Include="ITaskController.cs" /> |
15 | 61 <Compile Include="Parallels\DispatchPool.cs" /> |
62 <Compile Include="Parallels\ArrayTraits.cs" /> | |
14 | 63 <Compile Include="Parallels\MTQueue.cs" /> |
12 | 64 <Compile Include="Parallels\WorkerPool.cs" /> |
7 | 65 <Compile Include="ProgressInitEventArgs.cs" /> |
2 | 66 <Compile Include="Properties\AssemblyInfo.cs" /> |
11 | 67 <Compile Include="Parallels\AsyncPool.cs" /> |
2 | 68 <Compile Include="Safe.cs" /> |
211
3eb3255d8cc5
Code review, added a non generic version of SyncContextPromise
cin
parents:
205
diff
changeset
|
69 <Compile Include="SyncContextPromise.cs" /> |
7 | 70 <Compile Include="ValueEventArgs.cs" /> |
72 | 71 <Compile Include="PromiseExtensions.cs" /> |
211
3eb3255d8cc5
Code review, added a non generic version of SyncContextPromise
cin
parents:
205
diff
changeset
|
72 <Compile Include="SyncContextPromiseT.cs" /> |
92 | 73 <Compile Include="Diagnostics\OperationContext.cs" /> |
74 <Compile Include="Diagnostics\TraceContext.cs" /> | |
75 <Compile Include="Diagnostics\LogEventArgs.cs" /> | |
76 <Compile Include="Diagnostics\LogEventArgsT.cs" /> | |
77 <Compile Include="Diagnostics\Extensions.cs" /> | |
104 | 78 <Compile Include="PromiseEventType.cs" /> |
119
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
79 <Compile Include="Parallels\AsyncQueue.cs" /> |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
80 <Compile Include="PromiseT.cs" /> |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
81 <Compile Include="IDeferred.cs" /> |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
82 <Compile Include="IDeferredT.cs" /> |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
83 <Compile Include="Promise.cs" /> |
2573b562e328
Promises rewritten, added improved version of AsyncQueue
cin
parents:
117
diff
changeset
|
84 <Compile Include="PromiseTransientException.cs" /> |
128
6241bff0cd64
Added Signal class a lightweight alternative to ManualResetEvent
cin
parents:
127
diff
changeset
|
85 <Compile Include="Parallels\Signal.cs" /> |
129 | 86 <Compile Include="Parallels\SharedLock.cs" /> |
134 | 87 <Compile Include="Diagnostics\ILogWriter.cs" /> |
88 <Compile Include="Diagnostics\ListenerBase.cs" /> | |
137 | 89 <Compile Include="Parallels\BlockingQueue.cs" /> |
144 | 90 <Compile Include="AbstractEvent.cs" /> |
91 <Compile Include="AbstractPromise.cs" /> | |
92 <Compile Include="AbstractPromiseT.cs" /> | |
93 <Compile Include="FuncTask.cs" /> | |
94 <Compile Include="FuncTaskBase.cs" /> | |
95 <Compile Include="FuncTaskT.cs" /> | |
145 | 96 <Compile Include="ActionChainTaskBase.cs" /> |
97 <Compile Include="ActionChainTask.cs" /> | |
98 <Compile Include="ActionChainTaskT.cs" /> | |
99 <Compile Include="FuncChainTaskBase.cs" /> | |
100 <Compile Include="FuncChainTask.cs" /> | |
101 <Compile Include="FuncChainTaskT.cs" /> | |
102 <Compile Include="ActionTaskBase.cs" /> | |
103 <Compile Include="ActionTask.cs" /> | |
104 <Compile Include="ActionTaskT.cs" /> | |
105 <Compile Include="ICancellationToken.cs" /> | |
106 <Compile Include="SuccessPromise.cs" /> | |
107 <Compile Include="SuccessPromiseT.cs" /> | |
151 | 108 <Compile Include="PromiseAwaiterT.cs" /> |
109 <Compile Include="PromiseAwaiter.cs" /> | |
152 | 110 <Compile Include="Components\ComponentContainer.cs" /> |
111 <Compile Include="Components\Disposable.cs" /> | |
112 <Compile Include="Components\DisposablePool.cs" /> | |
113 <Compile Include="Components\ObjectPool.cs" /> | |
114 <Compile Include="Components\ServiceLocator.cs" /> | |
115 <Compile Include="Components\IInitializable.cs" /> | |
116 <Compile Include="TaskController.cs" /> | |
117 <Compile Include="Components\App.cs" /> | |
118 <Compile Include="Components\IRunnable.cs" /> | |
119 <Compile Include="Components\ExecutionState.cs" /> | |
156
97fbbf816844
Promises: SignalXXX methods merged into SignalHandler method.
cin
parents:
152
diff
changeset
|
120 <Compile Include="Components\RunnableComponent.cs" /> |
97fbbf816844
Promises: SignalXXX methods merged into SignalHandler method.
cin
parents:
152
diff
changeset
|
121 <Compile Include="Components\IFactory.cs" /> |
162 | 122 <Compile Include="Automaton\IAlphabet.cs" /> |
123 <Compile Include="Automaton\ParserException.cs" /> | |
124 <Compile Include="Automaton\IndexedAlphabetBase.cs" /> | |
125 <Compile Include="Automaton\IAlphabetBuilder.cs" /> | |
126 <Compile Include="Automaton\RegularExpressions\AltToken.cs" /> | |
127 <Compile Include="Automaton\RegularExpressions\BinaryToken.cs" /> | |
128 <Compile Include="Automaton\RegularExpressions\CatToken.cs" /> | |
129 <Compile Include="Automaton\RegularExpressions\StarToken.cs" /> | |
130 <Compile Include="Automaton\RegularExpressions\SymbolToken.cs" /> | |
131 <Compile Include="Automaton\RegularExpressions\EmptyToken.cs" /> | |
132 <Compile Include="Automaton\RegularExpressions\Token.cs" /> | |
133 <Compile Include="Automaton\RegularExpressions\IVisitor.cs" /> | |
134 <Compile Include="Automaton\AutomatonTransition.cs" /> | |
228 | 135 <Compile Include="Formats\Json\JsonElementContext.cs" /> |
136 <Compile Include="Formats\Json\JsonElementType.cs" /> | |
137 <Compile Include="Formats\Json\JsonGrammar.cs" /> | |
229 | 138 <Compile Include="Formats\Json\JsonReader.cs" /> |
228 | 139 <Compile Include="Formats\Json\JsonScanner.cs" /> |
140 <Compile Include="Formats\Json\JsonTokenType.cs" /> | |
141 <Compile Include="Formats\Json\JsonWriter.cs" /> | |
142 <Compile Include="Formats\Json\StringTranslator.cs" /> | |
163 | 143 <Compile Include="Automaton\MapAlphabet.cs" /> |
164 | 144 <Compile Include="Formats\CharAlphabet.cs" /> |
145 <Compile Include="Formats\ByteAlphabet.cs" /> | |
165 | 146 <Compile Include="Automaton\IDFATable.cs" /> |
147 <Compile Include="Automaton\IDFATableBuilder.cs" /> | |
169 | 148 <Compile Include="Automaton\DFATable.cs" /> |
172 | 149 <Compile Include="Automaton\RegularExpressions\RegularExpressionVisitor.cs" /> |
150 <Compile Include="Automaton\RegularExpressions\ITaggedDFABuilder.cs" /> | |
177 | 151 <Compile Include="Formats\Grammar.cs" /> |
152 <Compile Include="Automaton\RegularExpressions\EndTokenT.cs" /> | |
153 <Compile Include="Automaton\RegularExpressions\EndToken.cs" /> | |
178 | 154 <Compile Include="Automaton\RegularExpressions\RegularExpressionVisitorT.cs" /> |
155 <Compile Include="Automaton\AutomatonConst.cs" /> | |
156 <Compile Include="Automaton\RegularExpressions\RegularDFA.cs" /> | |
157 <Compile Include="Components\LazyAndWeak.cs" /> | |
187
dd4a3590f9c6
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler
cin
parents:
180
diff
changeset
|
158 <Compile Include="AbstractTask.cs" /> |
dd4a3590f9c6
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler
cin
parents:
180
diff
changeset
|
159 <Compile Include="AbstractTaskT.cs" /> |
203
4d9830a9bbb8
Added 'Fail' method to RunnableComponent which allows component to move from
cin
parents:
202
diff
changeset
|
160 <Compile Include="FailedPromise.cs" /> |
4d9830a9bbb8
Added 'Fail' method to RunnableComponent which allows component to move from
cin
parents:
202
diff
changeset
|
161 <Compile Include="FailedPromiseT.cs" /> |
4d9830a9bbb8
Added 'Fail' method to RunnableComponent which allows component to move from
cin
parents:
202
diff
changeset
|
162 <Compile Include="Components\PollingComponent.cs" /> |
227
8d5de4eb9c2c
Reimplemented JsonXmlReader, added support for null values: JSON null values are
cin
parents:
225
diff
changeset
|
163 <Compile Include="Xml\JsonXmlReader.cs" /> |
8d5de4eb9c2c
Reimplemented JsonXmlReader, added support for null values: JSON null values are
cin
parents:
225
diff
changeset
|
164 <Compile Include="Xml\JsonXmlReaderOptions.cs" /> |
8d5de4eb9c2c
Reimplemented JsonXmlReader, added support for null values: JSON null values are
cin
parents:
225
diff
changeset
|
165 <Compile Include="Xml\JsonXmlReaderPosition.cs" /> |
229 | 166 <Compile Include="Xml\SerializationHelpers.cs" /> |
167 <Compile Include="Xml\SerializersPool.cs" /> | |
227
8d5de4eb9c2c
Reimplemented JsonXmlReader, added support for null values: JSON null values are
cin
parents:
225
diff
changeset
|
168 <Compile Include="Xml\XmlSimpleAttribute.cs" /> |
8d5de4eb9c2c
Reimplemented JsonXmlReader, added support for null values: JSON null values are
cin
parents:
225
diff
changeset
|
169 <Compile Include="Xml\XmlNameContext.cs" /> |
2 | 170 </ItemGroup> |
171 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | |
0 | 172 </Project> |