-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp42Email.csproj
More file actions
33 lines (31 loc) · 1.63 KB
/
p42Email.csproj
File metadata and controls
33 lines (31 loc) · 1.63 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>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Title>Use Email features in your app </Title>
<Description>It will help implementing and using common email functionalities into your app</Description>
<Copyright>pro42net</Copyright>
<PackageProjectUrl>https://github.com/prod42net/p42Email</PackageProjectUrl>
<PackageIcon>prod42net.jpg</PackageIcon>
<RepositoryUrl>https://github.com/prod42net/p42Email</RepositoryUrl>
<PackageTags>email</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>1.0.2</Version>
<PackageReleaseNotes>multiple receivers</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="4.14.1" />
<PackageReference Include="Microsoft.AspNetCore.App.Internal.Assets" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.79.2" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="prod42net.jpg" Pack="true" PackagePath="" />
</ItemGroup>
</Project>