| /******************************************************************************* |
| * You may amend and distribute as you like, but don't remove this header! |
| * |
| * EPPlus provides server-side generation of Excel 2007/2010 spreadsheets. |
| * See http://www.codeplex.com/EPPlus for details. |
| * |
| * Copyright (C) 2011 Jan Källman |
| * |
| * This library is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU Lesser General Public |
| * License as published by the Free Software Foundation; either |
| * version 2.1 of the License, or (at your option) any later version. |
| |
| * This library is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| * See the GNU Lesser General Public License for more details. |
| * |
| * The GNU Lesser General Public License can be viewed at http://www.opensource.org/licenses/lgpl-license.php |
| * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html |
| * |
| * All code and executables are provided "as is" with no warranty either express or implied. |
| * The author accepts no liability for any damage or loss of business that this product may cause. |
| * |
| * Code change notes: |
| * |
| * Author Change Date |
| ******************************************************************************* |
| * Jan Källman Added 10-SEP-2009 |
| * Jan Källman License changed GPL-->LGPL 2011-12-27 |
| *******************************************************************************/ |
| using System.Reflection; |
| using System.Runtime.CompilerServices; |
| using System.Runtime.InteropServices; |
| using System.Security; |
| |
| // 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("EPPlus 4.0.4")] |
| [assembly: AssemblyDescription( |
| "Allows Excel files(xlsx;xlsm) to be created on the server. See epplus.codeplex.com")] |
| [assembly: AssemblyConfiguration("")] |
| [assembly: AssemblyCompany("EPPlus")] |
| [assembly: AssemblyProduct("EPPlus 4.0.4")] |
| [assembly: AssemblyCopyright( |
| "Copyright 2009- ©Jan Källman. Parts of the Interface comes from ExcelPackage-project")] |
| [assembly: AssemblyTrademark("The GNU Lesser General Public License (LGPL)")] |
| [assembly: AssemblyCulture("")] |
| [assembly: ComVisible(false)] |
| [assembly: InternalsVisibleTo( |
| "EPPlusTest, PublicKey=00240000048000009400000006020000002400005253413100040000010001001dd11308ec93a6ebcec727e183a8972dc6f95c23ecc34aa04f40cbfc9c17b08b4a0ea5c00dcd203bace44d15a30ce8796e38176ae88e960ceff9cc439ab938738ba0e603e3d155fc298799b391c004fc0eb4393dd254ce25db341eb43303e4c488c9500e126f1288594f0710ec7d642e9c72e76dd860649f1c48249c00e31fba")] |
| |
| // The following GUID is for the ID of the typelib if this project is exposed to COM |
| [assembly: Guid("9dd43b8d-c4fe-4a8b-ad6e-47ef83bbbb01")] |
| |
| // 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 Revision and Build Numbers |
| // by using the '*' as shown below: |
| [assembly: AssemblyVersion("4.0.4.0")] |
| [assembly: AssemblyFileVersion("4.0.4.0")] |
| [assembly: AllowPartiallyTrustedCallers] |