diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-08-04 11:15:29 -0700 |
---|---|---|
committer | Elmer Thomas <elmer@thinkingserious.com> | 2016-08-04 11:15:29 -0700 |
commit | 7bdda78016d03d84c3a73fb58888ebc89d6dee40 (patch) | |
tree | 4564d906faf2bc100ddc71e31492818a744e1d2f | |
parent | 284a883e1e954deb8fba3b7c47f9a52bfa005226 (diff) | |
download | sendgrid-csharp-7bdda78016d03d84c3a73fb58888ebc89d6dee40.zip sendgrid-csharp-7bdda78016d03d84c3a73fb58888ebc89d6dee40.tar.gz sendgrid-csharp-7bdda78016d03d84c3a73fb58888ebc89d6dee40.tar.bz2 |
Describe what missing classes means
-rw-r--r-- | TROUBLESHOOTING.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/TROUBLESHOOTING.md b/TROUBLESHOOTING.md index aafc40f..e4414be 100644 --- a/TROUBLESHOOTING.md +++ b/TROUBLESHOOTING.md @@ -8,6 +8,7 @@ If you can't find a solution below, please open an [issue](https://github.com/se * [Migrating from v2 to v3](#migrating) * [Continue Using v2](#v2) * [Testing v3 /mail/send Calls Directly](#testing) +* [Missing Classes](#missing) * [Error Messages](#error) * [Versions](#versions) * [Environment Variables and Your SendGrid API Key](#environment) @@ -33,6 +34,20 @@ Download: Click the "Clone or download" green button in [GitHub](https://github.com/sendgrid/sendgrid-csharp/tree/b27983a8f3d84a9d28972f2720cca0315ad9fe32) and choose download. +<a name="missing"></a> +## Missing Classes + +If you receive one of the following errors, or something similar: + +* ‘Helpers’ does not exist in the namespace ‘SengrGrid’ +* The type or namespace name ‘Mail’ could not be found + +it means that you are probably not compiling your application to .NET 4.5.2. Currently, this is the only supported version of .NET by SendGrid. + +The current solution is to download the code directly into your project and change the compile target to the desired version. + +If you are using ASP.NET Core, please [upvote this issue](https://github.com/sendgrid/sendgrid-csharp/issues/221). + <a name="testing"></a> ## Testing v3 /mail/send Calls Directly |