命令:Install-Package curve25519-uwp安装此软件包的1.0.3版本(https://www.nuget.org/packages/curve25519-uwp/)
在GitHub上有一个版本1.0.4修复了我面临的特定错误.
任何人都可以解释如何安装该软件包?
我正在使用安装了git工具的visual studio 2015社区版.
我有一个现有的机器人。我已经添加了官方文档中所述的自定义操作。当机器人启动时,只有错误消息:
mybot.dialog error: Type Mycustomaction not registered in factory.
Run Code Online (Sandbox Code Playgroud)
会显示在聊天窗口中。
最初,该机器人是使用 Composer 1.x 创建的,迁移到 Composer 2.x 后,现有的自定义操作不起作用,并且添加新的自定义操作失败。
如果我执行命令 grunt docular-server
我收到错误消息:
ERROR: Could not start node server [TypeError: Object #<Object> has no method 'server']
那么docular-server没有运行.
我安装了grunt来编写我的代码文档,如下所示:
`npm install -g grunt-cli`
`npm install grunt grunt-docular`
Run Code Online (Sandbox Code Playgroud)
我Gruntfile.js
看起来像这样:
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
docular: {
groups: [],
showDocularDocs: true,
showAngularDocs: true
}
});
// Load the plugin that provides the "docular" tasks.
grunt.loadNpmTasks('grunt-docular');
// Default task(s).
grunt.registerTask('default', ['docular']);
};
Run Code Online (Sandbox Code Playgroud)
这个例子来自官方网站:
http://grunt-docular.com/documentation/docular/docularinstall/installdocular