gpt4 book ai didi

c# - 如何使用 C# 6.0 为 .NET 2.0 编译?

转载 作者:行者123 更新时间:2023-11-30 14:26:05 26 4
gpt4 key购买 nike

Visual Studio 2015 使用新的 c# 编译器编译旧的 CLR 没有问题。它似乎在幕后使用 VBCSCompiler.exe,但我找不到任何关于 VBCSCompiler.exe 命令行选项的文档。

另一方面,csc.exe 似乎没有选择 objective-c LR 的选项。您可以使用将为 CLR 4 编译的最新 csc.exe,或者您可以使用较旧的 csc.exe 为 CLR 2 进行编译,但它不会是 C# 6。

那么如何针对 CLR 2 和 c# 6.0 进行编译?我必须为此拥有 Visual Studio 吗?还有其他选择吗?

最佳答案

您可以使用 /r 指定旧的 .NET 程序集:

 /reference:<alias>=<file>     Reference metadata from the specified assembly
file using the given alias (Short form: /r)
/reference:<file list> Reference metadata from the specified assembly
files (Short form: /r)

您还需要使用 /nostdlib 禁止自动包含现代 mscorlib:

 /nostdlib[+|-]                Do not reference standard library (mscorlib.dll)

结合使用这些,您可以使用 C# 6 编译器构建 .NET 2.0 应用。

csc.exe /r:"C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll" /nostdlib Program.cs

您甚至可以在您的应用中使用 C# 6 功能! (只要它们是不涉及 .NET 运行时的仅限编译器的功能)

public static string MyProp { get; } = "Hello!";
static void Main(string[] args)
{
Console.WriteLine(MyProp);
// prints "Hello!"

var assembly = Assembly.GetAssembly(typeof(Program));
Console.WriteLine(assembly.ImageRuntimeVersion);
// prints "v2.0.50727"
}

关于c# - 如何使用 C# 6.0 为 .NET 2.0 编译?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36463047/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com