" GenerateResource"任务意外失败

时间:2016-03-07 14:43:51

标签: c# linq msbuild resources resharper

今天我安装了ReSharper的免费试用版来清理Visual Studio 2015中的应用程序。

我总是使用alt + b + h构建此应用程序,这与选择Build -> Publish AppName相同,这对于生成可以使用的EXE来说通常非常可靠。

但是,在进行一些清理(主要是LINQ查询,重命名和删除不再使用的方法/字段)之后,我在尝试发布时看到了这个错误:

Error       The "GenerateResource" task failed unexpectedly.
System.Runtime.InteropServices.ExternalException (0x80004005): A generic error occurred in GDI+.
   at System.Drawing.Image.Save(Stream stream, ImageCodecInfo encoder, EncoderParameters encoderParams)
   at System.Drawing.Image.Save(MemoryStream stream)
   at System.Drawing.Image.System.Runtime.Serialization.ISerializable.GetObjectData(SerializationInfo si, StreamingContext context)
   at System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitSerialize(Object obj, ISurrogateSelector surrogateSelector, StreamingContext context, SerObjectInfoInit serObjectInfoInit, IFormatterConverter converter, ObjectWriter objectWriter)
   at System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.Serialize(Object obj, ISurrogateSelector surrogateSelector, StreamingContext context, SerObjectInfoInit serObjectInfoInit, IFormatterConverter converter, ObjectWriter objectWriter)
   at System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Serialize(Object graph, Header[] inHeaders, __BinaryWriter serWriter, Boolean fCheck)
   at System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(Stream serializationStream, Object graph, Header[] headers, Boolean fCheck)
   at System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(Stream serializationStream, Object graph)
   at System.Resources.ResourceWriter.WriteValue(ResourceTypeCode typeCode, Object value, BinaryWriter writer, IFormatter objFormatter)
   at System.Resources.ResourceWriter.Generate()
   at System.Resources.ResourceWriter.Dispose(Boolean disposing)
   at System.Resources.ResourceWriter.Close()
   at Microsoft.Build.Tasks.ProcessResourceFiles.WriteResources(IResourceWriter writer)
   at Microsoft.Build.Tasks.ProcessResourceFiles.WriteResources(String filename)
   at Microsoft.Build.Tasks.ProcessResourceFiles.ProcessFile(String inFile, String outFile)
   at Microsoft.Build.Tasks.ProcessResourceFiles.Run(TaskLoggingHelper log, ITaskItem[] assemblyFilesList, ArrayList inputs, ArrayList outputs, Boolean sourcePath, String language, String namespacename, String resourcesNamespace, String filename, String classname, Boolean publicClass)
   at Microsoft.Build.Tasks.ProcessResourceFiles.Run(TaskLoggingHelper log, ITaskItem[] assemblyFilesList, ArrayList inputs, ArrayList outputs, Boolean sourcePath, String language, String namespacename, String resourcesNamespace, String filename, String classname, Boolean publicClass)
   at Microsoft.Build.Tasks.GenerateResource.Execute()
   at Microsoft.Build.CommandLine.OutOfProcTaskAppDomainWrapperBase.InstantiateAndExecuteTask(IBuildEngine oopTaskHostNode, LoadedType taskType, String taskName, String taskLocation, String taskFile, Int32 taskLine, Int32 taskColumn, AppDomainSetup appDomainSetup, IDictionary`2 taskParams)  ITHelpre            

并且没有生成输出。

我重新启动了VS没有任何效果,并且还注意到我能够通过打开Developer Command Prompt for VS2015并运行"msbuild C:/path/to/solution.sln"来构建项目。

这确实在正确的位置创建了一个EXE,但每当我尝试打开它时,我都会

Appname has stopped working - Windows is collecting more information about the problem. This might take several minutes...

有没有人有任何关于我如何能够深入了解的提示?

额外详情

在VS中查看表单设计器后,我可以看到我的一个图像已损坏(颜色已经改变,以及之前没有的许多行和标记)

删除我发现的一些看起来已损坏的图片,项目已建成,但仍然在执行时崩溃

1 个答案:

答案 0 :(得分:0)

在调试模式下运行后,我注意到在调用PageControl时,它在资源设计器中抛出异常(即使它已经被声明)。

这似乎是在改变之后发生的:

Class PageControl1
{
    // Code goes here
}

对此:

namespace AppName
{
    Class PageControl1
    {
        // Code goes here
    }
}

我不太明白 - 对我而言,应用程序使用的类应该与该应用程序中使用的所有其他类位于同一名称空间中。我非常感谢对此的任何见解。

PageControl1更改回原来的样子后,我删除了2张损坏的图片(在进行上述namespace更改后似乎已经变得严重损坏,并将其替换为一些新图片,这解决了我的问题。