我知道如何在网络应用程序库中提交我的应用程序。
我按照this link在Azure图库中发布我的应用。
该链接重定向我以从this提交我的应用。
我创建了Manifest和Parameters文件,但我无法理解它们是如何区分Web App Gallery还是Azure Gallery的?
Parameters.xml中是否有任何参数表明它适用于Azure Gallery。
的Manifest.xml
<MSDeploy.iisApp>
<iisapp path="xxxx" />
<setAcl path="xxxx" setAclAccess="Modify" />
</MSDeploy.iisApp>
和Parameters.xml
<parameters>
<parameter name="AppPath" defaultValue="Default Web Site/XXXX" tags="iisapp">
<parameterEntry type="ProviderPath" scope="iisapp" match="XXXX" />
</parameter>
<!-- This is the hidden connection string with the newly created db account that is used in the web.config -->
<parameter name="Connection String for Config " description="Connection string to enter into config"
defaultValue="" tags="SQL,SQLConnectionString,Hidden ">
<parameterEntry type="XmlFile" scope="\\connectionstring.config" match="//connectionStrings/add[@name='xxxxxxxx']/@connectionString" />
</parameter>
<parameter name="SetAclParameter1" defaultValue="{AppPath}" tags="Hidden">
<parameterEntry type="ProviderPath" scope="setAcl" match="SageFrame" />
</parameter>
</parameters>
感谢您的帮助。