diff options
author | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-10 13:40:15 -0800 |
---|---|---|
committer | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-10 13:40:15 -0800 |
commit | e7e7ea043de835793b9d65e6176e6148d0b51e29 (patch) | |
tree | 04490de0b36b3fcbdc4433a678b30cd18f31dc8c /SendGrid/SendGridMail/Properties/AssemblyInfo.cs | |
parent | e40ecaea2026a525650c02f6b84526c68762fbcb (diff) | |
download | sendgrid-csharp-e7e7ea043de835793b9d65e6176e6148d0b51e29.zip sendgrid-csharp-e7e7ea043de835793b9d65e6176e6148d0b51e29.tar.gz sendgrid-csharp-e7e7ea043de835793b9d65e6176e6148d0b51e29.tar.bz2 |
fixed namespace weirdness, made changes to .gitignore
Diffstat (limited to 'SendGrid/SendGridMail/Properties/AssemblyInfo.cs')
-rwxr-xr-x | SendGrid/SendGridMail/Properties/AssemblyInfo.cs | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/SendGrid/SendGridMail/Properties/AssemblyInfo.cs b/SendGrid/SendGridMail/Properties/AssemblyInfo.cs new file mode 100755 index 0000000..0cefaba --- /dev/null +++ b/SendGrid/SendGridMail/Properties/AssemblyInfo.cs @@ -0,0 +1,38 @@ +using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("SendGridMail")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("SendGridMail")]
+[assembly: AssemblyCopyright("Copyright © 2012")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("193fa200-8430-4206-aacd-2d2bb2dfa6cf")]
+
+[assembly: InternalsVisibleTo("Tests")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
|