Reputation: 21328
I'm trying to add a file to service fabric project. However I get file not found exception when running it locally and when published. What is the proper way to include a file as "content" in service fabric Service?
trying to do this:
var pfx = File.ReadAllBytes("cert.pfx"); // Exception - not found
Upvotes: 0
Views: 89