How to install MSBuild on OS X and Linux?

前端 未结 1 389
一生所求
一生所求 2020-12-10 06:58

I\'m looking to install MSBuild on my Linux laptop so I can build a C# OSS project of mine. How exactly would I go about doing this? I\'ve come across a few guides such as t

相关标签:
1条回答
  • 2020-12-10 07:48

    Yes, there is such a package hosted by the CoreFX team as a MyGet feed. To install, run this at a terminal:

    #!/bin/sh
    
    packageid="Microsoft.Build.Mono.Debug"
    version="14.1.0.0-prerelease" # update as needed
    
    mono path/to/nuget.exe install $packageid -Version \
        $version -Source "https://www.myget.org/F/dotnet-buildtools/"
    
    # run MSBuild
    mono $packageid.$version/lib/MSBuild.exe Foo.sln
    

    Technically this should be used only for building the .NET Core repos, but I'll take it as an alternative to an unofficial publisher.

    Source.


    EDIT: Note that this will only work if your version of Mono is 4.0.1 or above.

    0 讨论(0)
提交回复
热议问题