给控制台程序的main方法加上asnc关键字
public static async Task Main(string[] args) { }
编译时出现下面的错误提示
Feature 'async main' is not available in C# 7. Please use language version 7.1 or greater.
在.csproj中添加下面的配置即可
<PropertyGroup> <LangVersion>latest</LangVersion> </PropertyGroup>
Severity Code Description Project File Line Suppression State
Error CS5001 Program does not contain a static 'Main' method suitable for an entry point ConsoleApp1
我为什么是这个呢。。。
你的电脑上安装了 .net core 2.0 preview 2 吗?
$ dotnet --info .NET Command Line Tools (2.0.0-preview2-006497)
@dudu: 要preview2么。我是preview1-005977