1

現在、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-Error 550 が意味することはわかっています:要求されたアクションが実行されませんでした。ファイルを利用できません (ファイルが見つからない、アクセスできないなど)。ソース

これは、なぜ彼が「[xyz] を追加できません」なのか、何のヒントにもなりません。詳細についてはどうすれば入手できますか? (たとえば、VS はどこにデプロイしようとしましたか?)

4

1 に答える 1

0

これが起こったとき、Visual Studio を管理者として起動するのを忘れていたことに気付きました。私がそうするとすぐに、出版の問題はなくなりました.

于 2015-11-20T14:08:31.337 に答える