Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to get msbuild for Linux [duplicate]

I want to build a .net core project on Windows and Linux.

For Windows I use MSBuild, simply downloaded the Build Tools für Visual Studio 2017 from visualstudio.com.

But where do I get MSBuild for Linux from? Based on the GitHub Project site, it should be available on some Linux distributions (README.md). I do not want to compile it myself (for some reasons).

I do not want to use xbuild, but pure MSBuild.

like image 840
user69453 Avatar asked Dec 27 '17 12:12

user69453


1 Answers

You can obtain .NET Core SDK as described in these URLs.
It is divided for each linux distribution.

RHEL
Ubuntu
Debian
CentOS/Oracle
SLES/OpenSUSE


Updated:2019-03-19

.NET Downloads for Linux, macOS, and Windows
Select the tab for the desired OS and then download.

related.
Microsoft/msbuild
msbuild/documentation/wiki/Building-Testing-and-Debugging-on-.Net-Core-MSBuild.md

Getting .Net Core MSBuild binaries without building the code
The best way to get .NET Core MSBuild is by installing the .NET Core SDK, which redistributes us. This will get you the latest released version of MSBuild for .NET Core. After installing it, you can use MSBuild through dotnet build or by manual invocation of the MSBuild.dll in the dotnet distribution.

like image 105
kunif Avatar answered Nov 07 '22 10:11

kunif