Updated ClickToBuild.cmd to support VS2019 (v16) and VS2022 (v17) (#8764)

Removed support for eariler MSBuild versions (they cannot compile SmtpMessageChannel.cs)

Updated lib/nuget/nuget.exe to latest version (6.9.1.3) (required for package restoration)

Modified Obsolete attribute in SmtpSettingsPart.cs so the solution builds with VS2019
This commit is contained in:
dmhiggins23
2024-03-15 05:18:40 -04:00
committed by GitHub
parent 2d7ce45d1e
commit 1900b35cd5
3 changed files with 5 additions and 18 deletions

View File

@@ -31,7 +31,7 @@ namespace Orchard.Email.Models {
set { this.Store(x => x.Port, value); }
}
[Obsolete($"Use {nameof(AutoSelectEncryption)} and/or {nameof(EncryptionMethod)} instead.")]
[Obsolete("Use " + nameof(AutoSelectEncryption) + " and/or "+ nameof(EncryptionMethod) + " instead.")]
public bool EnableSsl => this.Retrieve(x => x.EnableSsl);
public SmtpEncryptionMethod EncryptionMethod {