Sabby62
Sabby62

Reputation: 1717

Compiling VS Publishing a website in Visual Studio

Is there any difference using aspnet_compiler with Web application folder and using Publish from Visual Studio and using 'File System' publish method as publishing method ?

Upvotes: 0

Views: 240

Answers (1)

Adam Zuckerman
Adam Zuckerman

Reputation: 1641

Compiling creates a new DLL of your website in your bin directory.

Publishing will compile your website, run all of the build job items, create an output directory (if required), copy all of the required files to the output directory, minimize your javascript code (when configured to do so), create a database, and much more.

Upvotes: 1

Related Questions