如何设计 HTML 帮助程序扩展的 NuGet 包
我想创建一个 NuGet 包来包含我编写的 MVC3 Html 帮助器扩展。它会(或可能)包含类、css、javascript 和图像文件。打包这个的最好方法是什么?
- 我可以制作单个编译的 dll 版本吗?
- 如果我提供源代码版本,什么文件夹结构最好?
谢谢, 史蒂夫
I want to create a NuGet package to contain MVC3 Html helper extensions that I have written. It would (or could) contain class, css, javascript and image files. What would be the best way to package this?
- Can I make version that is a single compiled dll?
- If I make a source code version available, what folder structure would be best?
Thanks,
Steve
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看通过命令行创建包的 Nuget 文档 或 GUI。它将从您的程序集中生成 Nuspec 文件。
至于文件夹结构,请使用已有的 MVC 结构。
~/Content
用于图像和 CSS,~/Scripts
用于 JavaScript。Check out the Nuget documentation for creating package via command line or GUI. It will generate the Nuspec file from your assembly.
As for folder structure, use the MVC structure already in place.
~/Content
for images and css,~/Scripts
for javascript.