Visual studio 2012 如何获取发布失败原因的更多信息?

Visual studio 2012 如何获取发布失败原因的更多信息?,visual-studio-2012,publish,web-deployment,Visual Studio 2012,Publish,Web Deployment,我目前正在尝试使用Visual Studio 2012部署ASP.NET应用程序。我创建了一个发布配置文件,验证了连接是否得到了这个绿色复选标记,并单击了发布。我可以使用相同的信息和FileZilla创建文件/文件夹 但我得到了这个错误: 2>------ Publish started: Project: MyProject, Configuration: Debug Any CPU ------ 2>Connecting to my.url.de... 2>Transfor

我目前正在尝试使用Visual Studio 2012部署ASP.NET应用程序。我创建了一个发布配置文件,验证了连接是否得到了这个绿色复选标记,并单击了发布。我可以使用相同的信息和FileZilla创建文件/文件夹

但我得到了这个错误:

2>------ Publish started: Project: MyProject, Configuration: Debug Any CPU ------
2>Connecting to my.url.de...
2>Transformed Web.config using C:\Users\moose\MyProject\MyProject\Web.Debug.config into obj\Debug\TransformWebConfig\transformed\Web.config.
2>Copying all files to temporary location below for package/publish:
2>obj\Debug\Package\PackageTmp.
2>Publishing folder /...
2>Unable to add 'Global.asax' to the Web site.   (550).
2>Unable to add 'NamespaceComments.xml' to the Web site.   (550).
2>Unable to add 'packages.config' to the Web site.   (550).
2>Unable to add 'Web.config' to the Web site.   (550).
2>Unable to add folder 'bin' to the Web site.  Cannot create folder "bin".
2>Unable to add folder 'CodeTemplates' to the Web site.  Cannot create folder "CodeTemplates".
2>Unable to add folder 'Content' to the Web site.  Cannot create folder "Content".
2>Unable to add folder 'Models' to the Web site.  Cannot create folder "Models".
2>Unable to add folder 'Views' to the Web site.  Cannot create folder "Views".
2>
========== Build: 1 succeeded, 0 failed, 2 up-to-date, 0 skipped ==========
========== Publish: 0 succeeded, 1 failed, 0 skipped ==========
我知道FTP错误550意味着:未采取请求的操作。文件不可用,例如,找不到文件,无法访问

这并没有告诉我为什么他不能添加[xyz]。我怎样才能得到更多的信息呢?
例如,VS尝试在哪里部署它?

当这件事发生在我身上时,我意识到我忘了作为管理员启动Visual Studio。一旦我这样做,发布问题就消失了。

我得到了在服务器上更改为文件夹所需的错误,因为我没有文件夹/的写入权限,但有一些子文件夹。但问题是,我没有得到太多的信息。