-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDevlord.Utilities.Mail.csproj
More file actions
33 lines (28 loc) · 1.33 KB
/
Devlord.Utilities.Mail.csproj
File metadata and controls
33 lines (28 loc) · 1.33 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
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<VersionPrefix>7.0.1</VersionPrefix>
<Company>Devlords Cooperative</Company>
<Authors>devlord</Authors>
<PackageProjectUrl>https://github.com/lorddev/utilities</PackageProjectUrl>
<Copyright>Copyright © 2026 Aaron Lord</Copyright>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PackageIcon>devlord-105.png</PackageIcon>
<RepositoryUrl>https://github.com/lorddev/utilities</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>utils utilities email gmail mailbot</PackageTags>
<PackageSummary>Utilities class library so you don't have to rewrite your utilities on every project.</PackageSummary>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="" />
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="..\..\images\devlord-105.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Devlord.Utilities\Devlord.Utilities.csproj" />
<PackageReference Include="MailKit" Version="4.15.0" />
</ItemGroup>
</Project>