I have a created a nuget package that depends on ServiceStack.Core 1.0.30.
My project has version 1.0.44, but has a depency on the nuget package with version 1.0.30.
When I build my project, the following error is reported:
The type ‘IAppSettings’ is defined in an assembly that is not referenced. You must add a reference to assembly ‘ServiceStack.Interfaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null’.
I would like to use ServiceStack 1.0.44 in my project, while keeping the nuget package at the lowest version possible.
Any ideas?