annotate Implab.Test/Properties/AssemblyInfo.cs @ 33:b255e4aeef17

removed the reference to the parent from the promise object this allows resolved promises to release parents and results they are holding. Added complete set of operations to IPromiseBase interface Subscribing to the cancellation event of the promise should not affect it's IsExclusive property More tests.
author cin
date Thu, 10 Apr 2014 02:39:29 +0400
parents 279591fb4df3
children 91362ffbecf8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
1 using System.Reflection;
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
2 using System.Runtime.CompilerServices;
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
3 using System.Runtime.InteropServices;
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
4
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
5 // General Information about an assembly is controlled through the following
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
6 // set of attributes. Change these attribute values to modify the information
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
7 // associated with an assembly.
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
8 [assembly: AssemblyTitle("Implab.Test")]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
9 [assembly: AssemblyDescription("")]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
10 [assembly: AssemblyConfiguration("")]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
11 [assembly: AssemblyCompany("")]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
12 [assembly: AssemblyProduct("Implab.Test")]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
13 [assembly: AssemblyCopyright("Copyright © 2013")]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
14 [assembly: AssemblyTrademark("")]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
15 [assembly: AssemblyCulture("")]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
16
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
17 // Setting ComVisible to false makes the types in this assembly not visible
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
18 // to COM components. If you need to access a type in this assembly from
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
19 // COM, set the ComVisible attribute to true on that type.
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
20 [assembly: ComVisible(false)]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
21
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
22 // The following GUID is for the ID of the typelib if this project is exposed to COM
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
23 [assembly: Guid("bfcae720-21eb-4411-b70a-6eeab99071de")]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
24
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
25 // Version information for an assembly consists of the following four values:
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
26 //
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
27 // Major Version
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
28 // Minor Version
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
29 // Build Number
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
30 // Revision
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
31 //
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
32 // You can specify all the values or you can default the Build and Revision Numbers
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
33 // by using the '*' as shown below:
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
34 [assembly: AssemblyVersion("1.0.0.0")]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
35 [assembly: AssemblyFileVersion("1.0.0.0")]