无法使用Azure CmdLets创建Azure服务项目包

时间:2013-11-19 19:42:07

标签: powershell azure azure-powershell

我在VS 2013 RTM中有一个云服务项目。

我使用 Save-AzureServiceProjectPackage -Local 命令生成CSPKG包。我收到了以下错误。不知道为什么。任何人都可以提供帮助。

enter image description here

这是我的Cloud CSCFG文件 -

<?xml version="1.0" encoding="utf-8"?>
<ServiceConfiguration serviceName="WindowsAzure1" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration" osFamily="4" osVersion="*" schemaVersion="2013-10.2.2">
  <Role name="WebRole1">
    <Instances count="1" />
    <ConfigurationSettings>
      <Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="UseDevelopmentStorage=true" />
    </ConfigurationSettings>
  </Role>
</ServiceConfiguration>

这是我的服务定义CSDEF文件 -

<?xml version="1.0" encoding="utf-8"?>
<ServiceDefinition name="WindowsAzure1" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition" schemaVersion="2013-10.2.2">
  <WebRole name="WebRole1" vmsize="Small">
    <Sites>
      <Site name="Web">
        <Bindings>
          <Binding name="Endpoint1" endpointName="Endpoint1" />
        </Bindings>
      </Site>
    </Sites>
    <Endpoints>
      <InputEndpoint name="Endpoint1" protocol="http" port="80" />
    </Endpoints>
    <Imports>
      <Import moduleName="Diagnostics" />
    </Imports>
  </WebRole>
</ServiceDefinition>

感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

最新版本的Windows Azure PowerShell不支持打包VS项目。将于2013年12月初推出的新版本将获得此支持。