-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMichaelsoft.Mailer.csproj
23 lines (20 loc) · 1.09 KB
/
Michaelsoft.Mailer.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PackageVersion>0.0.3</PackageVersion>
<Title>Michaelsoft.Mailer</Title>
<Authors>Michael Disarò</Authors>
<Description>A really simple to integrate email sender.</Description>
<Copyright>Michael Disarò</Copyright>
<PackageProjectUrl>https://github.com/michaeldisaro/Michaelsoft.Mailer</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/michaeldisaro/Michaelsoft.Mailer/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/michaeldisaro/Michaelsoft.Mailer</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>mailer, simple, emailer, email sender, easy integration</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="2.8.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.5" />
<PackageReference Include="MimeKit" Version="2.9.1" />
</ItemGroup>
</Project>