I have a solution named 'MyApplication' with two projects:
ProjectA (namespace MyApplication.ProjectA) {.Net Core 2.1} ProjectB (namespace MyApplication.ProjectB) {.Net Core 2.1 Test Project}
ProjectA contains a resource file named 'Messages.resx'.
I have Messages.resx Add As Link in ProjectB and whenever I am reading value from Messages.resx in ProjectB it is throwing System.Resources.MissingManifestResourceException. I don't want to directly reference ProjectA inside ProjectB. Also adding a third library project with Resource file in it and referring it in both ProjectA and ProjectB is not an option. How can I add resource as Add As Link and consume it?