annotate Implab.Test/Properties/AssemblyInfo.cs @ 196:40d7fed4a09e

fixed promise chaining behavior, the error handler doesn't handle result or cancellation handlers exceptions these exceptions are propagated to the next handlers.
author cin
date Mon, 29 Aug 2016 23:15:51 +0300
parents 91362ffbecf8
children
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:
77
91362ffbecf8 ported tests to mono
cin
parents: 0
diff changeset
34 [assembly: AssemblyVersion("0.0.*")]