forked from myloveCc/NETCore.MailKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNETCore.MailKit.csproj
More file actions
30 lines (26 loc) · 1.15 KB
/
NETCore.MailKit.csproj
File metadata and controls
30 lines (26 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>2.0.2</Version>
<Authors>Lvcc</Authors>
<Company />
<Description>MailKit extension for asp.net core. Easy send email in asp.net core project.</Description>
<Copyright>Copyright 2017 (c) Lvcc. All rights reserved</Copyright>
<PackageProjectUrl>https://github.com/myloveCc/NETCore.MailKit</PackageProjectUrl>
<RepositoryUrl>https://github.com/myloveCc/NETCore.MailKit</RepositoryUrl>
<PackageTags>MailKit ASP.NETCore</PackageTags>
<RepositoryType>git</RepositoryType>
<AssemblyVersion>2.0.2.0</AssemblyVersion>
<FileVersion>2.0.2.0</FileVersion>
<PackageReleaseNotes>1:Update Mailkit to version 2.0.1.
2:Fix Issues #9 about "no authentication error"</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="2.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Core\Internal\" />
</ItemGroup>
</Project>