-
-
Notifications
You must be signed in to change notification settings - Fork 261
/
Copy pathCoravel.Mailer.csproj
33 lines (30 loc) · 1.44 KB
/
Coravel.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
24
25
26
27
28
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>.net6.0</TargetFramework>
<AddRazorSupportForMvc>True</AddRazorSupportForMvc>
<PackageId>Coravel.Mailer</PackageId>
<Version>7.1.0</Version>
<Authors>James Hickey</Authors>
<Company>-</Company>
<Title>Coravel.Mailer</Title>
<Description>Coravel's Mailer feature. Provides a terse yet expressive syntax with tools to send mail in your .NET Core apps.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/jamesmh/coravel</PackageProjectUrl>
<RepositoryUrl>https://github.com/jamesmh/coravel</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>netcore;coravel;mail;e-mail;email;mailer;mail template;e-mail template; email template</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
<PackageReadmeFile>./readme.md</PackageReadmeFile>
<PackageIcon>./logo.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="4.8.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.36" />
</ItemGroup>
<ItemGroup>
<None Include="readme.md" Pack="true" PackagePath="\" />
<None Include="logo.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>