0

I have a set of service projects that i build about 12 months ago. I've tried updating nuget packages as often as possible but with .netstandard and core 2.0 I assumed it would be ready to port to the new sdk and packages without too much trouble.

I've managed to update most of my libraries to .netstandard2.0 but any of the services using service fabric packages won't work.

I've had to default my libraries to 4.6.2

I've tried by updating the csproj to use the new style layout. I've also tried by creating a new service fabric project, selecting the .net core option template and copy the settings from there but that doesn't work either.

1 Answers1

0

Service Fabric is compatible with .netstandard 2.0 and .net core 2.0 (where the project is actually netcore2.0 and not net462) but with this 2 conditions:

The good news is that you can create the project/solution from the preview version and then reopen it from the regular version and it will work.

Here's an example of such a solution

LoekD
  • 11,402
  • 17
  • 27
cheesemacfly
  • 11,622
  • 11
  • 53
  • 72