msbuild.exe编译 .sln .csproj 文件

执行netcore发布:
    dotnet publish '全路径\xxx..csproj' -c release --framework netcoreapp3.1 --runtime win-x86
执行framework编译:
    '全路径\MSBuild.exe' '全路径\xxx..sln' /p:Configuration=Release

你可能感兴趣的:(VS编译)