Compiling the whole asp.net website on Mono at once
i am compiling the asp.net web application page by page using "gmcs" co开发者_JAVA百科mmand 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
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
精彩评论