Can IIS7 re-compile an ASP.Net MVC project? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T12:34:58Z http://stackoverflow.com/feeds/question/1035593 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1035593/can-iis7-re-compile-an-asp-net-mvc-project 1 Can IIS7 re-compile an ASP.Net MVC project? J. Pablo Fernández 2009-06-23T22:27:20Z 2009-10-16T21:00:02Z <p>I'm publishing an ASP.Net MVC as an IIS7 site on my local workstation. Is it possible to get IIS7 to re-compile the project when needed?</p> http://stackoverflow.com/questions/1035593/can-iis7-re-compile-an-asp-net-mvc-project/1035608#1035608 0 Answer by Dennis Palmer for Can IIS7 re-compile an ASP.Net MVC project? Dennis Palmer 2009-06-23T22:30:47Z 2009-06-24T16:35:44Z <p>Files published to IIS shouldn't be source code that needs to be re-compiled.</p> <p>You could search for "automated build process", "continuous integration" or MSBuild if you want to set up a system that re-compiles and then publishes your site for you whenever you change the source code.</p> http://stackoverflow.com/questions/1035593/can-iis7-re-compile-an-asp-net-mvc-project/1035885#1035885 0 Answer by webdtc for Can IIS7 re-compile an ASP.Net MVC project? webdtc 2009-06-24T00:01:57Z 2009-06-24T00:01:57Z <p>There's a bunch of options, I think from easiest to more complicated:</p> <ol> <li>As mentioned: Just use Visual Studio to develop and test by hitting F5 and using VS.net built-in web server for asp.net</li> <li>Point your IIS web site to where your site code is. When you compile your project the IIS web site should also be compiled since it's pointing to the same code as you development files. This is similar to what you are doing but there is no need to actually publish the site.</li> <li>Use something like CruiseControl.net and nant to automatically compile and deploy your project to IIS at intervals or as needed.</li> </ol>