How to include asset files in a .NET Standard 1.4 library in ARM platform?
问题 Anyone know what is the correct way of referencing assets if the platform is ARM? In x86 I can use appX folder with linking but its not working on ARM thanks 回答1: If you want to get assets files from a .NET Standard library, you would need to mark the file as EmbeddedResource and Copy Always . Then, you need to add a method to get these files in your .NET Standard library's class. For example: namespace ClassLibrary1 { public class Class1 { public static Stream GetImage() { var assembly =