在project.json中的.NET Core中选择.dll和.exe

时间:2016-06-16 08:35:58

标签: c# .net .net-core

如何在.NET Core新项目格式的项目中选择.dll和.exe作为输出类型?

1 个答案:

答案 0 :(得分:2)

project.json文件中的选项为emitEntryPoint

"buildOptions": {
    "emitEntryPoint": true
}

这在控制台应用程序.exe(true)和库.dll(false)之间切换。

启用此选项后,应用程序必须具有public static void Main()

请参阅:Answer about emitEntryPoint meaning