Build .exe file in .NET Core RC2

前端 未结 5 1022
被撕碎了的回忆
被撕碎了的回忆 2020-12-02 04:58

Every time I build a project using the new .NET Core RC2 templates I am not provided with a runnable .EXE file. If I hit F5 for debugging m

5条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-02 05:47

    In ASP.NET Core try changing your app type to default, in project.json:

    "Microsoft.NETCore.App": {
      "type": "default",
      "version": "1.0.0-*"
    }
    

提交回复
热议问题