Updated MimeKit and MimeKitLite (markdown)

Stef Heyenrath
2023-09-06 09:00:50 +02:00
parent 8148feb7c2
commit b52ac527fd

@@ -11,14 +11,14 @@ The only solution for this is to apply the following changes to your project:
``` xml
<PackageReference Include="MailKit" Version="4.1.0" />
<PackageReference Include="MimeKit" Version="4.1.0"> ⭐
<!-- ⭐ Add an Alias for the MimeKit NuGet -->
<PackageReference Include="MimeKit" Version="4.1.0">
<Aliases>MimeKitAlias</Aliases>
</PackageReference>
<PackageReference Include="WireMock.Net" Version="1.5.35" />
```
⭐ add an Alias for the MimeKit NuGet
In your C# code change this:
``` csharp