Manoj Deshpande
Manoj Deshpande

Reputation: 311

How to install msbuild on CentOs

I want to install msbuild on CentOS to run project.sln files. What are the commands for installing the same. I tried to install using "didstopia/msbuild" docker image but could not succeed.

Upvotes: 1

Views: 2399

Answers (1)

baruchiro
baruchiro

Reputation: 5821

Install the dotnet sdk for centOS. You will be able to run msbuild files with the command dotnet msbuild or even just dotnet.

Upvotes: 2

Related Questions