forked from AdhamAwadhi/JamaaSMPP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.props
More file actions
53 lines (49 loc) · 2.54 KB
/
common.props
File metadata and controls
53 lines (49 loc) · 2.54 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
49
50
51
52
53
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<PackageProjectUrl>https://github.com/alfkonee/JamaaSMPP</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl>
<Company>Elyfe Innovations</Company>
<Authors>Alfred Neequaye,AdhamAwadhi,JamaaTech</Authors>
<NeutralLanguage>en</NeutralLanguage>
<Owners>Alfred Neequaye,AdhamAwadhi,JamaaTech</Owners>
<Summary>SMPP interface Library</Summary>
<PackageTags>.net smpp</PackageTags>
<Title>Elyfe SMPP Client</Title>
<Description>Elyfe SMPP Client is a .NET implementation of the SMPP protocol that focuses on providing an easy-to-use and robust SMPP client library for .NET developers. This project is intended to be used by developers who want to integrate SMS functionalities in their applications as well as students who are learning the SMPP protocol.Based on JamaaSMPP</Description>
<Copyright>Elyfe Innovations</Copyright>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicense>MIT</PackageLicense>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<MinVerTagPrefix>v</MinVerTagPrefix>
<PackageReleaseNotes>
v2023.10.0
- BREAKING: remove NET40 compatibility
- added: SegmentIdGenerator
- fix: ReceiptedMessageId submitting
- improve: ResponseHandlers
- fix: some Threading issues
- fix: SubmitSmMultiPart HasResponse
</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\Jamaa Smpp Client.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.8.3" PrivateAssets="All"/>
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.0"/>
<PackageReference Include="MinVer" Version="4.3.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>