3

Anybody knows if this is the latest free version of servicestack:

Nuget Command:

Install-Package ServiceStack -Version 3.9.71

Nuget Link

Scott
  • 21,211
  • 8
  • 65
  • 72
Guardian
  • 89
  • 1
  • 12

1 Answers1

3

Yes 3.9.71 is the latest BSD (OpenSource) version of ServiceStack. As per the v3 documentation you can install using:

Install-Package ServiceStack -Version 3.9.71

If you have NuGet 2.8+ you will need to use the -IgnoreDependencies flag too.

Install-Package ServiceStack -IgnoreDependencies -Version 3.9.71

Scott
  • 21,211
  • 8
  • 65
  • 72
  • 1
    Thanks, very precise answer. – Guardian Mar 16 '14 at 18:07
  • Inside your packages.config file, be sure to add allowedVersions="(,4.0)" to any of your ServiceStack dependencies. This way, if you ever run an "Update-Package" command you won't risk having NuGet auto-upgrade you to the latest 4.0+ versions. See https://docs.nuget.org/docs/reference/versioning ("Constraining Upgrades to Allowed Versions" near the bottom of the page) for more details. – Mike Pugh Mar 18 '14 at 01:52