Reputation: 2376
I need to ask the idea about upgrading DLL with latest version without removing it from References manually.
For example, In my project, I am using ServiceStack DLL which has version : 4.0.52.0 but I want to update it with version 4.5.6
Is there any specific way available in Visual Studio 2013, so that I can download and update DLL References with Latest DLL.
Thanks
Upvotes: 1
Views: 3193
Reputation: 8053
Use a NuGet package instead of a manual reference.
The DLL you are looking for can be found as a NuGet package here: https://www.nuget.org/packages/ServiceStack/
Upvotes: 4