build via coding
-
Can any one have idea, how to build one asp.net application via anotherone asp.net application?. Example: BuildApp.aspx contains one TexBox and Button, if enter a filename to be build in the Textbox and click the Button, it should build the application as we doing thru vs.net IDE build menu. Thanks in Advance:confused:
-
Can any one have idea, how to build one asp.net application via anotherone asp.net application?. Example: BuildApp.aspx contains one TexBox and Button, if enter a filename to be build in the Textbox and click the Button, it should build the application as we doing thru vs.net IDE build menu. Thanks in Advance:confused:
you could probable use ShellExecute or similar to spawn MSBuild with the correct command line
"Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox
-
you could probable use ShellExecute or similar to spawn MSBuild with the correct command line
"Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox
Thanks for your tips. It would be very helpful to me if u show me some code or link which explains this ShellExecutable technique.;)
-
Thanks for your tips. It would be very helpful to me if u show me some code or link which explains this ShellExecutable technique.;)
ShellExecute is a WIN32 API function - not sure how you'd go about accessing it from .NET tbh - haven't used it for a while! Think there's something in System.Diagnostics for running a process - MSDN will help
"Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox
-
ShellExecute is a WIN32 API function - not sure how you'd go about accessing it from .NET tbh - haven't used it for a while! Think there's something in System.Diagnostics for running a process - MSDN will help
"Now I guess I'll sit back and watch people misinterpret what I just said......" Christian Graus At The Soapbox
Thanks lot Richard
-
Can any one have idea, how to build one asp.net application via anotherone asp.net application?. Example: BuildApp.aspx contains one TexBox and Button, if enter a filename to be build in the Textbox and click the Button, it should build the application as we doing thru vs.net IDE build menu. Thanks in Advance:confused:
Use the codeDom namespace to create code on the fly and compile it
-------------------------------------------------------- 1 line of code equals many bugs. So don't write any!! My mad coder blog