Skip to content

Commit

Permalink
Release 1.3.5.0 (2018-02-16)
Browse files Browse the repository at this point in the history
* Added support for .NET Standard 2.0
* Added support for basket data API
* Updated some property names to bring EFTClientIP more inline with the existing ActiveX interface. Old property names have been marked obsolete, but are still supported.
  • Loading branch information
Clinton Dean committed Feb 16, 2018
1 parent a1180ae commit f5c284d
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 9 deletions.
51 changes: 43 additions & 8 deletions IPInterface/IPInterface.csproj
Expand Up @@ -5,8 +5,8 @@
<AssemblyName>PCEFTPOS.EFTClient.IPInterface</AssemblyName>
<Title>PCEFTPOS.EFTClient.IPInterface</Title>
<PackageId>PCEFTPOS.EFTClient.IPInterface</PackageId>
<PackageVersion>1.3.4.0</PackageVersion>
<Version>1.3.4.0</Version>
<PackageVersion>1.3.5.0</PackageVersion>
<Version>1.3.5.0</Version>
<Description>TCP/IP library used for connecting to PC-EFTPOS Client</Description>
<Authors>PC-EFTPOS Pty Ltd</Authors>
<Company>PC-EFTPOS Pty Ltd</Company>
Expand All @@ -17,23 +17,58 @@
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>pceftpos.pfx</AssemblyOriginatorKeyFile>
<ReleaseNotes>
1.3.4.0 (2018-02-11)
1.3.5.0 (2018-02-11)

* Added support for .NET Standard 2.0
* Added support for basket data API
* Updated some property names to bring EFTClientIP more inline with the existing ActiveX interface. Old property names have been marked obsolete, but are still supported.
</ReleaseNotes>
<PackageReleaseNotes>
1.3.4.0 (2018-02-11)
<PackageReleaseNotes>1.3.5.0 (2018-02-16)
* Added support for .NET Standard 2.0
* Added support for basket data API
* Updated some property names to bring EFTClientIP more inline with the existing ActiveX interface. Old property names have been marked obsolete, but are still supported.
</PackageReleaseNotes>
<AssemblyVersion>1.3.4.0</AssemblyVersion>
<FileVersion>1.3.4.0</FileVersion>
</PackageReleaseNotes>
<AssemblyVersion>1.3.5.0</AssemblyVersion>
<FileVersion>1.3.5.0</FileVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\PCEFTPOS.EFTClient.IPInterface.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net45|AnyCPU'">
<DocumentationFile>bin\Release\net45\PCEFTPOS.EFTClient.IPInterface.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net451|AnyCPU'">
<DocumentationFile>bin\Release\net451\PCEFTPOS.EFTClient.IPInterface.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net452|AnyCPU'">
<DocumentationFile>bin\Release\net452\PCEFTPOS.EFTClient.IPInterface.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net46|AnyCPU'">
<DocumentationFile>bin\Release\net46\PCEFTPOS.EFTClient.IPInterface.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net461|AnyCPU'">
<DocumentationFile>bin\Release\net461\PCEFTPOS.EFTClient.IPInterface.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net462|AnyCPU'">
<DocumentationFile>bin\Release\net462\PCEFTPOS.EFTClient.IPInterface.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net47|AnyCPU'">
<DocumentationFile>bin\Release\net47\PCEFTPOS.EFTClient.IPInterface.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net471|AnyCPU'">
<DocumentationFile>bin\Release\net471\PCEFTPOS.EFTClient.IPInterface.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NuGet.CommandLine" Version="4.5.1" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -204,7 +204,7 @@ class EFTClientIPDemoAsync
## Release notes


### 1.3.4.0 (2018-02-11)
### 1.3.5.0 (2018-02-16)
* Added support for .NET Standard 2.0
* Added support for basket data API
* Updated some property names to bring EFTClientIP more inline with the existing ActiveX interface. Old property names have been marked obsolete, but are still supported.
Expand Down

0 comments on commit f5c284d

Please sign in to comment.