0

我正在为 msdeploy(又名 Web 部署)而苦苦挣扎。我试图创建一个简单的清单(来自MSDN的示例):

<sitemanifest>
   <appHostConfig path="mySite" />
</sitemanifest>

不幸的是,任何以这个清单为源的命令都会因以下消息而死:

msdeploy -verb:dump -source:manifest=c:\CustomManifest.xml
Error: Object of type 'manifest' and path 'C:\CustomManifest.xml' cannot be created.
Error: One or more entries in the manifest 'sitemanifest' are not valid.
Error Code: ERROR_SITE_DOES_NOT_EXIST
More Information: Site 'mySite' does not exist.  Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_SITE_DOES_NOT_EXIST.
Error count: 1.

任何想法 ?

4

1 回答 1

1

好的,终于明白了我的问题:清单仅用于导出您需要的内容。它不是从头开始生成的。要生成网站,必须使用包提供程序。

于 2013-07-19T09:37:14.650 回答