Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the impression, that in the .NET-world, there is no real need for a Maven-like tool.

I am aware that there is Byldan and NMaven (is it still alive?), but I have not yet seen a real-world project that uses them.

Also in most .NET projects I have worked on, there never was voiced an need for a Maven-like tool. The problems Maven maven is addressing (automatic dependency-resolution, conventions based build structure ...) seem not to be so important in .NET.

Is my perception correct?

Why is this the case?

What are people really using in .NET? No automatic dependency resolution at all?

Are they writing their own build tools?

Is anybody using Maven itself, to manage their .NET projects? Is this a good choice?

What are your experiences?

share|improve this question

6 Answers

up vote 2 down vote accepted

For artifact dependency resolving, Nuget is now an alternative. There are even ways of doing build time resolution/no need to check artifacts into vcs. See this blog.

share|improve this answer
It's so much artificial with nuget that it's much easier to do it manually. Seriously. – aloneguid Apr 19 '11 at 22:28
Interesting view. Could you elaborate on that? – 8DH Apr 20 '11 at 8:07

Maven is being pushed by apache projects, which are a core part of the huge java open source infrastructure. The widespread adoption of maven must be related to this, and the current level of maturity (quality) is also very good.

I don't think the .NET open source world has any significantly big open source actors to push such a concept through. Somehow .NET always seems to wait for redmond for these things.

share|improve this answer
5  
That's because in the MS world, if you build your own tool and it's good, chances are MS will come out with one like it in a year or two and people will stop using yours. (As Joel Spolsky put it, "if you manage to write something that takes off, you may find that you were merely doing market research for Microsoft.") – Nate C-K Aug 31 '11 at 14:38

We are using NAnt because there is no real alternative that is as mature. Working on multiple projects at the same time, we have worked around having multiple versions of libraries and how to deal with them. The Maven proposition is really promising, but not mature enough to be useful on the .NET platform.

I think the need is less obvious since most .NET projects use Visual Studio, which automatically suggests/enforces a directory structure, dependencies, etcetera. This is a misleading 'solution', since depending on an IDE for these kinds of conventions limit flexibility of the development team, and lock you in a specific solution and vendor. This is obviously not the case in the Java world, hence the clear need for a Maven like tool.

share|improve this answer
On the other hand, we migrated from NAnt to MSBuild, because manually managing NAnt script is a huuge pain. VS does it for you. I have a master MSBuild project file written by hand in xml editor which launches unit tests etc. and invokes another msbuild file (generated by VS) only for building the source. – aloneguid Apr 19 '11 at 22:32

Although the question is old here are my thoughts . Maven is not simply a build tool, It does a lot more than that like repository management, project management, dependency management, build management and so on...

But the main attraction in my opinion is dependency management. JAR hell is a big problem in the Java Land right from beginning and you need some tooling to cope with it. In the .Net world there is no problem like that (actually absence of DLL hell had been advertised as a major attraction in initial days of .Net) so most of the people are fine with MSBuild. Later on due to availability of lots of third party libraries, there were management problems. To get rid of this problem they now have Nuget.

So In brief, MsBuild + Nuget is good enough in .Net world for most of the project , Maven is just overkill for them.

share|improve this answer
I completely agree. The original question dates before NuGet was introduced. – jbandi Mar 25 at 17:52

We use UppercuT. UppercuT uses NAnt to build and it is the insanely easy to use Build Framework.

Automated Builds as easy as (1) solution name, (2) source control path, (3) company name for most projects!

http://projectuppercut.org/

Some good explanations here: UppercuT

More information


UppercuT is a conventional automated build, which means you set up a config file and then you get a bunch of features for free. Arguably the most powerful feature is the ability to specify environment settings in ONE place and have them applied everywhere, including documentation when it builds the source.

Documentation available: https://github.com/chucknorris/uppercut/wiki

Features :

share|improve this answer
What makes it so easy? Does it have any key selling points over the others mentioned to make using this more compelling? – Don Vince Jun 10 '11 at 12:37
Derick Bailey did a roundup - lostechies.com/derickbailey/2010/05/10/… – ferventcoder Jun 13 '11 at 18:44
What makes it easy is that it is a conventional build. You set the configuration and then just run build.bat. When new features are added to uppercut, you can upgrade within seconds. – ferventcoder Jun 13 '11 at 18:47

I don't like XML based build tools.

We adapted ruby rake to build our .net products. Albacore is a really nice suite of rake tasks to build .net projects.

Rake makes it really easy to create even complex build scripts and you are dealing with code instead of tons of angle brackets.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.