Breno Rios Ramos
Breno Rios Ramos

Reputation: 419

How to fix ServiceStack incompatibility with .NETCoreApp,Version=v1.1?

I tried to add ServiceStack to my ASP.NET MVC Web App project, by going in Project > Add NuGet Packages and installing de ServiceStack Package, but I get this error:

One or more packages are incompatible with .NETCoreApp,Version=v1.1 (win-x86). Incompatible packages: 5 Package restore failed. Rolling back package changes for 'ProteinTracker'.

I'am using Visual Studio Community 2017 for Mac OS, and I'am new to the IDE and the Microsoft's Frameworks.

Upvotes: 1

Views: 157

Answers (1)

mythz
mythz

Reputation: 143399

All of ServiceStack .NET Core packages have a .Core suffix so you would need to add a reference to ServiceStack.Core.

Alternatively you can also start with one of ServiceStack's .NET Core Example projects, here are some that include ServiceStack + ASP.NET .Core MVC:

Upvotes: 1

Related Questions