| /* |
| * You may amend and distribute as you like, but don't remove this header! |
| * |
| * EPPlus provides server-side generation of Excel 2007 spreadsheets. |
| * |
| * See http://www.codeplex.com/EPPlus for details. |
| * |
| * All rights reserved. |
| * |
| * EPPlus is an Open Source project provided under the |
| * GNU General Public License (GPL) as published by the |
| * Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| * |
| * The GNU General Public License can be viewed at http://www.opensource.org/licenses/gpl-license.php |
| * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html |
| * |
| * The code for this project may be used and redistributed by any means PROVIDING it is |
| * not sold for profit without the author's written consent, and providing that this notice |
| * and the author's name and all copyright notices remain intact. |
| * |
| * 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 Initial Release 2009-10-01 |
| *******************************************************************************/ |
| 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("EPPlusSamples")] |
| [assembly: AssemblyDescription("Demonstrate Excel files being created on the server")] |
| [assembly: AssemblyConfiguration("")] |
| [assembly: AssemblyCompany("")] |
| [assembly: AssemblyProduct("EPPlus Samples")] |
| [assembly: AssemblyTrademark("The GNU General Public License (GPL)")] |
| [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("3795b282-73dd-47f0-accf-2197054d6cf4")] |
| |
| // Version information for an assembly consists of the following four values: |
| // |
| // Major Version |
| // Minor Version |
| // Build Number |
| // Revision |
| // |
| [assembly: AssemblyVersion("1.0.0.1")] |
| [assembly: AssemblyFileVersion("1.0.0.1")] |