Is there a Maven alternative or port for the .NET world?

Viewed 22179

Is there a Maven alternative or port for the .NET world?

I would love to use a good dependency management system that the Java world has, but I don't find anything comparable for .NET projects...

10 Answers

Byldan is a port of Maven, but it isn't a 100% analog to the tool. Shane Isbell has been working on this project for a while, you can read more about it here.

Even though the answer that references NMaven has some sort of green checkbox next to it, it is incorrect: there is nothing called Apache NMaven as the project never made it out of the ASF incubator. The trunk continues to live on as NMaven at Codeplex. NMaven is written in Java and Byldan is written in C#. Most people looking for something like Maven for the .NET platform are not going to want to deal with a tool writen in Java. Byldan, IMO, is the most appropriate tool as it is written in C#.

Related