In legacy ASP.Net and .Net in general, sending mail was accomplished via System.Net.Mail
classes which resided in System.dll
. Now with KRE, vNext doesn't seem to have System.Net.Mail
as a separate package.
Referencing the "net453"
framework in project.json
"frameworks": {
"aspnet50": { },
"aspnetcore50": { },
"net453": {} // <<< throws compilation errors
},
causes all hell to break loose with errors like:
.NET Framework 4.5.3 error CS0234: The type or namespace name 'AspNet' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
It virtually complains about all vNext dependencies that are part of kpm packages.
So, has anyone figured out a way to send mails using ASP.Net vNext yet?
Note
Even though System
appears under References and even though Intellisense shows System.Net.Mail
is available for use, the code doesn't compile. E.g., a simple statement like this, although appears valid,
using System.Net.Mail;
var m = new MailMessage();
will throw compilation error such as:
ASP.NET Core 5.0 error CS0234: The type or namespace name 'Net' does not exist in the namespace 'System' (are you missing an assembly reference?)
ASP.NET Core 5.0 error CS0246: The type or namespace name 'MailMessage' could not be found (are you missing a using directive or an assembly reference?)
Update
With latest Visual Studio 2015 CTP 5, they seemed to have fixed the intellisense glitch. Now System.Net
doesn't have Mail
namespace anymore. On a side note, the vNext project I created with VS 2015 preview is no longer working - I get an 403.3 error on the home page! Ah, the joy of working with beta software!