I am very much new to the Continous Integration. Could anyone please let me know whether we could build a website using MSbuild?
Any information is appreciated.
|
3
|
I am very much new to the Continous Integration. Could anyone please let me know whether we could build a website using MSbuild? Any information is appreciated. |
|||
|
|
|
|
You can build a Web Site project using the AspNetCompiler MSBuild task. http://msdn.microsoft.com/en-us/library/ms164291.aspx Your MSBuild file might look something like this:
And then within your ccnet.config, you would add something like the following in the tasks block for your project:
|
||
|
|
unfortunately, if you have chosen "Website" as the project type you cant. However, if you chose "Web Application" project type, you can use MSBUILD to build it. Once you have created the "web application" project, you can right click on it and select "Add Web Deployment Project" which will add a wdproj file to your solution and you can customize the settings in there. You can provide this wdproj file to your ccnet config file for the project which can run this as per the schedule configured. i can probably give you teh appropriate nodes required to configure in cc.net config file by tomorrow once i am in the office |
||
|
|
|
|
Yes, you can - even with a "website". What you need to do is add the "Web Deployment Project" and set it up so it will grab all the files from the website, compile them, and using something like WiX, you can create an installer for the files to be able to easily deploy your web site and all its files needed to a customer's computer. Marc |
||
|