forked from npgsql/npgsql
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCommonAssemblyInfo.cs
More file actions
executable file
·22 lines (19 loc) · 884 Bytes
/
Copy pathCommonAssemblyInfo.cs
File metadata and controls
executable file
·22 lines (19 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Runtime.CompilerServices;
using System.Security;
using System.Reflection;
using System.Resources;
// Contains assembly attributes shared by all Npgsql projects
[assembly: CLSCompliantAttribute(true)]
[assembly: AllowPartiallyTrustedCallersAttribute()]
#if NET40
[assembly: System.Security.SecurityRules(System.Security.SecurityRuleSet.Level1)]
#endif
[assembly: AssemblyCompanyAttribute("Npgsql Development Team")]
[assembly: AssemblyProductAttribute("Npgsql")]
[assembly: AssemblyCopyrightAttribute("Copyright © 2002 - 2014 Npgsql Development Team")]
[assembly: AssemblyTrademarkAttribute("")]
[assembly: AssemblyVersionAttribute("2.1.0")]
[assembly: AssemblyFileVersionAttribute("2.1.0")]
[assembly: AssemblyInformationalVersionAttribute("2.1.0-rc1")]
[assembly: NeutralResourcesLanguageAttribute("en", UltimateResourceFallbackLocation.MainAssembly)]