diff --git a/Greenshot/AssemblyInfo.cs.template b/Greenshot/AssemblyInfo.cs.template index d4788fff0..b49b02b8a 100644 --- a/Greenshot/AssemblyInfo.cs.template +++ b/Greenshot/AssemblyInfo.cs.template @@ -20,7 +20,7 @@ */ using System.Reflection; using System.Runtime.InteropServices; - +using System.Windows.Markup; // Information about this assembly is defined by the following // attributes. // @@ -47,4 +47,6 @@ using System.Runtime.InteropServices; // You can specify all values by your own or you can build default build and revision // numbers with the '*' character (the default): -[assembly: AssemblyVersion("1.1.6.$WCREV$")] +[assembly: AssemblyVersion("@GITVERSION@")] +[assembly: AssemblyInformationalVersion("@GITDETAILVERSION@")] + diff --git a/GreenshotBoxPlugin/Properties/AssemblyInfo.cs.template b/GreenshotBoxPlugin/Properties/AssemblyInfo.cs.template index 68cefdd30..4732a0ddb 100644 --- a/GreenshotBoxPlugin/Properties/AssemblyInfo.cs.template +++ b/GreenshotBoxPlugin/Properties/AssemblyInfo.cs.template @@ -23,8 +23,7 @@ using System; using System.Reflection; using System.Runtime.InteropServices; -using Greenshot.Plugin; - +using System.Windows.Markup; #endregion // General Information about an assembly is controlled through the following @@ -38,8 +37,6 @@ using Greenshot.Plugin; [assembly: AssemblyCopyright("Copyright (C) 2012")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -// The PluginAttribute describes the "entryType" and if the plugin is configurable -[assembly: PluginAttribute("GreenshotBoxPlugin.BoxPlugin", true)] // This sets the default COM visibility of types in the assembly to invisible. // If you need to expose a type to COM, use [ComVisible(true)] on that type. @@ -51,4 +48,5 @@ using Greenshot.Plugin; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.6.$WCREV$")] +[assembly: AssemblyVersion("@GITVERSION@")] +[assembly: AssemblyInformationalVersion("@GITDETAILVERSION@")] diff --git a/GreenshotConfluencePlugin/Properties/AssemblyInfo.cs.template b/GreenshotConfluencePlugin/Properties/AssemblyInfo.cs.template index 786a70b8b..52fd887fe 100644 --- a/GreenshotConfluencePlugin/Properties/AssemblyInfo.cs.template +++ b/GreenshotConfluencePlugin/Properties/AssemblyInfo.cs.template @@ -23,8 +23,7 @@ using System; using System.Reflection; using System.Runtime.InteropServices; -using Greenshot.Plugin; - +using System.Windows.Markup; #endregion // General Information about an assembly is controlled through the following @@ -38,8 +37,6 @@ using Greenshot.Plugin; [assembly: AssemblyCopyright("Copyright (C) 2007-2013")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -// The PluginAttribute describes the "entryType" and if the plugin is configurable -[assembly: PluginAttribute("GreenshotConfluencePlugin.ConfluencePlugin", true)] // This sets the default COM visibility of types in the assembly to invisible. // If you need to expose a type to COM, use [ComVisible(true)] on that type. @@ -51,4 +48,5 @@ using Greenshot.Plugin; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.6.$WCREV$")] \ No newline at end of file +[assembly: AssemblyVersion("@GITVERSION@")] +[assembly: AssemblyInformationalVersion("@GITDETAILVERSION@")] \ No newline at end of file diff --git a/GreenshotDropboxPlugin/Properties/AssemblyInfo.cs.template b/GreenshotDropboxPlugin/Properties/AssemblyInfo.cs.template index 69aa34640..b003caf15 100644 --- a/GreenshotDropboxPlugin/Properties/AssemblyInfo.cs.template +++ b/GreenshotDropboxPlugin/Properties/AssemblyInfo.cs.template @@ -23,8 +23,7 @@ using System; using System.Reflection; using System.Runtime.InteropServices; -using Greenshot.Plugin; - +using System.Windows.Markup; #endregion // General Information about an assembly is controlled through the following @@ -38,8 +37,6 @@ using Greenshot.Plugin; [assembly: AssemblyCopyright("Copyright (C) 2012")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -// The PluginAttribute describes the "entryType" and if the plugin is configurable -[assembly: PluginAttribute("GreenshotDropboxPlugin.DropboxPlugin", true)] // This sets the default COM visibility of types in the assembly to invisible. // If you need to expose a type to COM, use [ComVisible(true)] on that type. @@ -51,4 +48,5 @@ using Greenshot.Plugin; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.6.$WCREV$")] +[assembly: AssemblyVersion("@GITVERSION@")] +[assembly: AssemblyInformationalVersion("@GITDETAILVERSION@")] diff --git a/GreenshotExternalCommandPlugin/Properties/AssemblyInfo.cs.template b/GreenshotExternalCommandPlugin/Properties/AssemblyInfo.cs.template index eb95cb101..209065827 100644 --- a/GreenshotExternalCommandPlugin/Properties/AssemblyInfo.cs.template +++ b/GreenshotExternalCommandPlugin/Properties/AssemblyInfo.cs.template @@ -23,8 +23,7 @@ using System; using System.Reflection; using System.Runtime.InteropServices; -using Greenshot.Plugin; - +using System.Windows.Markup; #endregion // General Information about an assembly is controlled through the following @@ -38,7 +37,6 @@ using Greenshot.Plugin; [assembly: AssemblyCopyright("Copyright (C) 2007-2013")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -[assembly: PluginAttribute("ExternalCommand.ExternalCommandPlugin", true)] // This sets the default COM visibility of types in the assembly to invisible. // If you need to expose a type to COM, use [ComVisible(true)] on that type. @@ -50,4 +48,5 @@ using Greenshot.Plugin; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.6.$WCREV$")] +[assembly: AssemblyVersion("@GITVERSION@")] +[assembly: AssemblyInformationalVersion("@GITDETAILVERSION@")] diff --git a/GreenshotFlickrPlugin/Properties/AssemblyInfo.cs.template b/GreenshotFlickrPlugin/Properties/AssemblyInfo.cs.template index d81e0fd09..ed4e760a7 100644 --- a/GreenshotFlickrPlugin/Properties/AssemblyInfo.cs.template +++ b/GreenshotFlickrPlugin/Properties/AssemblyInfo.cs.template @@ -23,8 +23,7 @@ using System; using System.Reflection; using System.Runtime.InteropServices; -using Greenshot.Plugin; - +using System.Windows.Markup; #endregion // General Information about an assembly is controlled through the following @@ -38,8 +37,6 @@ using Greenshot.Plugin; [assembly: AssemblyCopyright("Copyright (C) 2012")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -// The PluginAttribute describes the "entryType" and if the plugin is configurable -[assembly: PluginAttribute("GreenshotFlickrPlugin.FlickrPlugin", true)] // This sets the default COM visibility of types in the assembly to invisible. // If you need to expose a type to COM, use [ComVisible(true)] on that type. @@ -51,4 +48,5 @@ using Greenshot.Plugin; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.6.$WCREV$")] +[assembly: AssemblyVersion("@GITVERSION@")] +[assembly: AssemblyInformationalVersion("@GITDETAILVERSION@")] diff --git a/GreenshotImgurPlugin/Properties/AssemblyInfo.cs.template b/GreenshotImgurPlugin/Properties/AssemblyInfo.cs.template index a335743a5..44c576eb6 100644 --- a/GreenshotImgurPlugin/Properties/AssemblyInfo.cs.template +++ b/GreenshotImgurPlugin/Properties/AssemblyInfo.cs.template @@ -23,8 +23,7 @@ using System; using System.Reflection; using System.Runtime.InteropServices; -using Greenshot.Plugin; - +using System.Windows.Markup; #endregion // General Information about an assembly is controlled through the following @@ -38,8 +37,6 @@ using Greenshot.Plugin; [assembly: AssemblyCopyright("Copyright (C) 2007-2013")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -// The PluginAttribute describes the "entryType" and if the plugin is configurable -[assembly: PluginAttribute("GreenshotImgurPlugin.ImgurPlugin", true)] // This sets the default COM visibility of types in the assembly to invisible. // If you need to expose a type to COM, use [ComVisible(true)] on that type. @@ -51,4 +48,5 @@ using Greenshot.Plugin; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.6.$WCREV$")] +[assembly: AssemblyVersion("@GITVERSION@")] +[assembly: AssemblyInformationalVersion("@GITDETAILVERSION@")] diff --git a/GreenshotJiraPlugin/Properties/AssemblyInfo.cs.template b/GreenshotJiraPlugin/Properties/AssemblyInfo.cs.template index 1c23983ba..0988f6c2e 100644 --- a/GreenshotJiraPlugin/Properties/AssemblyInfo.cs.template +++ b/GreenshotJiraPlugin/Properties/AssemblyInfo.cs.template @@ -23,8 +23,7 @@ using System; using System.Reflection; using System.Runtime.InteropServices; -using Greenshot.Plugin; - +using System.Windows.Markup; #endregion // General Information about an assembly is controlled through the following @@ -38,8 +37,6 @@ using Greenshot.Plugin; [assembly: AssemblyCopyright("Copyright (C) 2007-2013")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -// The PluginAttribute describes the "entryType" and if the plugin is configurable -[assembly: PluginAttribute("GreenshotJiraPlugin.JiraPlugin", true)] // This sets the default COM visibility of types in the assembly to invisible. // If you need to expose a type to COM, use [ComVisible(true)] on that type. @@ -51,4 +48,5 @@ using Greenshot.Plugin; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.6.$WCREV$")] \ No newline at end of file +[assembly: AssemblyVersion("@GITVERSION@")] +[assembly: AssemblyInformationalVersion("@GITDETAILVERSION@")] \ No newline at end of file diff --git a/GreenshotOCRCommand/Properties/AssemblyInfo.cs.template b/GreenshotOCRCommand/Properties/AssemblyInfo.cs.template new file mode 100644 index 000000000..c6c9ee5e2 --- /dev/null +++ b/GreenshotOCRCommand/Properties/AssemblyInfo.cs.template @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +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")] + +// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: +// +// Hauptversion +// Nebenversion +// Buildnummer +// Revision +// +// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern +// übernehmen, indem Sie "*" eingeben: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("@GITVERSION@")] +[assembly: AssemblyInformationalVersion("@GITDETAILVERSION@")] diff --git a/GreenshotOCRPlugin/Properties/AssemblyInfo.cs.template b/GreenshotOCRPlugin/Properties/AssemblyInfo.cs.template index fd4aad86b..e5b0144a4 100644 --- a/GreenshotOCRPlugin/Properties/AssemblyInfo.cs.template +++ b/GreenshotOCRPlugin/Properties/AssemblyInfo.cs.template @@ -23,8 +23,7 @@ using System; using System.Reflection; using System.Runtime.InteropServices; -using Greenshot.Plugin; - +using System.Windows.Markup; #endregion // General Information about an assembly is controlled through the following @@ -38,8 +37,6 @@ using Greenshot.Plugin; [assembly: AssemblyCopyright("Copyright (C) 2007-2013")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -// The PluginAttribute describes the "entryType" and if the plugin is configurable -[assembly: PluginAttribute("GreenshotOCR.OcrPlugin", true)] // This sets the default COM visibility of types in the assembly to invisible. // If you need to expose a type to COM, use [ComVisible(true)] on that type. @@ -51,4 +48,5 @@ using Greenshot.Plugin; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.6.$WCREV$")] +[assembly: AssemblyVersion("@GITVERSION@")] +[assembly: AssemblyInformationalVersion("@GITDETAILVERSION@")] diff --git a/GreenshotOfficePlugin/Properties/AssemblyInfo.cs.template b/GreenshotOfficePlugin/Properties/AssemblyInfo.cs.template index a6d650c66..2d8329eb5 100644 --- a/GreenshotOfficePlugin/Properties/AssemblyInfo.cs.template +++ b/GreenshotOfficePlugin/Properties/AssemblyInfo.cs.template @@ -23,8 +23,7 @@ using System; using System.Reflection; using System.Runtime.InteropServices; -using Greenshot.Plugin; - +using System.Windows.Markup; #endregion // General Information about an assembly is controlled through the following @@ -38,8 +37,6 @@ using Greenshot.Plugin; [assembly: AssemblyCopyright("Copyright (C) 2007-2013")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -// The PluginAttribute describes the "entryType" and if the plugin is configurable -[assembly: PluginAttribute("GreenshotOfficePlugin.OfficePlugin", false)] // This sets the default COM visibility of types in the assembly to invisible. // If you need to expose a type to COM, use [ComVisible(true)] on that type. @@ -51,4 +48,5 @@ using Greenshot.Plugin; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.6.$WCREV$")] +[assembly: AssemblyVersion("@GITVERSION@")] +[assembly: AssemblyInformationalVersion("@GITDETAILVERSION@")] diff --git a/GreenshotPhotobucketPlugin/Properties/AssemblyInfo.cs.template b/GreenshotPhotobucketPlugin/Properties/AssemblyInfo.cs.template index c3db957d0..0d80ffc0d 100644 --- a/GreenshotPhotobucketPlugin/Properties/AssemblyInfo.cs.template +++ b/GreenshotPhotobucketPlugin/Properties/AssemblyInfo.cs.template @@ -23,8 +23,7 @@ using System; using System.Reflection; using System.Runtime.InteropServices; -using Greenshot.Plugin; - +using System.Windows.Markup; #endregion // General Information about an assembly is controlled through the following @@ -38,8 +37,6 @@ using Greenshot.Plugin; [assembly: AssemblyCopyright("Copyright (C) 2007-2013")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -// The PluginAttribute describes the "entryType" and if the plugin is configurable -[assembly: PluginAttribute("GreenshotPhotobucketPlugin.PhotobucketPlugin", true)] // This sets the default COM visibility of types in the assembly to invisible. // If you need to expose a type to COM, use [ComVisible(true)] on that type. @@ -51,4 +48,5 @@ using Greenshot.Plugin; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.6.$WCREV$")] +[assembly: AssemblyVersion("@GITVERSION@")] +[assembly: AssemblyInformationalVersion("@GITDETAILVERSION@")] diff --git a/GreenshotPicasaPlugin/Properties/AssemblyInfo.cs.template b/GreenshotPicasaPlugin/Properties/AssemblyInfo.cs.template index c4c661213..ba789faf1 100644 --- a/GreenshotPicasaPlugin/Properties/AssemblyInfo.cs.template +++ b/GreenshotPicasaPlugin/Properties/AssemblyInfo.cs.template @@ -23,8 +23,7 @@ using System; using System.Reflection; using System.Runtime.InteropServices; -using Greenshot.Plugin; - +using System.Windows.Markup; #endregion // General Information about an assembly is controlled through the following @@ -38,8 +37,6 @@ using Greenshot.Plugin; [assembly: AssemblyCopyright("Copyright (C) 2012")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -// The PluginAttribute describes the "entryType" and if the plugin is configurable -[assembly: PluginAttribute("GreenshotPicasaPlugin.PicasaPlugin", true)] // This sets the default COM visibility of types in the assembly to invisible. // If you need to expose a type to COM, use [ComVisible(true)] on that type. @@ -51,4 +48,5 @@ using Greenshot.Plugin; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.6.$WCREV$")] +[assembly: AssemblyVersion("@GITVERSION@")] +[assembly: AssemblyInformationalVersion("@GITDETAILVERSION@")] diff --git a/GreenshotPlugin/Properties/AssemblyInfo.cs.template b/GreenshotPlugin/Properties/AssemblyInfo.cs.template index f5cfe4de9..ddb620139 100644 --- a/GreenshotPlugin/Properties/AssemblyInfo.cs.template +++ b/GreenshotPlugin/Properties/AssemblyInfo.cs.template @@ -23,7 +23,7 @@ using System; using System.Reflection; using System.Runtime.InteropServices; - +using System.Windows.Markup; #endregion // General Information about an assembly is controlled through the following @@ -48,4 +48,12 @@ using System.Runtime.InteropServices; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.6.$WCREV$")] +[assembly: AssemblyVersion("@GITVERSION@")] +[assembly: AssemblyInformationalVersion("@GITDETAILVERSION@")] + +// Definitions for XAML namespaces +[assembly: XmlnsPrefix("http://schemas.getgreenshot.net/plugin/", "greenshotplugin")] +[assembly: XmlnsDefinition("http://schemas.getgreenshot.net/plugin/", "GreenshotPlugin")] +[assembly: XmlnsDefinition("http://schemas.getgreenshot.net/plugin/", "GreenshotPlugin.Core")] +[assembly: XmlnsDefinition("http://schemas.getgreenshot.net/plugin/", "GreenshotPlugin.Core.Settings")] +[assembly: XmlnsDefinition("http://schemas.getgreenshot.net/plugin/", "GreenshotPlugin.WPF")] \ No newline at end of file diff --git a/PluginExample/Properties/AssemblyInfo.cs.template b/PluginExample/Properties/AssemblyInfo.cs.template index cbb31cec3..db58e5ab4 100644 --- a/PluginExample/Properties/AssemblyInfo.cs.template +++ b/PluginExample/Properties/AssemblyInfo.cs.template @@ -23,8 +23,7 @@ using System; using System.Reflection; using System.Runtime.InteropServices; -using Greenshot.Plugin; - +using System.Windows.Markup; #endregion // General Information about an assembly is controlled through the following @@ -39,9 +38,6 @@ using Greenshot.Plugin; [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -// The PluginAttribute describes the "entryType" and if the plugin is configurable -[assembly: PluginAttribute("PluginExample.PluginExample", true)] - // This sets the default COM visibility of types in the assembly to invisible. // If you need to expose a type to COM, use [ComVisible(true)] on that type. [assembly: ComVisible(false)] @@ -52,4 +48,5 @@ using Greenshot.Plugin; // // You can specify all the values or you can use the default the Revision and // Build Numbers by using the '*' as shown below: -[assembly: AssemblyVersion("1.1.6.$WCREV$")] +[assembly: AssemblyVersion("@GITVERSION@")] +[assembly: AssemblyInformationalVersion("@GITDETAILVERSION@")]