-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcommon.props
45 lines (41 loc) · 2 KB
/
common.props
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
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>1.10.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>
v1.10.0
- Improve SmppClient to respect AddressNPI and AddressTON for Source Addresses
- (fix) Fallback Source to Config Value
- Bump .Net Versions
</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>