asp.net mvc 4 - Web Deploy Package Isn't Zipped -
using vs 2013's publish profile can not package output zip part of publish. if give target of xx.zip folder named , files unzipped under folder.
using publish wizard now, hoping create msbuild command line.
<project toolsversion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <propertygroup> <webpublishmethod>filesystem</webpublishmethod> <lastusedbuildconfiguration>release</lastusedbuildconfiguration> <lastusedplatform>any cpu</lastusedplatform> <siteurltolaunchafterpublish /> <excludeapp_data>false</excludeapp_data> <publishurl>c:\dev\cloud_deploy_package\deployme.zip</publishurl> <deleteexistingfiles>true</deleteexistingfiles> </propertygroup> </project>
i found answer (unfortunately, closed browser can't link). have create web deploy package , not filesystem package. right-click project, publish..., select "web deploy package"...
the result folder few text files , big ole zip of project!
Comments
Post a Comment