mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-10 07:42:47 -08:00
49 lines
2.2 KiB
C#
49 lines
2.2 KiB
C#
/*
|
|
* Greenshot - a free and open source screenshot tool
|
|
* Copyright (C) 2007-2016 Thomas Braun, Jens Klingen, Robin Krom
|
|
*
|
|
* For more information see: http://getgreenshot.org/
|
|
* The Greenshot project is hosted on GitHub https://github.com/greenshot/greenshot
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 1 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
|
|
// Allgemeine Informationen über eine Assembly werden über die folgenden
|
|
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
|
|
// die mit einer Assembly verknüpft sind.
|
|
[assembly: AssemblyTitle("GreenshotOCRCommand")]
|
|
[assembly: AssemblyDescription("A small executable to OCR a bitmap")]
|
|
[assembly: AssemblyConfiguration("")]
|
|
[assembly: AssemblyCompany("Greenshot")]
|
|
[assembly: AssemblyProduct("GreenshotOCRCommand")]
|
|
[assembly: AssemblyCopyright("Greenshot")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: AssemblyCulture("")]
|
|
|
|
// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar
|
|
// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von
|
|
// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest.
|
|
[assembly: ComVisible(false)]
|
|
|
|
// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
|
|
[assembly: Guid("d7668e7e-3018-4d27-9aa0-21b1afade1b8")]
|
|
|
|
// The assembly version, replaced by build scripts
|
|
[assembly: AssemblyVersion("1.2.0.0")]
|
|
[assembly: AssemblyInformationalVersion("1.2.0.0")]
|
|
[assembly: AssemblyFileVersion("1.2.0.0")]
|