annotate Implab/Properties/AssemblyInfo.cs @ 187:dd4a3590f9c6 ref20160224

Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler Any unhandled OperationCanceledException will cause the promise cancelation
author cin
date Tue, 19 Apr 2016 17:35:20 +0300
parents c761fc982e1d
children cc19dc78edb7
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
76
c761fc982e1d Refactoring of the IPromise<T> interface
cin
parents: 59
diff changeset
19 [assembly: AssemblyVersion("2.0.*")]
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