通过 Nuget 添加新版本的 Jquery 以及 t4mvc 的问题
我已经通过 Nuget 添加了最新版本的 Jquery(1.5.2),但 t4mvc 拒绝看到它。
它不会出现在智能感知中,当我手动输入它时,我得到:
CS0117: 'Links.Scripts' does not contain a definition for 'jquery_1_5_2_min_js'
这是我用来引用它的代码。
<script src="@Url.Content(Links.Scripts.jquery_1_5_2_min_js)" type="text/javascript"></script>
作为一个附带问题,如何通过 NuGet 安装旧版本的 jquery?是否可以?
I've added the latest release of Jquery(1.5.2) via Nuget, but t4mvc refuses to see it.
It doesn't appear in intellisense, and when i type it in manually i get:
CS0117: 'Links.Scripts' does not contain a definition for 'jquery_1_5_2_min_js'
This is the code i'm using to reference it.
<script src="@Url.Content(Links.Scripts.jquery_1_5_2_min_js)" type="text/javascript"></script>
As a side issue, how does one go about install older versions of jquery via NuGet? is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加新文件后,您只需重新运行 T4MVC 即可生成更新的文件。您可以通过右键单击它并选择“运行自定义工具”来完成此操作。
还有一个名为 Chirpy 的 VS AddIn 可以自动运行 T4MVC。
After adding new files, you just need to rerun T4MVC to generate updated files. You can do this by Right Clicking it and choosing 'Run Custom Tool'.
There is also a VS AddIn called Chirpy that can run T4MVC automatically.
忽略这个问题我刚刚解决了。
为了让 t4MVC 识别新版本的 Jquery,您似乎还必须安装 jQuery.vsdoc 包。
Ignore this question i've just solved it.
To get t4MVC to recognise new versions of Jquery it appears you also have to install the jQuery.vsdoc package too.