将 CSharpCodeProvider 与 .net 4.5 beta 一起使用

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

我最近安装了 Visual Studio 11 Beta,并且正在尝试更新现有的 4.0 项目以使用 4.5。在程序中,它使用

CSharpCodeProvider
编译一些动态生成的代码。

/// <summary>
/// Compile and return a reference to the compiled assembly
/// </summary>
private Assembly Compile()
{
    var referencedDlls = new List<string>
    {
        "mscorlib.dll",
        "System.dll",
        "System.Core.dll",
    };
    referencedDlls.AddRange(RequiredReferences);

    var parameters = new CompilerParameters(
        assemblyNames: referencedDlls.ToArray(),
        outputName: GeneratedDllFileName,
        // only include debug information if we are currently debugging
        includeDebugInformation: Debugger.IsAttached);
    parameters.TreatWarningsAsErrors = false;
    parameters.WarningLevel = 0;
    parameters.GenerateExecutable = false;
    parameters.GenerateInMemory = false;
    parameters.CompilerOptions = "/optimize+ /platform:x64";

    string[] files = Directory.GetFiles(GenerationDirectory, "*.cs");

    var compiler = new CSharpCodeProvider(
        new Dictionary<string, string> { { "CompilerVersion", "v4.5" } });
    var results = compiler.CompileAssemblyFromFile(parameters, files);

    if (results.Errors.HasErrors)
    {
        string firstError =
            string.Format("Compile error: {0}", results.Errors[0].ToString());
        throw new ApplicationException(firstError);
    }
    else
    {
        return results.CompiledAssembly;
    }
}

当我将

CompilerVersion
{ "CompilerVersion", "v4.0" }
更改为
{ "CompilerVersion", "v4.5" }

时,问题就出现了

我现在遇到异常

找不到编译器可执行文件csc.exe。

指定

CompilerVersion
是告诉它使用 4.5 的错误方法吗?由于代码不会使用任何新的 4.5 特定功能,因此将其编译为 v4.5 是否会产生影响?

c# .net-4.5 csharpcodeprovider
1个回答
12
投票

如果您给我们一个简短但完整的程序来演示该问题,那将会有所帮助,但我可以使用“v4.0”验证它是否可以工作并编译异步方法,假设您在一台机器上运行VS11 测试版已安装。

演示:

using System;
using System.Collections;
using System.Reflection;
using System.Collections.Generic;
using System.Diagnostics;
using Microsoft.CSharp;
using System.CodeDom.Compiler;

namespace Foo {}

class Program
{
    static void Main(string[] args)
    {
        var referencedDll = new List<string>
        {
            "mscorlib.dll",
            "System.dll",
            "System.Core.dll",
        };

        var parameters = new CompilerParameters(
             assemblyNames: referencedDll.ToArray(),
             outputName: "foo.dll",
             includeDebugInformation: false)
        {
            TreatWarningsAsErrors = true,
            // We don't want to be warned that we have no await!
            WarningLevel = 0,
            GenerateExecutable = false,
            GenerateInMemory = true
        };

        var source = new[] { "class Test { static async void Foo() {}}" };

        var options = new Dictionary<string, string> {
             { "CompilerVersion", "v4.0" }
        };
        var compiler = new CSharpCodeProvider(options);
        var results = compiler.CompileAssemblyFromSource(parameters, source);

        Console.WriteLine("Success? {0}", !results.Errors.HasErrors);
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.