How to build .csproj with C# 7 code from command line (msbuild)

后端 未结 2 1245
你的背包
你的背包 2020-12-29 23:44

I use some C# 7 features in my project:

static void Main(string[] args)
{
}

public byte ContainerVersion
{
    get => 1;
    private set => throw new          


        
2条回答
  •  攒了一身酷
    2020-12-30 00:14

    Having installed Visual Studio 2017 Community Edition, the path to msbuild.exe on my machine is:

    C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\MSBuild.exe

提交回复
热议问题