-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathWaher.Networking.SMTP.csproj
More file actions
48 lines (43 loc) · 2.01 KB
/
Copy pathWaher.Networking.SMTP.csproj
File metadata and controls
48 lines (43 loc) · 2.01 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Authors>Peter Waher</Authors>
<Product>Waher.IoTGateway</Product>
<Company>Waher Data AB</Company>
<Description>Implements a simple e-mail client based on the SMTP protocol, that can send formatted e-mail messages with attachments.</Description>
<Copyright>Copyright © Waher Data AB 2017-2026. All rights reserved.</Copyright>
<PackageProjectUrl>https://github.com/PeterWaher/IoTGateway/tree/master/Networking/Waher.Networking.SMTP</PackageProjectUrl>
<PackageIcon>Icon_64x64.png</PackageIcon>
<RepositoryUrl>https://github.com/PeterWaher/IoTGateway</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>networking communication eMail SMTP</PackageTags>
<AssemblyVersion>2.1.2</AssemblyVersion>
<FileVersion>2.1.2</FileVersion>
<Version>2.1.2</Version>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\Images\Icon_64x64.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Content\Waher.Content.Markdown\Waher.Content.Markdown.csproj" />
<ProjectReference Include="..\..\Content\Waher.Content\Waher.Content.csproj" />
<ProjectReference Include="..\Waher.Networking.SASL\Waher.Networking.SASL.csproj" />
<ProjectReference Include="..\Waher.Networking\Waher.Networking.csproj" />
</ItemGroup>
</Project>