Michael
Michael

Reputation: 20069

MonoDevelop seems to hang (not unresponsive) when building csprojs

Building a solution from Visual Studio in mono develop seems to have some issues. I'm hoping someone else has experienced this and has some suggestions.

The actual dcms process goes pretty quickly, but in between projects it hangs after printing:

Building: XXX.YYY.ZZZ (Debug)

After a few minutes (been 10 so far on this current run), it jumps to:

    Performing main compilation...
    /Library/Frameworks/Mono.framework/Versions/2.10.1/bin/dmcs /noconfig "/...
    Build complete -- 0 errors, 0 warnings

Building: XXX.YYY.ZZZ (Debug)

Then hangs again for another few minutes.

This is a sln file with 29 csproj projects in it that was originally created in Visual Studio 2010. I'm wondering if there is a better way to set this up - potentially a native MD file format?

Upvotes: 1

Views: 699

Answers (1)

Lex Li
Lex Li

Reputation: 63264

MD has its own system to build csproj.

Can you directly use xbuild to build it and test how long that takes?

Forget about native MD file format. It is time to switch to MSBuild script.

Upvotes: 2

Related Questions