我有两个项目 - 共享项目和wpf项目。 共享项目中有一个html文件。 我想使用下面的代码获取文件的流。
var resourceName = String.Format("{0}.Map.html", this.GetType().Namespace);
Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(resourceName)
但它总是返回null。 我用以下代码检查了资源名称。
var names = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceNames();
我无法从列表中看到html文件。 我添加了添加现有项对话框的文件。 我不确定。怎么了。 请帮我。感谢
答案 0 :(得分:0)
我找到了解决方案。选择资源文件,并在属性窗口中更改嵌入资源的构建操作。 它工作得很好。