jmarnold / EmbeddedMail

Integration testing against e-mail almost always sucks. EmbeddedMail doesn't remove all of that pain, but it certainly helps it suck less by providing an in-memory SMTP server that you can assert on.
http://nuget.org/packages/EmbeddedMail
Other
25 stars 4 forks source link

Properly dispose #12

Closed TysonMN closed 5 years ago

TysonMN commented 5 years ago

Fixes #4

In order to dispose objects in the reverse order in which they were created and continue to use StreamReader and StreamWriter, I increased the target .Net Framework from 4.0 to 4.5 (because the needed constructor overloads for StreamReader and StreamWriter were added in 4.5).