diff --git a/Greenshot/App.config b/Greenshot/App.config index 797c5de00..0b1f5ce4d 100644 --- a/Greenshot/App.config +++ b/Greenshot/App.config @@ -4,4 +4,7 @@ + + + \ No newline at end of file diff --git a/Greenshot/Greenshot.csproj b/Greenshot/Greenshot.csproj index e7ec4b00d..9748bf47b 100644 --- a/Greenshot/Greenshot.csproj +++ b/Greenshot/Greenshot.csproj @@ -1,5 +1,5 @@  - + {CD642BF4-D815-4D67-A0B5-C69F0B8231AF} Debug @@ -17,6 +17,26 @@ v2.0 greenshot.manifest + + + + + 3.5 + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + false + true bin\Debug\ @@ -43,13 +63,36 @@ AnyCPU 4096 + + LocalIntranet + + + false + + + false + + + 1857EB0CBA9FA06B97305F97D3A093F4B31699B0 + + + Greenshot_TemporaryKey.pfx + + + false + + + Greenshot_TemporaryKey.pfx + Lib\log4net.dll + + @@ -179,6 +222,12 @@ MainForm.cs + + UserControl + + + MySaveDialog.cs + Form @@ -207,7 +256,10 @@ MovableShowColorForm.cs - + + Designer + + @@ -222,6 +274,7 @@ Always + Designer @@ -245,6 +298,9 @@ + + AboutForm.cs + ColorDialog.cs @@ -254,6 +310,12 @@ MainForm.cs + + MySaveDialog.cs + + + QualityDialog.cs + SettingsForm.cs @@ -310,6 +372,7 @@ Always + Designer Always @@ -411,6 +474,28 @@ GreenshotPlugin + + + False + Microsoft .NET Framework 4 %28x86 und x64%29 + true + + + False + .NET Framework 3.5 SP1 Client Profile + false + + + False + .NET Framework 3.5 SP1 + false + + + False + Windows Installer 3.1 + true + + "$(MSBuildProjectDirectory)\tools\TortoiseSVN\SubWCRev.exe" "$(MSBuildProjectDirectory)\." "$(MSBuildProjectDirectory)\AssemblyInfo.cs.template" "$(MSBuildProjectDirectory)\AssemblyInfo.cs" diff --git a/Greenshot/Helpers/PluginHelper.cs b/Greenshot/Helpers/PluginHelper.cs index c47e7d527..0730f28b0 100644 --- a/Greenshot/Helpers/PluginHelper.cs +++ b/Greenshot/Helpers/PluginHelper.cs @@ -229,7 +229,7 @@ namespace Greenshot.Helpers { foreach (string pluginFile in pluginFiles) { LOG.DebugFormat("Checking the following file for plugins: {0}", pluginFile); try { - Assembly assembly = Assembly.LoadFrom(pluginFile, Assembly.GetExecutingAssembly().Evidence); + Assembly assembly = Assembly.LoadFrom(pluginFile); PluginAttribute[] pluginAttributes = assembly.GetCustomAttributes(typeof(PluginAttribute), false) as PluginAttribute[]; if (pluginAttributes.Length > 0) { PluginAttribute pluginAttribute = pluginAttributes[0];