-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathcommon.props
More file actions
48 lines (44 loc) · 2.1 KB
/
common.props
File metadata and controls
48 lines (44 loc) · 2.1 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>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>2.0.0</Version>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<PackageProjectUrl>https://github.com/AdhamAwadhi/JamaaSMPP/</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl>
<Company>Jamaa Technologies</Company>
<Authors>AdhamAwadhi,JamaaTech</Authors>
<NeutralLanguage>en</NeutralLanguage>
<Owners>AdhamAwadhi,JamaaTech</Owners>
<Summary>HardwareAnalyzer</Summary>
<PackageTags>.net smpp</PackageTags>
<Title>Jamaa SMPP Client</Title>
<Description>Jamaa 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.</Description>
<Copyright>Jamaa Technologies</Copyright>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicense>https://github.com/AdhamAwadhi/JamaaSMPP/blob/master/LICENSE</PackageLicense>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<ReleaseVersion>$(Version)</ReleaseVersion>
<Version>$(Version)</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<PackageReleaseNotes>
v2.0.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>
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.8.3" PrivateAssets="All" />
<PackageReference Include="Common.Logging" Version="3.4.1" />
</ItemGroup>
</Project>