Nuget - 为包管理器控制台编写工具(自定义cmdlet) [英] Nuget - Writing tools for Package Manager Console (custom cmdlets)

查看:184
本文介绍了Nuget - 为包管理器控制台编写工具(自定义cmdlet)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我安装了nuget包管理器,我真的很喜欢mvc-scaffold扩展。我想为我的项目写类似的工具。



有没有任何API参考或一些nuget的文档,我可以从中学习? TIA为任何建议。



编辑:
问题已经回答了(thx一次),这里有一些链接可以是有帮助的: p>


解决方案

我写了您提到的MvcScaffolding的最新版本在你的问题。下面是如何将PowerShell cmdlet添加到包管理器控制台:





请注意,实际上并不需要在C#中编写cmdlet并调用Import-Module。一个更简单的替代方法是在PowerShell中编写它们(请参阅 http://technet.microsoft.com/en-us /magazine/ff677563.aspx ),并在NuGet包的init.ps1文件中内联它们。



或者,如果你的问题是如何添加自定义脚手架到MvcScaffolding(例如,所以你可以说Scaffold MyCustomThing -somecustomparams),然后使用命令Scaffold CustomScaffolder MyCustomThing,然后编辑出现在您的CodeTemplates / Scaffolders文件夹中的PS1 / T4文件。我会尽快博客有关这方面的更多细节。


I've installed nuget package manager and I really love mvc-scaffold extension. I would like to write similar tool for my projects.

Is there any API reference or some documentation for nuget I can learn from ? TIA for any suggestions.

Edit: Question is already 'answered' (thx one more time), here are some links that can be helpful:

解决方案

I wrote the current version of MvcScaffolding that you mention in your question. Here's how it adds PowerShell cmdlets to the Package Manager Console:

Note that it's not actually necessary to write your cmdlets in C# and call Import-Module. A simpler alternative is to write them in PowerShell (see http://technet.microsoft.com/en-us/magazine/ff677563.aspx) and define them inline in your NuGet package's init.ps1 file.

Or, if your question is about how to add custom scaffolders to MvcScaffolding (e.g., so you can say "Scaffold MyCustomThing -somecustomparams"), then use the command "Scaffold CustomScaffolder MyCustomThing", and then edit the PS1/T4 files that appear in your CodeTemplates/Scaffolders folder. I'll blog more details about this soon.

这篇关于Nuget - 为包管理器控制台编写工具(自定义cmdlet)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆