gouse
gouse

Reputation: 51

Compiling the whole asp.net website on Mono at once

i am compiling the asp.net web application page by page using "gmcs" command in Mono. But i want to compile the whole asp.net website at once using Mono command.

For ex: gmcs /t:library /out:bin/AJAX.dll -r:System.dll -r:System.Web.dll -r:bin/AjaxControlToolkit.dll Default.aspx.cs Default.aspx.designer.cs

I do not want to do like the above one, instead i want to compile the whole folder containing files at once.

Plz let me know.thanks in advance

Upvotes: 2

Views: 2120

Answers (1)

usr-local-ΕΨΗΕΛΩΝ
usr-local-ΕΨΗΕΛΩΝ

Reputation: 26874

I used to run xbuild on projects created using Visual Studio as IDE. Worked perfectly! I'm not sure if MonoDevelop generates a .csproj file for your web application but that's the best way to compile ASP.NET, which, however, was supposed to be compiled automatically by xsp on the first request

Upvotes: 2

Related Questions