[12074] | 1 | /*******************************************************************************
|
---|
| 2 | * You may amend and distribute as you like, but don't remove this header!
|
---|
| 3 | *
|
---|
| 4 | * EPPlus provides server-side generation of Excel 2007/2010 spreadsheets.
|
---|
| 5 | * See http://www.codeplex.com/EPPlus for details.
|
---|
| 6 | *
|
---|
| 7 | * Copyright (C) 2011 Jan Källman
|
---|
| 8 | *
|
---|
| 9 | * This library is free software; you can redistribute it and/or
|
---|
| 10 | * modify it under the terms of the GNU Lesser General Public
|
---|
| 11 | * License as published by the Free Software Foundation; either
|
---|
| 12 | * version 2.1 of the License, or (at your option) any later version.
|
---|
| 13 |
|
---|
| 14 | * This library is distributed in the hope that it will be useful,
|
---|
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
---|
| 17 | * See the GNU Lesser General Public License for more details.
|
---|
| 18 | *
|
---|
| 19 | * The GNU Lesser General Public License can be viewed at http://www.opensource.org/licenses/lgpl-license.php
|
---|
| 20 | * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
|
---|
| 21 | *
|
---|
| 22 | * All code and executables are provided "as is" with no warranty either express or implied.
|
---|
| 23 | * The author accepts no liability for any damage or loss of business that this product may cause.
|
---|
| 24 | *
|
---|
| 25 | * Code change notes:
|
---|
| 26 | *
|
---|
| 27 | * Author Change Date
|
---|
| 28 | *******************************************************************************
|
---|
| 29 | * Jan Källman Added 10-SEP-2009
|
---|
| 30 | * Jan Källman License changed GPL-->LGPL 2011-12-27
|
---|
| 31 | *******************************************************************************/
|
---|
| 32 | using System.Reflection;
|
---|
| 33 | using System.Runtime.CompilerServices;
|
---|
| 34 | using System.Runtime.InteropServices;
|
---|
| 35 | using System.Security;
|
---|
| 36 |
|
---|
| 37 | // General Information about an assembly is controlled through the following
|
---|
| 38 | // set of attributes. Change these attribute values to modify the information
|
---|
| 39 | // associated with an assembly.
|
---|
| 40 | [assembly: AssemblyTitle("EPPlus 4.0.3")]
|
---|
| 41 | [assembly: AssemblyDescription("Allows Excel files(xlsx;xlsm) to be created on the server. See epplus.codeplex.com")]
|
---|
| 42 | [assembly: AssemblyConfiguration("")]
|
---|
| 43 | [assembly: AssemblyCompany("EPPlus")]
|
---|
| 44 | [assembly: AssemblyProduct("EPPlus 4.0.3")]
|
---|
| 45 | [assembly: AssemblyCopyright("Copyright 2009- ©Jan Källman. Parts of the Interface comes from ExcelPackage-project")]
|
---|
| 46 | [assembly: AssemblyTrademark("The GNU Lesser General Public License (LGPL)")]
|
---|
| 47 | [assembly: AssemblyCulture("")]
|
---|
| 48 | [assembly: ComVisible(false)]
|
---|
| 49 | [assembly: InternalsVisibleTo("EPPlusTest, PublicKey=00240000048000009400000006020000002400005253413100040000010001001dd11308ec93a6ebcec727e183a8972dc6f95c23ecc34aa04f40cbfc9c17b08b4a0ea5c00dcd203bace44d15a30ce8796e38176ae88e960ceff9cc439ab938738ba0e603e3d155fc298799b391c004fc0eb4393dd254ce25db341eb43303e4c488c9500e126f1288594f0710ec7d642e9c72e76dd860649f1c48249c00e31fba")]
|
---|
| 50 |
|
---|
| 51 | // The following GUID is for the ID of the typelib if this project is exposed to COM
|
---|
| 52 | [assembly: Guid("9dd43b8d-c4fe-4a8b-ad6e-47ef83bbbb01")]
|
---|
| 53 |
|
---|
| 54 | // Version information for an assembly consists of the following four values:
|
---|
| 55 | //
|
---|
| 56 | // Major Version
|
---|
| 57 | // Minor Version
|
---|
| 58 | // Build Number
|
---|
| 59 | // Revision
|
---|
| 60 | //
|
---|
| 61 | // You can specify all the values or you can default the Revision and Build Numbers
|
---|
| 62 | // by using the '*' as shown below:
|
---|
| 63 | [assembly: AssemblyVersion("4.0.3.0")]
|
---|
| 64 | [assembly: AssemblyFileVersion("4.0.3.0")]
|
---|
| 65 | [assembly: AllowPartiallyTrustedCallers] |
---|