JSON Outline工具未出现在VS 2015或2017中

问题描述 投票:1回答:3

当我打开JSON ARM文件时,大纲不会出现在Cloud Explorer窗口中。我也没有获得模板的智能感知(我安装了Azure SDK)。这是文件

    {
  "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "parameters": {

  },
  "variables": {

  },
  "resources": [

  ],
  "outputs": {

  }
}
.net json visual-studio azure
3个回答
0
投票

我通过删除Azure SDK 3.0并返回到2.9(2016年11月)来修复它。


0
投票

我必须手动显示它,即便如此,如果我单独打开一个json文件,它没有显示布局。但是,当我将JSON文件作为VS项目打开时,它工作正常


0
投票

在VS2017中,转到Visual Studio Installer并确保安装了Azure Development工作负载

enter image description here

然后去VS2017并打开View> Other Windows> JSON Outline

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.