Reputation: 311
I have been trying to deploy to Azure Service Fabric an app built with .NETCore Standard Library 1.6. We are using a bunch of new libraries we ported from .NET 4.5.2 framework to .NET Core 1.0.
I could not find any help.
Upvotes: 1
Views: 694
Reputation: 311
I worked it out and it is really simple. You must "publish" your .NETCoreApp to an output folder such as bin/release using the "File System" as the publish target.
Then create your Service Fabric project to use the "guest executable" template. Browse to your publish folder as the CodePackage source.
If your are still developing your .NETCoreApp use the link to the package selection.
Finally you must remember to republish your app every time you wish to test your code in the fabric before you publish to the fabric.
For more details see my blog.
Hope this helps.
Upvotes: 3