Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我为 MVC4 项目安装了 MvcMailer 包,但它没有显示在参考区域中。我无法为 IUserMailer.cs 做参考 应该有 Mvc.Mailer 的参考吗?
我正在使用 VS 2012 和 .NET 4.5
所需的 MvcMailer 包和版本取决于您使用的 MVC 和 .NET 版本:
ASP.NET MVC3
Install-Package MvcMailer3
带有 .NET 4 的 ASP.NET MVC4
Install-Package MvcMailer -Version 4.0
带有 .NET 4.5 的 ASP.NET MVC4
Install-Package MvcMailer
当 MVC5 和 .NET 5 出现时,这可能会再次改变。
MVCMailer