Fixed templates, forgot that the PluginAttribute is still needed. The build seems to work, and create a valid Greenshot installer, zip and paf.exe

This commit is contained in:
RKrom 2013-12-11 20:02:42 +01:00
commit c4205de671
13 changed files with 51 additions and 10 deletions

View file

@ -23,6 +23,7 @@
using System;
using System.Reflection;
using System.Runtime.InteropServices;
using Greenshot.Plugin;
#endregion
// General Information about an assembly is controlled through the following
@ -36,6 +37,8 @@ using System.Runtime.InteropServices;
[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.