Guardian
Guardian

Reputation: 109

How to install latest service stack open source dll

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

Nuget Command:

Install-Package ServiceStack -Version 3.9.71

Nuget Link

Upvotes: 3

Views: 337

Answers (1)

Scott
Scott

Reputation: 21501

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

Upvotes: 3

Related Questions