| 1 | /* |
|---|
| 2 | * $Id$ |
|---|
| 3 | * Copyright 2008-2010 The Eraser Project |
|---|
| 4 | * Original Author: Joel Low <lowjoel@users.sourceforge.net> |
|---|
| 5 | * Modified By: |
|---|
| 6 | * |
|---|
| 7 | * This file is part of Eraser. |
|---|
| 8 | * |
|---|
| 9 | * Eraser is free software: you can redistribute it and/or modify it under the |
|---|
| 10 | * terms of the GNU General Public License as published by the Free Software |
|---|
| 11 | * Foundation, either version 3 of the License, or (at your option) any later |
|---|
| 12 | * version. |
|---|
| 13 | * |
|---|
| 14 | * Eraser is distributed in the hope that it will be useful, but WITHOUT ANY |
|---|
| 15 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
|---|
| 16 | * A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
|---|
| 17 | * |
|---|
| 18 | * A copy of the GNU General Public License can be found at |
|---|
| 19 | * <http://www.gnu.org/licenses/>. |
|---|
| 20 | */ |
|---|
| 21 | |
|---|
| 22 | using System.Reflection; |
|---|
| 23 | using System.Runtime.CompilerServices; |
|---|
| 24 | using System.Runtime.InteropServices; |
|---|
| 25 | |
|---|
| 26 | // General Information about an assembly is controlled through the following |
|---|
| 27 | // set of attributes. Change these attribute values to modify the information |
|---|
| 28 | // associated with an assembly. |
|---|
| 29 | [assembly: AssemblyTitle("Eraser Plugins")] |
|---|
| 30 | [assembly: AssemblyDescription("Eraser - Secure Data Removal for Windows")] |
|---|
| 31 | [assembly: AssemblyConfiguration("")] |
|---|
| 32 | [assembly: AssemblyCompany("The Eraser Project")] |
|---|
| 33 | [assembly: AssemblyProduct("Eraser")] |
|---|
| 34 | [assembly: AssemblyCopyright("Copyright © 2008-2010 The Eraser Project")] |
|---|
| 35 | [assembly: AssemblyTrademark("")] |
|---|
| 36 | [assembly: AssemblyCulture("")] |
|---|
| 37 | |
|---|
| 38 | // Setting ComVisible to false makes the types in this assembly not visible |
|---|
| 39 | // to COM components. If you need to access a type in this assembly from |
|---|
| 40 | // COM, set the ComVisible attribute to true on that type. |
|---|
| 41 | [assembly: ComVisible(false)] |
|---|
| 42 | |
|---|
| 43 | // The following GUID is for the ID of the typelib if this project is exposed to COM |
|---|
| 44 | [assembly: Guid("1c4e0bd3-4272-4cc8-9fb6-d0e0703b2013")] |
|---|