annotate Implab/Implab.csproj @ 151:ec91a6dfa5b3 v2

Added support for 'await' operator to promises
author cin
date Thu, 04 Feb 2016 02:43:05 +0300
parents 25cdef49102f
children 240aa6994018
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
aa367305156b small fixes
cin
parents: 0
diff changeset
1 <?xml version="1.0" encoding="utf-8"?>
aa367305156b small fixes
cin
parents: 0
diff changeset
2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
aa367305156b small fixes
cin
parents: 0
diff changeset
3 <PropertyGroup>
aa367305156b small fixes
cin
parents: 0
diff changeset
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
aa367305156b small fixes
cin
parents: 0
diff changeset
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
4
381095ad0a69 Implab.Fx: implemented animation object
cin
parents: 2
diff changeset
6 <ProjectGuid>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</ProjectGuid>
2
aa367305156b small fixes
cin
parents: 0
diff changeset
7 <OutputType>Library</OutputType>
aa367305156b small fixes
cin
parents: 0
diff changeset
8 <RootNamespace>Implab</RootNamespace>
aa367305156b small fixes
cin
parents: 0
diff changeset
9 <AssemblyName>Implab</AssemblyName>
151
ec91a6dfa5b3 Added support for 'await' operator to promises
cin
parents: 147
diff changeset
10 <ProductVersion>8.0.30703</ProductVersion>
ec91a6dfa5b3 Added support for 'await' operator to promises
cin
parents: 147
diff changeset
11 <SchemaVersion>2.0</SchemaVersion>
ec91a6dfa5b3 Added support for 'await' operator to promises
cin
parents: 147
diff changeset
12 <ReleaseVersion>0.2</ReleaseVersion>
ec91a6dfa5b3 Added support for 'await' operator to promises
cin
parents: 147
diff changeset
13 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
2
aa367305156b small fixes
cin
parents: 0
diff changeset
14 </PropertyGroup>
aa367305156b small fixes
cin
parents: 0
diff changeset
15 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
aa367305156b small fixes
cin
parents: 0
diff changeset
16 <DebugSymbols>true</DebugSymbols>
aa367305156b small fixes
cin
parents: 0
diff changeset
17 <DebugType>full</DebugType>
aa367305156b small fixes
cin
parents: 0
diff changeset
18 <Optimize>false</Optimize>
aa367305156b small fixes
cin
parents: 0
diff changeset
19 <OutputPath>bin\Debug</OutputPath>
35
2880242f987a initial log capabilities
cin
parents: 25
diff changeset
20 <DefineConstants>TRACE;DEBUG;</DefineConstants>
2
aa367305156b small fixes
cin
parents: 0
diff changeset
21 <ErrorReport>prompt</ErrorReport>
aa367305156b small fixes
cin
parents: 0
diff changeset
22 <WarningLevel>4</WarningLevel>
aa367305156b small fixes
cin
parents: 0
diff changeset
23 <ConsolePause>false</ConsolePause>
59
21611344d366 code cleanup
cin
parents: 58
diff changeset
24 <RunCodeAnalysis>true</RunCodeAnalysis>
2
aa367305156b small fixes
cin
parents: 0
diff changeset
25 </PropertyGroup>
aa367305156b small fixes
cin
parents: 0
diff changeset
26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
aa367305156b small fixes
cin
parents: 0
diff changeset
27 <DebugType>full</DebugType>
aa367305156b small fixes
cin
parents: 0
diff changeset
28 <Optimize>true</Optimize>
aa367305156b small fixes
cin
parents: 0
diff changeset
29 <OutputPath>bin\Release</OutputPath>
aa367305156b small fixes
cin
parents: 0
diff changeset
30 <ErrorReport>prompt</ErrorReport>
aa367305156b small fixes
cin
parents: 0
diff changeset
31 <WarningLevel>4</WarningLevel>
aa367305156b small fixes
cin
parents: 0
diff changeset
32 <ConsolePause>false</ConsolePause>
aa367305156b small fixes
cin
parents: 0
diff changeset
33 </PropertyGroup>
75
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
34 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' ">
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
35 <DebugSymbols>true</DebugSymbols>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
36 <DebugType>full</DebugType>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
37 <Optimize>false</Optimize>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
38 <OutputPath>bin\Debug</OutputPath>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
39 <DefineConstants>TRACE;DEBUG;NET_4_5</DefineConstants>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
40 <ErrorReport>prompt</ErrorReport>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
41 <WarningLevel>4</WarningLevel>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
42 <RunCodeAnalysis>true</RunCodeAnalysis>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
43 <ConsolePause>false</ConsolePause>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
44 </PropertyGroup>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
45 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' ">
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
46 <Optimize>true</Optimize>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
47 <OutputPath>bin\Release</OutputPath>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
48 <ErrorReport>prompt</ErrorReport>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
49 <WarningLevel>4</WarningLevel>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
50 <ConsolePause>false</ConsolePause>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
51 <DefineConstants>NET_4_5</DefineConstants>
4439140706d0 major refactoring, added tasks support
cin
parents: 72
diff changeset
52 </PropertyGroup>
85
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
53 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugMono|AnyCPU' ">
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
54 <DebugSymbols>true</DebugSymbols>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
55 <DebugType>full</DebugType>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
56 <Optimize>false</Optimize>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
57 <OutputPath>bin\Debug</OutputPath>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
58 <DefineConstants>TRACE;DEBUG;NET_4_5;MONO</DefineConstants>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
59 <ErrorReport>prompt</ErrorReport>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
60 <WarningLevel>4</WarningLevel>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
61 <RunCodeAnalysis>true</RunCodeAnalysis>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
62 <ConsolePause>false</ConsolePause>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
63 </PropertyGroup>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
64 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseMono|AnyCPU' ">
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
65 <Optimize>true</Optimize>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
66 <OutputPath>bin\Release</OutputPath>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
67 <DefineConstants>NET_4_5;MONO;</DefineConstants>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
68 <ErrorReport>prompt</ErrorReport>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
69 <WarningLevel>4</WarningLevel>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
70 <ConsolePause>false</ConsolePause>
abe260860bd6 fixed JSONXmlReader disposing under ugly mono
cin
parents: 82
diff changeset
71 </PropertyGroup>
2
aa367305156b small fixes
cin
parents: 0
diff changeset
72 <ItemGroup>
aa367305156b small fixes
cin
parents: 0
diff changeset
73 <Reference Include="System" />
67
cin
parents: 66
diff changeset
74 <Reference Include="System.Xml" />
151
ec91a6dfa5b3 Added support for 'await' operator to promises
cin
parents: 147
diff changeset
75 <Reference Include="mscorlib" />
2
aa367305156b small fixes
cin
parents: 0
diff changeset
76 </ItemGroup>
aa367305156b small fixes
cin
parents: 0
diff changeset
77 <ItemGroup>
40
fe33f4e02ad5 improved tracing
cin
parents: 36
diff changeset
78 <Compile Include="Component.cs" />
55
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
79 <Compile Include="CustomEqualityComparer.cs" />
36
313f708a50e9 improved log concept
cin
parents: 35
diff changeset
80 <Compile Include="Diagnostics\ConsoleTraceListener.cs" />
40
fe33f4e02ad5 improved tracing
cin
parents: 36
diff changeset
81 <Compile Include="Diagnostics\EventText.cs" />
36
313f708a50e9 improved log concept
cin
parents: 35
diff changeset
82 <Compile Include="Diagnostics\LogChannel.cs" />
35
2880242f987a initial log capabilities
cin
parents: 25
diff changeset
83 <Compile Include="Diagnostics\LogicalOperation.cs" />
40
fe33f4e02ad5 improved tracing
cin
parents: 36
diff changeset
84 <Compile Include="Diagnostics\TextFileListener.cs" />
36
313f708a50e9 improved log concept
cin
parents: 35
diff changeset
85 <Compile Include="Diagnostics\TraceLog.cs" />
313f708a50e9 improved log concept
cin
parents: 35
diff changeset
86 <Compile Include="Diagnostics\TraceEvent.cs" />
35
2880242f987a initial log capabilities
cin
parents: 25
diff changeset
87 <Compile Include="Diagnostics\TraceEventType.cs" />
40
fe33f4e02ad5 improved tracing
cin
parents: 36
diff changeset
88 <Compile Include="Disposable.cs" />
12
eb418ba8275b refactoring, added WorkerPool
cin
parents: 11
diff changeset
89 <Compile Include="ICancellable.cs" />
eb418ba8275b refactoring, added WorkerPool
cin
parents: 11
diff changeset
90 <Compile Include="IProgressHandler.cs" />
eb418ba8275b refactoring, added WorkerPool
cin
parents: 11
diff changeset
91 <Compile Include="IProgressNotifier.cs" />
66
790e8a997d30 Refactoring
cin
parents: 61
diff changeset
92 <Compile Include="IPromiseT.cs" />
8
cin
parents: 7
diff changeset
93 <Compile Include="IPromise.cs" />
40
fe33f4e02ad5 improved tracing
cin
parents: 36
diff changeset
94 <Compile Include="IServiceLocator.cs" />
12
eb418ba8275b refactoring, added WorkerPool
cin
parents: 11
diff changeset
95 <Compile Include="ITaskController.cs" />
55
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
96 <Compile Include="JSON\JSONElementContext.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
97 <Compile Include="JSON\JSONElementType.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
98 <Compile Include="JSON\JSONGrammar.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
99 <Compile Include="JSON\JSONParser.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
100 <Compile Include="JSON\JSONScanner.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
101 <Compile Include="JSON\JsonTokenType.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
102 <Compile Include="JSON\JSONWriter.cs" />
58
1710dcda34bb Added JSONXmlReader
cin
parents: 55
diff changeset
103 <Compile Include="JSON\JSONXmlReader.cs" />
60
10c7337d29e7 +JSONXmlReaderOptions
cin
parents: 59
diff changeset
104 <Compile Include="JSON\JSONXmlReaderOptions.cs" />
55
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
105 <Compile Include="JSON\StringTranslator.cs" />
15
0f982f9b7d4d implemented parallel map and foreach for arrays
cin
parents: 14
diff changeset
106 <Compile Include="Parallels\DispatchPool.cs" />
0f982f9b7d4d implemented parallel map and foreach for arrays
cin
parents: 14
diff changeset
107 <Compile Include="Parallels\ArrayTraits.cs" />
14
e943453e5039 Implemented interllocked queue
cin
parents: 12
diff changeset
108 <Compile Include="Parallels\MTQueue.cs" />
12
eb418ba8275b refactoring, added WorkerPool
cin
parents: 11
diff changeset
109 <Compile Include="Parallels\WorkerPool.cs" />
55
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
110 <Compile Include="Parsing\Alphabet.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
111 <Compile Include="Parsing\AlphabetBase.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
112 <Compile Include="Parsing\AltToken.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
113 <Compile Include="Parsing\BinaryToken.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
114 <Compile Include="Parsing\CatToken.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
115 <Compile Include="Parsing\CDFADefinition.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
116 <Compile Include="Parsing\DFABuilder.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
117 <Compile Include="Parsing\DFADefinitionBase.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
118 <Compile Include="Parsing\DFAStateDescriptor.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
119 <Compile Include="Parsing\DFAutomaton.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
120 <Compile Include="Parsing\EDFADefinition.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
121 <Compile Include="Parsing\EmptyToken.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
122 <Compile Include="Parsing\EndToken.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
123 <Compile Include="Parsing\EnumAlphabet.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
124 <Compile Include="Parsing\Grammar.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
125 <Compile Include="Parsing\IAlphabet.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
126 <Compile Include="Parsing\IDFADefinition.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
127 <Compile Include="Parsing\IVisitor.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
128 <Compile Include="Parsing\ParserException.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
129 <Compile Include="Parsing\Scanner.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
130 <Compile Include="Parsing\StarToken.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
131 <Compile Include="Parsing\SymbolToken.cs" />
c0bf853aa04f Added initial JSON support
cin
parents: 45
diff changeset
132 <Compile Include="Parsing\Token.cs" />
40
fe33f4e02ad5 improved tracing
cin
parents: 36
diff changeset
133 <Compile Include="ServiceLocator.cs" />
7
7ea9363fef6c inital progress handling
cin
parents: 4
diff changeset
134 <Compile Include="TaskController.cs" />
7ea9363fef6c inital progress handling
cin
parents: 4
diff changeset
135 <Compile Include="ProgressInitEventArgs.cs" />
2
aa367305156b small fixes
cin
parents: 0
diff changeset
136 <Compile Include="Properties\AssemblyInfo.cs" />
11
6ec82bf68c8e refactoring
cin
parents: 8
diff changeset
137 <Compile Include="Parallels\AsyncPool.cs" />
2
aa367305156b small fixes
cin
parents: 0
diff changeset
138 <Compile Include="Safe.cs" />
7
7ea9363fef6c inital progress handling
cin
parents: 4
diff changeset
139 <Compile Include="ValueEventArgs.cs" />
72
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
140 <Compile Include="PromiseExtensions.cs" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
141 <Compile Include="SyncContextPromise.cs" />
92
4c0e5ef99986 rewritten tracing
cin
parents: 91
diff changeset
142 <Compile Include="Diagnostics\OperationContext.cs" />
4c0e5ef99986 rewritten tracing
cin
parents: 91
diff changeset
143 <Compile Include="Diagnostics\TraceContext.cs" />
4c0e5ef99986 rewritten tracing
cin
parents: 91
diff changeset
144 <Compile Include="Diagnostics\LogEventArgs.cs" />
4c0e5ef99986 rewritten tracing
cin
parents: 91
diff changeset
145 <Compile Include="Diagnostics\LogEventArgsT.cs" />
4c0e5ef99986 rewritten tracing
cin
parents: 91
diff changeset
146 <Compile Include="Diagnostics\Extensions.cs" />
93
dc4942d09e74 improved tracing
cin
parents: 92
diff changeset
147 <Compile Include="IComponentContainer.cs" />
104
5f10d54b45df renamed Promise.Last -> Promise.On
cin
parents: 95
diff changeset
148 <Compile Include="PromiseEventType.cs" />
116
da56ba7b1aab minor refactoring
cin
parents: 106
diff changeset
149 <Compile Include="ComponentContainer.cs" />
117
8beee0d11de6 pool refactoring
cin
parents: 116
diff changeset
150 <Compile Include="DisposablePool.cs" />
8beee0d11de6 pool refactoring
cin
parents: 116
diff changeset
151 <Compile Include="ObjectPool.cs" />
119
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 117
diff changeset
152 <Compile Include="Parallels\AsyncQueue.cs" />
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 117
diff changeset
153 <Compile Include="PromiseT.cs" />
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 117
diff changeset
154 <Compile Include="IDeferred.cs" />
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 117
diff changeset
155 <Compile Include="IDeferredT.cs" />
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 117
diff changeset
156 <Compile Include="Promise.cs" />
2573b562e328 Promises rewritten, added improved version of AsyncQueue
cin
parents: 117
diff changeset
157 <Compile Include="PromiseTransientException.cs" />
128
6241bff0cd64 Added Signal class a lightweight alternative to ManualResetEvent
cin
parents: 127
diff changeset
158 <Compile Include="Parallels\Signal.cs" />
129
471f596b2603 Added SharedLock to synchronization routines
cin
parents: 128
diff changeset
159 <Compile Include="Parallels\SharedLock.cs" />
134
04d4c92d0f28 Improved logging
cin
parents: 129
diff changeset
160 <Compile Include="Diagnostics\ILogWriter.cs" />
04d4c92d0f28 Improved logging
cin
parents: 129
diff changeset
161 <Compile Include="Diagnostics\ListenerBase.cs" />
137
238e15580926 added the blocking queue
cin
parents: 134
diff changeset
162 <Compile Include="Parallels\BlockingQueue.cs" />
144
8c0b95069066 DRAFT: refactoring
cin
parents: 143
diff changeset
163 <Compile Include="AbstractEvent.cs" />
8c0b95069066 DRAFT: refactoring
cin
parents: 143
diff changeset
164 <Compile Include="AbstractPromise.cs" />
8c0b95069066 DRAFT: refactoring
cin
parents: 143
diff changeset
165 <Compile Include="AbstractPromiseT.cs" />
8c0b95069066 DRAFT: refactoring
cin
parents: 143
diff changeset
166 <Compile Include="FuncTask.cs" />
8c0b95069066 DRAFT: refactoring
cin
parents: 143
diff changeset
167 <Compile Include="FuncTaskBase.cs" />
8c0b95069066 DRAFT: refactoring
cin
parents: 143
diff changeset
168 <Compile Include="FuncTaskT.cs" />
145
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 144
diff changeset
169 <Compile Include="ActionChainTaskBase.cs" />
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 144
diff changeset
170 <Compile Include="ActionChainTask.cs" />
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 144
diff changeset
171 <Compile Include="ActionChainTaskT.cs" />
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 144
diff changeset
172 <Compile Include="FuncChainTaskBase.cs" />
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 144
diff changeset
173 <Compile Include="FuncChainTask.cs" />
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 144
diff changeset
174 <Compile Include="FuncChainTaskT.cs" />
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 144
diff changeset
175 <Compile Include="ActionTaskBase.cs" />
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 144
diff changeset
176 <Compile Include="ActionTask.cs" />
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 144
diff changeset
177 <Compile Include="ActionTaskT.cs" />
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 144
diff changeset
178 <Compile Include="ICancellationToken.cs" />
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 144
diff changeset
179 <Compile Include="SuccessPromise.cs" />
706fccb85524 RC: cancellation support for promises + tests
cin
parents: 144
diff changeset
180 <Compile Include="SuccessPromiseT.cs" />
151
ec91a6dfa5b3 Added support for 'await' operator to promises
cin
parents: 147
diff changeset
181 <Compile Include="PromiseAwaiterT.cs" />
ec91a6dfa5b3 Added support for 'await' operator to promises
cin
parents: 147
diff changeset
182 <Compile Include="PromiseAwaiter.cs" />
2
aa367305156b small fixes
cin
parents: 0
diff changeset
183 </ItemGroup>
aa367305156b small fixes
cin
parents: 0
diff changeset
184 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
11
6ec82bf68c8e refactoring
cin
parents: 8
diff changeset
185 <ItemGroup />
72
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
186 <ProjectExtensions>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
187 <MonoDevelop>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
188 <Properties>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
189 <Policies>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
190 <CSharpFormattingPolicy IndentSwitchBody="True" NamespaceBraceStyle="EndOfLine" ClassBraceStyle="EndOfLine" InterfaceBraceStyle="EndOfLine" StructBraceStyle="EndOfLine" EnumBraceStyle="EndOfLine" MethodBraceStyle="EndOfLine" ConstructorBraceStyle="EndOfLine" DestructorBraceStyle="EndOfLine" BeforeMethodDeclarationParentheses="False" BeforeMethodCallParentheses="False" BeforeConstructorDeclarationParentheses="False" NewLineBeforeConstructorInitializerColon="NewLine" NewLineAfterConstructorInitializerColon="SameLine" BeforeIndexerDeclarationBracket="False" BeforeDelegateDeclarationParentheses="False" NewParentheses="False" SpacesBeforeBrackets="False" inheritsSet="Mono" inheritsScope="text/x-csharp" scope="text/x-csharp" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
191 <TextStylePolicy FileWidth="120" EolMarker="Unix" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/x-csharp" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
192 <DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="MSBuild" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
193 <TextStylePolicy FileWidth="120" TabsToSpaces="False" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="application/xml" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
194 <XmlFormattingPolicy inheritsSet="Mono" inheritsScope="application/xml" scope="application/xml" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
195 <TextStylePolicy FileWidth="120" TabsToSpaces="False" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/plain" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
196 <NameConventionPolicy>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
197 <Rules>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
198 <NamingRule Name="Namespaces" AffectedEntity="Namespace" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
199 <NamingRule Name="Types" AffectedEntity="Class, Struct, Enum, Delegate" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
200 <NamingRule Name="Interfaces" AffectedEntity="Interface" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True">
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
201 <RequiredPrefixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
202 <String>I</String>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
203 </RequiredPrefixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
204 </NamingRule>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
205 <NamingRule Name="Attributes" AffectedEntity="CustomAttributes" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True">
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
206 <RequiredSuffixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
207 <String>Attribute</String>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
208 </RequiredSuffixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
209 </NamingRule>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
210 <NamingRule Name="Event Arguments" AffectedEntity="CustomEventArgs" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True">
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
211 <RequiredSuffixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
212 <String>EventArgs</String>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
213 </RequiredSuffixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
214 </NamingRule>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
215 <NamingRule Name="Exceptions" AffectedEntity="CustomExceptions" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True">
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
216 <RequiredSuffixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
217 <String>Exception</String>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
218 </RequiredSuffixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
219 </NamingRule>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
220 <NamingRule Name="Methods" AffectedEntity="Methods" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
221 <NamingRule Name="Static Readonly Fields" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Protected, Public" NamingStyle="CamelCase" IncludeInstanceMembers="False" IncludeStaticEntities="True" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
222 <NamingRule Name="Fields (Non Private)" AffectedEntity="Field" VisibilityMask="Internal, Public" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
223 <NamingRule Name="ReadOnly Fields (Non Private)" AffectedEntity="ReadonlyField" VisibilityMask="Internal, Public" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
224 <NamingRule Name="Fields (Private)" AffectedEntity="Field, ReadonlyField" VisibilityMask="Private, Protected" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False">
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
225 <RequiredPrefixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
226 <String>m_</String>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
227 </RequiredPrefixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
228 </NamingRule>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
229 <NamingRule Name="Static Fields (Private)" AffectedEntity="Field" VisibilityMask="Private" NamingStyle="CamelCase" IncludeInstanceMembers="False" IncludeStaticEntities="True">
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
230 <RequiredPrefixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
231 <String>_</String>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
232 </RequiredPrefixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
233 </NamingRule>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
234 <NamingRule Name="ReadOnly Fields (Private)" AffectedEntity="ReadonlyField" VisibilityMask="Private, Protected" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="False">
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
235 <RequiredPrefixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
236 <String>m_</String>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
237 </RequiredPrefixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
238 </NamingRule>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
239 <NamingRule Name="Constant Fields" AffectedEntity="ConstantField" VisibilityMask="VisibilityMask" NamingStyle="AllUpper" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
240 <NamingRule Name="Properties" AffectedEntity="Property" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
241 <NamingRule Name="Events" AffectedEntity="Event" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
242 <NamingRule Name="Enum Members" AffectedEntity="EnumMember" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
243 <NamingRule Name="Parameters" AffectedEntity="Parameter, LocalVariable" VisibilityMask="VisibilityMask" NamingStyle="CamelCase" IncludeInstanceMembers="True" IncludeStaticEntities="True" />
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
244 <NamingRule Name="Type Parameters" AffectedEntity="TypeParameter" VisibilityMask="VisibilityMask" NamingStyle="PascalCase" IncludeInstanceMembers="True" IncludeStaticEntities="True">
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
245 <RequiredPrefixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
246 <String>T</String>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
247 </RequiredPrefixes>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
248 </NamingRule>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
249 </Rules>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
250 </NameConventionPolicy>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
251 </Policies>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
252 </Properties>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
253 </MonoDevelop>
d67b95eddaf4 promises refactoring
cin
parents: 67
diff changeset
254 </ProjectExtensions>
0
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
255 </Project>