gpt4 book ai didi

c# - 使用 Roslyn API 编译 .NET Core 应用程序

转载 作者:行者123 更新时间:2023-11-30 16:42:42 34 4
gpt4 key购买 nike

我正在生成一些动态 C# 并想将其编译为 .NET Core 应用程序。但是,似乎缺少 deps.json 文件以使其实际可运行。所以编译本身是有效的,但是在运行 dotnet [dll 的名称] 时它给出了一个错误:

在我的代码中

  CSharpCompilation compilation = CSharpCompilation.Create(assemblyName,
syntaxTrees: files,
references: references,
options: new CSharpCompilationOptions(OutputKind.ConsoleApplication,
optimizationLevel: OptimizationLevel.Debug
)
);

FileUtility.CreateDirectory(outputDllPath);
EmitResult result = compilation.Emit(outputDllPath, pdbPath: outputPdbPath);

引用集合包含 Microsoft.NETCore.App 和 netstandard 2.0.0 ref dll,以及其他符合 netstandard2.0 的特定 dll。

这没有错误。运行时我得到:

Unhandled Exception: System.TypeLoadException: Could not load type 'System.Object' from assembly 'netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'.

如何为我的编译生成正确的 deps.json 文件?

最佳答案

我们通过执行以下操作解决了它:

针对 C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0 中的 dll 编译 C# 文件(don不要添加对 .NET 4. dll 的引用!):

public static IEnumerable<PortableExecutableReference> CreateNetCoreReferences()
{
foreach(var dllFile in Directory.GetFiles(@"C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\ref\netcoreapp2.0", "*.dll"))
{
yield return MetadataReference.CreateFromFile(dllFile);
}
}

创建一个 CSharpCompilation 并将 ConsoleApp 作为输出:

CSharpCompilation.Create(assemblyName,
syntaxTrees: files,
references: references,
options: new CSharpCompilationOptions(OutputKind.ConsoleApplication)
);

现在只需要将runtimeconfig.json([dllname].runtimeconfig.json)放在输出的旁边,内容如下:

{
"runtimeOptions": {
"tfm": "netcoreapp2.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "2.0.0"
}
}
}

可以使用 dotnet.exe 运行输出。

关于c# - 使用 Roslyn API 编译 .NET Core 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46366741/

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