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