4

ソリューションのパッケージを一覧表示する

PM> Get-Package

Id                             Version              Description/Release Notes                                                                                                                                                       
--                             -------              -------------------------                                                                                                                                                       
...
T4MVC                          3.2.0                T4MVC is a T4 template that generates strongly typed helpers for ASP.NET MVC.                                                                                                   
T4MVCExtensions                3.2.0                Runtime helpers used by code generated by T4MVC                
...

利用可能な T4MVC のバージョンを確認します。

PM> Get-Package -ListAvailable -Filter T4MVC

Id                             Version              Description/Release Notes                                                                                                                                                       
--                             -------              -------------------------                                                                                                                                                       
...
T4MVC                          3.5.3                T4MVC is a T4 template that generates strongly typed helpers for ASP.NET MVC.                                                                                                   
T4MVCExtensions                3.5.3                Runtime helpers used by code generated by T4MVC                                                                                                                                 
...

更新しようとしています:

PM> Get-Package -Updates
No package updates are available from the current package source.   

私のインストールでは何が壊れていますか?

更新

  • Web Update 2 と NuGet 2.2.40116.9051 には VS Express 2012 を使用しています。
  • パッケージの更新は、NuGet GUI でも表示されません。
4

2 に答える 2

0

NuGet のバグのようです。他の誰かからのバグ レポートがあります: http://nuget.codeplex.com/workitem/3289

回避策は簡単です。更新は、ソリューションではなく、個々のプロジェクトに対して機能します。

于 2013-04-25T08:35:36.510 に答える
0

テスト溶液を試着したところ、実際にあなたと同じことがわかりました。しかし、ソリューションをクリーンアップして VS を再起動すると、正しく動作し始めました。

PM> Get-Package -Updates

Id                             Version              Description/Release Notes                                                                                                                                                                                             
--                             -------              -------------------------                                                                                                                                                                                             
EntityFramework                5.0.0                Entity Framework is Microsoft's recommended data access technology for new applications.                                                                                                                              
jQuery                         2.0.0                jQuery is a new kind of JavaScript Library....                                                                                                                                                                        
jQuery.UI.Combined             1.10.2               jQuery UI is an open source library of interface components — interactions, full-featured widgets, and animation effects — based on the stellar jQuery javascript library . Each component is built according to jQ...
jQuery.Validation              1.11.1               This jQuery plugin makes simple clientside form validation trivial, while offering lots of option for customization. That makes a good choice if you’re building something new from scratch, but also when you’re t...
Modernizr                      2.6.2                Modernizr adds classes to the <html> element which allow you to target specific browser functionality in your stylesheet. You don't actually need to write any Javascript to use it....                               
T4MVC                          3.5.4                T4MVC is a T4 template that generates strongly typed helpers for ASP.NET MVC.                                                                                                                                         
T4MVCExtensions                3.5.4                Runtime helpers used by code generated by T4MVC                                                                                                                                                                       

したがって、契約が何であるかはわかりません。おそらく NuGet のバグですが、少なくとも回避策が提供される可能性があります。

于 2013-04-22T23:27:09.247 に答える