程序集清单不匹配软件包安装无法解决

问题描述 投票:0回答:1

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

重现错误的步骤

  1. 从解决方案中删除所有软件包。卸载软件包-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. 转到参考Dlls(在Visual Studio中选择所有对象,然后使Copy Local = true。
  8. 重建并发现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)

CODE:

 // 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-controls roslyn-code-analysis winforms-interop roslynpad
1个回答
0
投票

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

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

无论binding.direct位于app.config上,请全部删除。重新编译并添加缺少的软件包。 tada解决方案正在工作。

© www.soinside.com 2019 - 2024. All rights reserved.