.net - Not getting Published 'files and folders' of dot net web application using Visual studio command line -


i trying publish web application using visual studio command prompt , should publish in specified local path. tried using command

msbuild "d:\msbuild\portal\com.rrduk.athena.portal.sln" /p:deployonbuild=true /p:publishprofile="d:\msbuild\portal\com.rrduk.athena.portal\properties\publishprofiles\portal.pubxml 

related image

.pubxml contains below xml

[<?xml version="1.0" encoding="utf-8"?> <!-- file used publish/package process of web project. can customize behavior of process editing msbuild file. in order learn more please visit http://go.microsoft.com/fwlink/?linkid=208121.  --> <project toolsversion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">   <propertygroup>     <webpublishmethod>filesystem</webpublishmethod>     <lastusedbuildconfiguration>release</lastusedbuildconfiguration>     <lastusedplatform>any cpu</lastusedplatform>     <siteurltolaunchafterpublish />     <launchsiteafterpublish>false</launchsiteafterpublish>     <excludeapp_data>false</excludeapp_data>     <publishurl>c:\sit_publish\12jun\portal</publishurl>     <deleteexistingfiles>true</deleteexistingfiles>   </propertygroup> </project> 

after running command, getting following output

related image

there no error in prompt not getting published 'files , folder' @ specified location. need please!!


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -