Visual Studio 2017 和 WinJS - "Windows" 命名空间的自动完成
Visual Studio 2017 and WinJS - Autocomplete for "Windows" namespace
我正在 VS 2017 中使用 html/javascript 编写 UWP windows 10 应用程序。当我以前在 VS 2015 中编写 Windows8 应用程序时,"Windows" 命名空间会为我自动完成,intellisense 等等,但现在不是了。
例如,如果我有 var vault = new Windows.Security.Credentials.PasswordVault();
,我不会使用 vault.
获得任何自动完成选项,但我会在 VS2015 上获得。
怎么了?我怎样才能将任何必要的文件添加到我的项目中以使智能感知为此工作?
我发现这是因为 Resharper 对我隐藏了一些智能感知。当我关闭它时,我得到了 Windows api。
我正在 VS 2017 中使用 html/javascript 编写 UWP windows 10 应用程序。当我以前在 VS 2015 中编写 Windows8 应用程序时,"Windows" 命名空间会为我自动完成,intellisense 等等,但现在不是了。
例如,如果我有 var vault = new Windows.Security.Credentials.PasswordVault();
,我不会使用 vault.
获得任何自动完成选项,但我会在 VS2015 上获得。
怎么了?我怎样才能将任何必要的文件添加到我的项目中以使智能感知为此工作?
我发现这是因为 Resharper 对我隐藏了一些智能感知。当我关闭它时,我得到了 Windows api。