annotate Implab/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 cc19dc78edb7
children 8dd666e6b6bf
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;
59
21611344d366 code cleanup
cin
parents: 0
diff changeset
2 using System.Runtime.CompilerServices;
21611344d366 code cleanup
cin
parents: 0
diff changeset
3 using System.Runtime.InteropServices;
0
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
4
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
5 // Information about this assembly is defined by the following attributes.
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
6 // Change them to the values specific to your project.
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
7
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
8 [assembly: AssemblyTitle("Implab")]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
9 [assembly: AssemblyDescription("Tools")]
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("")]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
13 [assembly: AssemblyCopyright("Implab")]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
14 [assembly: AssemblyTrademark("")]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
15 // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
16 // The form "{Major}.{Minor}.*" will automatically update the build and revision,
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
17 // and "{Major}.{Minor}.{Build}.*" will update just the revision.
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
18
191
cc19dc78edb7 bump version to 2.1
cin
parents: 76
diff changeset
19 [assembly: AssemblyVersion("2.1.*")]
59
21611344d366 code cleanup
cin
parents: 0
diff changeset
20 [assembly: ComVisible(false)]
0
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
21
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
22 // The following attributes are used to specify the signing key for the assembly,
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
23 // if desired. See the Mono documentation for more information about signing.
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
24
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
25 //[assembly: AssemblyDelaySign(false)]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
26 //[assembly: AssemblyKeyFile("")]
279591fb4df3 initial commit
user@factory.site.local
parents:
diff changeset
27