views:

2335

answers:

5

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 ...

georg

+2  A: 

Apache NMaven is a suite of plugins and integration allowing .NET code to be a player in Maven build scripts.

Matthew McCullough
+8  A: 

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#.

tobrien
As of today NPanday seems to be the winner. This is why I started using it and also joined the team recently.
Lars Corneliussen
+5  A: 

NMaven has been the first/official effort to provide Apache Maven for .NET; the project failed to clear the high bar of requirements for an official Apache project and was retired from the Apache Incubator in November 2008. There have been several efforts to fork and survive the project, but only one of them (NPanday) managed to do so and has been able to rejoin the Apache Incubator in August 2010:

Sean McMillan
NuPack (http://nupack.codeplex.com/) seems to be another related tool.
Sean McMillan
BTW, thanks for updating this with the current status of those projects!
Sean McMillan
A: 

I'm eager to start developing .NET build system from scratch.

aloneguid
+1  A: 

It seems that while all appear to be lacking NPanday is the most mature and actively developed Maven dependency management for .NET and if I had to bet on one it would be that one. The way I see it ideally any .NET solution would be mostly compatible with Maven like Byldan so it could use the same maven repositories such as Maven central.

My problem with Byldan which initially looked more promising than NPanday is that it hasn't been actively developed since 2008, NPanday has a release as of Sep 8th, version 1.2.1 to Byldan's version 0.6 from 2008.

Chris T.
One of the reasons I like Maven for Java is the code organization. I don't think this works well in .net world.
Bryce Fischer