We also publish deployed builds in the ServiceStack / downloads project. Currently, the latest version is v3.9.28 , which is on NuGet.
/ downloads on ServiceStack contains most of the project DLL. That there are no specific suppliers, for example. OrmLite for alternative DBMS.
For them, the best place to get them is with the NuGet zip packages deployed on NuGet. i.e. get the OrmLite MySQL provider on OSX / Linux (or use the gnu tools for Windows), you can simply do:
wget -O ServiceStack.OrmLite.MySql.zip \ http://packages.nuget.org/api/v1/package/ServiceStack.OrmLite.MySql/3.9.28 unzip ServiceStack.OrmLite.MySql.zip 'lib/*'
which will unpack the dll in the local lib/ folder.
mythz source share