dotnet/roslyn

MethodNotFoundException CSharpScripting.Compile(...)

Offen

#40.983 geöffnet am 15.01.2020

 (0 Kommentare) (0 Reaktionen) (1 zugewiesene Person)C# (4.257 Forks)batch import
Area-InteractiveBugInteractive-ScriptingLogichelp wanted

Repository-Metriken

Stars
 (20.414 Sterne)
PR-Merge-Metriken
 (Durchschn. Merge 6T 17h) (256 gemergte PRs in 30 T)

Beschreibung

Version Used: 3.4.0

Steps to Reproduce:

    [TestClass]
    public class UnitTest1
    {
        [TestMethod]
        public void TestMethod1()
        {
            try
            {
                // Creating the script
                var compiled = CSharpScript.Create<string>(@"return ""ciao"";");
                compiled.Compile();
                var runner = compiled.CreateDelegate();

                var result = runner().GetAwaiter().GetResult();

                Assert.AreEqual("ciao", result);
            }
            catch (Exception ex)
            {

            }
        }
    }

Expected Behavior: Test pass

Actual Behavior: The test does not run, it compiles but throw at runtime System.MissingMethodException: Method not found: 'System.Collections.Immutable.ImmutableArray1<Microsoft.CodeAnalysis.Diagnostic> Microsoft.CodeAnalysis.Scripting.Script.Compile(System.Threading.CancellationToken)'.`

Contributor Guide