-
Notifications
You must be signed in to change notification settings - Fork 1
/
CommonAssemblyInfo.cs
39 lines (33 loc) · 1.43 KB
/
CommonAssemblyInfo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Diagnostics;
using System.Security.Permissions;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
[assembly: CLSCompliant(true)]
[assembly: NeutralResourcesLanguage("en-US")]
[assembly: AssemblyCompany("ORM Solutions, LLC")]
#if !NO_SECURITYPERMISSIONATTRIBUTE
[assembly: SecurityPermission(SecurityAction.RequestMinimum, Execution = true)]
#endif //!NO_SECURITYPERMISSIONATTRIBUTE
#if !NO_ASSEMBLYCOPYRIGHTATTRIBUTE
[assembly: AssemblyCopyright("Copyright © ORM Solutions, LLC. Portions copyright © Neumont University. All rights reserved.")]
#endif //!NO_ASSEMBLYCOPYRIGHTATTRIBUTE
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints
#if DEBUG
| DebuggableAttribute.DebuggingModes.DisableOptimizations
#endif //DEBUG
)]
#if !NO_ASSEMBLYCONFIGURATIONATTRIBUTE
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
#else //!DEBUG
[assembly: AssemblyConfiguration("Release")]
#endif //DEBUG
#endif //!NO_ASSEMBLYCONFIGURATIONATTRIBUTE
[assembly: CompilationRelaxations((CompilationRelaxations)
((int)CompilationRelaxations.NoStringInterning /*0x8*/ |
/*CompilationRelaxations.RelaxedArrayExceptions*/ 0x200 |
/*CompilationRelaxations.RelaxedInvalidCastException*/ 0x80 |
/*CompilationRelaxations.RelaxedNullReferenceException*/ 0x20 |
/*CompilationRelaxations.RelaxedOverflowExceptions*/ 0x800))]