首页 > 解决方案 > 程序集清单不匹配包安装无法解决

问题描述

清单错误没有解决,我尽力了(甚至将 Roslyn 源代码链接到我的项目)。以下是产生错误的代码部分。该项目是 WINFORM 并在 Element Host 中加载 Roslyn 程序集。

重现错误的步骤

  1. 从解决方案中删除所有包 Get-Package | 卸载包 -RemoveDependencies -Force

  2. 将框架设置为 4.7.2 并构建平台:x86

  3. 删除所有 System.* 引用
  4. 添加引用 System、System.Drawing、System.Windows、System.Windows.Forms、System.Data
  5. 安装包 roslynPad.Editor(最新:即 1.0.4)5.1。安装包 roslynPad.Windows(最新:即 2.4.0)5.2。安装包 roslynPad.Roslyn(最新:即 2.4.0)
  6. 参考 PresentationCore、PresentationFramework、WindowsBase、WindowsFormsIntegration、UIAutomationProvider
  7. Goto Reference Dlls 全选(在 Visual Studio 中),并使 Copy Local = true。
  8. ReBuild 发现 23 个(不同版本之间的冲突)警告。
  9. 检查详细构建日志(详细程度设置为详细)

9** Stackoverflow 建议:在某些帖子上重新编译程序集。删除所有软件包并添加 roslynPad 的来源。

10 执行以下操作,添加源并重置依赖项

**************************************************************************

 =======  ** RoslynPad.Roslyn ** =======
Microsoft.CodeAnalysis.CSharp ( 3.1.0 ) 
Microsoft.CSharp ( 4.5.0 ) 
System.Threading.Thread ( 4.3.0 )
NETStandardLibrary ( 2.0.3 )

 =======  ** RoslynPad.Roslyn.Windows ** =======
 NETFramework 4.7.2

 =======  ** RoslynPad.Editor.Windows ** =======
 NETCoreApp 3.0 NETFramework 4.7.2


 =======  ** emptyRoslynPad ** =======  
Set Refrence to above projects sources.  
     Install following Package  
         Install-Package AvalonEdit -Version 5.0.4
         Install-Package Microsoft.CodeAnalysis -Version 3.1.0

 **************************************************************************

 11 ReBuild     Still the Error ( Mismatch Assembly ) Exists...
System.IO.FileLoadException
  HResult=0x80131040
  Message=Could not load file or assembly 'Microsoft.CodeAnalysis, Version=3.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
  Source=emptyRoslynPad
  StackTrace:
   at emptyRoslynPad.Form1.InitializeEditor(String sourceCode) in C:\Users\user_\source\repos\emptyRoslynPad\emptyRoslynPad\Form1.cs:line 118
   at emptyRoslynPad.Form1..ctor() in C:\Users\user_\source\repos\emptyRoslynPad\emptyRoslynPad\Form1.cs:line 27
   at emptyRoslynPad.Program.Main(String[] args) in C:\Users\user_\source\repos\emptyRoslynPad\emptyRoslynPad\Program.cs:line 20

Inner Exception 1:
FileLoadException: Could not load file or assembly 'Microsoft.CodeAnalysis, Version=3.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

代码:

 // Form1.cs //
using ICSharpCode.AvalonEdit.Folding;
using ICSharpCode.AvalonEdit.Highlighting;
using RoslynPad.Editor;
using RoslynPad.Roslyn;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace emptyRoslynPad
{
    public partial class Form1 : Form
    {
        public Form1() // line 118 is the termination }.
        {
            InitializeComponent(); // line 27

            try
            {
                InitializeEditor("");
                MessageBox.Show("Load without error");
            }
            catch (ReflectionTypeLoadException ex)
            {
                StringBuilder sb = new StringBuilder();
                foreach (Exception exSub in ex.LoaderExceptions)
                {
                    sb.AppendLine(exSub.Message);
                    FileNotFoundException exFileNotFound = exSub as FileNotFoundException;
                    if (exFileNotFound != null)
                    {
                        if (!string.IsNullOrEmpty(exFileNotFound.FusionLog))
                        {
                            sb.AppendLine("Fusion Log:");
                            sb.AppendLine(exFileNotFound.FusionLog);
                        }
                    }
                    sb.AppendLine();
                }
                string errorMessage = sb.ToString();
                //Display or log the error based on your application.
                MessageBox.Show(errorMessage);
            }
            finally
            {

            }
        }


        private RoslynCodeEditor _editor;
        private void InitializeEditor(string sourceCode)
        {
            if (string.IsNullOrWhiteSpace(sourceCode))
                sourceCode = string.Empty;
            _editor = new RoslynCodeEditor();
            // bin\x86\Release
            var workingDirectory = Directory.GetCurrentDirectory();
            var roslynHost = new RoslynHost(additionalAssemblies: new[]
            {
        Assembly.Load("RoslynPad.Roslyn.Windows"),
        Assembly.Load("RoslynPad.Editor.Windows")
    });

            _editor.Initialize(roslynHost, new ClassificationHighlightColors(), workingDirectory, sourceCode);
            _editor.FontFamily = new System.Windows.Media.FontFamily("Consolas");
            _editor.SyntaxHighlighting = HighlightingManager.Instance.GetDefinition("C#");
            _editor.FontSize = 12.75f;
            elementHost1.Child = _editor;
            this.Controls.Add(elementHost1);

            // Fold the members/parameters by default so the user doesn't have to see them
            var foldingManager = FoldingManager.Install(_editor.TextArea);
            var foldings = new NewFolding[1] {
    new NewFolding(0, sourceCode.Length) { // end before the newline
        Name = "Members/Parameters",
        DefaultClosed = true
    }
};
            foldingManager.UpdateFoldings(foldings, sourceCode.Length);
        }
    }
}

// Program.cs //

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
using System.IO;
using System.Reflection;
using System.Windows.Forms;

namespace emptyRoslynPad
{
    static class Program
    {
        [STAThread]
        static void Main(string[] args)
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1()); // line 20
        }
    }
}

标签: c#wpf-controlsroslyn-code-analysiswinforms-interoproslynpad

解决方案


通过更改 app.config 中的以下内容解决

 <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />

无论 app.config 上的 bindingRedirect 是什么,都删除所有内容。重新编译并添加缺少的包。tada 解决方案正在运行。


推荐阅读