poco-1.12.2/vs160 available soon as Nuget packages #3767
zosrothko
started this conversation in
Show and tell
Replies: 1 comment 1 reply
-
There's a bit of a problem, though - 1.12.3 is not released yet and there will likely be some changes to that branch before release. The most recent release is 1.12.2 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello Poco's people
The release
poco-1.12.2
build withVS2019/vs160
will be published as Nuget packages on Poco C++ librairiesEach Poco module comes with 3 packages
Poco.Module.vs160.noarch
which provides the includesPoco.Module.vs160.shared
which provide the shared module dlls and libs (release & debug), both for Win32 and x64 architecturePoco.Module.vs160.static
which provide the static module libs (release & debug), both for Win32 and x64 architectureEach
static
andshared
package has a direct dependency on thenoarch
package.Moreover, the intermodule dependencies are also included so that downloading/installing a module will also download/install its dependency tree as show below with the installation of
Poco.DataPostgreSQL.vs160.shared
with the following command.But before you should update your Nuget.config file with this element:
nuget install -source github Poco.DataPostgreSQL.vs160.shared
zero-configuration
A key point for using Nuget packages with VisualStudio is that all includes directories of the dependency tree are automatically added to the step and that all lib directories as well for the step, leading to a zero configuration installation.
PS: An exception for the transitive dependency tree concerns the Crypto module that depends on
Pocoproject.OpenSSL.vs120.x86
orPocoproject.OpenSSL.vs120.x64
that should be downloaded/installed apart.Beta Was this translation helpful? Give feedback.
All reactions