Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

is it possible to make nant run a publish on web application project

is it possible to make nant run a publish on mvc project or a good old web application project
and after the publish make nant FTP the files to the web server

UPDATE: found the solution to the ftp problem
Nant ftp task thanks Paco

what i mean by publich
is there a command line application or nant task that can public like visual studio publish...

like image 222
Nesizer Avatar asked Jan 10 '09 12:01

Nesizer


1 Answers

There is a Ftp Task for nant. Beside that, you have to create a script that copies the files and directories you need and the config files. I don't do it automatically, because I want to have control over database update scripts and changes in web.config.

like image 160
Paco Avatar answered Oct 29 '22 00:10

Paco