18

我正在使用 /linkres: 编译器参数嵌入一个二进制文件,但是当我尝试加载它时:

System.Reflection.Assembly myAssembly = System.Reflection.Assembly.GetExecutingAssembly();
string[] names = myAssembly.GetManifestResourceNames(); // it is really there by its name "shader.tkb"
Stream myStream = myAssembly.GetManifestResourceStream( names[0] );

这导致

 Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly 'shader.tkb' or one of its dependencies. The system cannot find the file specified. ---> System.IO.FileNotFoundException: The system cannot find the file specified. (Exception from HRESULT: 0x80070002)
--- End of inner exception stack trace ---
at System.Reflection.RuntimeAssembly.GetResource(RuntimeAssembly assembly, String resourceName, UInt64& length, StackCrawlMarkHandle stackMark, Boolean skipSecurityCheck)
at System.Reflection.RuntimeAssembly.GetManifestResourceStream(String name, StackCrawlMark& stackMark, Boolean skipSecurityCheck)
at System.Reflection.RuntimeAssembly.GetManifestResourceStream(String name)

这里有什么问题?

4

4 回答 4

35

1 - 文件的构建操作应该是嵌入式资源。
2 - 您不能只指定资源名称。您必须在资源名称之前指定整个程序集名称

Assembly assembly = this.GetType().Assembly;
assembly.GetManifestResourceStream(
    assembly.GetName().Name + "." + "SubFolderNameIfAny" + ".shader.tkb");
于 2013-05-24T09:50:23.730 回答
2

可能需要考虑项目命名空间:

对我有用的是:

System.Reflection.Assembly assem = this.GetType().Assembly;         
using( Stream stream = assem.GetManifestResourceStream("Project_A.FolderName.test.txt") )   

其中“Project_A”是我的项目命名空间
其中“FolderName”是我的项目解决方案资源管理器中的一个文件夹
其中“test.txt”是“FolderName”文件夹中的嵌入资源

如果我使用:

assem.GetName().Name

我会得到“Project A”而不是“Project_A”?!?!?!?

于 2015-06-10T21:48:20.763 回答
2

此链接将帮助您了解如何使用嵌入式资源。Aseem 提供的解决方案仅在程序集名称与项目的默认命名空间相同时才有效,如项目属性的“应用程序”选项卡中所述。

需要做的是(即使程序集名称与项目的默认命名空间不同)是:

using System.IO;
using System.Reflection;

Assembly myAssembly = Assembly.GetExecutingAssembly();
Stream myStream = assembly.GetManifestResourceStream(fullResourceName);

fullResourceName您希望访问的嵌入资源的完全限定名称在哪里。

如果资源(此处shader.tkb)位于项目的根文件夹中,则fullResourceName = "Default.Namespace.Of.Project.shader.tkb". Resources如果资源位于项目文件夹中名为的文件夹中,则fullResourceName = "Default.Namespace.Of.Project.Resources.shader.tkb".

于 2017-07-21T05:36:48.987 回答
1

您可以在您的 Assembly 对象上使用 GetManifestResourceNames() 来获取文件的完整列表(及其名称)。

我不知道为什么,但在我的项目中,我不应该包含子文件夹名称。只是带有文件名的程序集的基本名称。

于 2015-07-13T12:08:17.970 回答