我有一个.dll我试图嵌入作为一个可执行内的资源。 下面的两个问题是有些帮助的,但不是一个完整的帮助:
嵌入另一个组件内部组件
这似乎并不为写入工作; 该args.Name不能用作编写的,但即使它是固定的,该程序仍抱怨缺少.dll文件,表明该组件未正确加载。
在编译的可执行文件中嵌入的DLL
并在其中一个答案的链接:
http://codeblog.larsholm.net/2011/06/embed-dlls-easily-in-a-net-assembly/
但是,在我的任何类型的项目没有“的App.xaml *”文件 - 我不使用WPF; 我使用的WinForms为我的可执行文件(变化是不是一个真正的选择,由于可执行文件的性质)。
因此,我在寻找一套完整的用于在可执行文件作为资源和加载从资源.dll文件中嵌入类库的指令,而无需.dll文件嵌入的资源之外。
例如,这将是不切实际的只是一个“的App.xaml”文件添加到WinForms项目,或会有负面作用,我不知道的?
谢谢。
编辑:这是什么我目前正在使用:
/// <summary>
/// Stores the very few things that need to be global.
/// </summary>
static class AssemblyResolver
{
/// <summary>
/// Call in the static constructor of the startup class.
/// </summary>
public static void Initialize( )
{
AppDomain.CurrentDomain.AssemblyResolve +=
new ResolveEventHandler( Resolver ) ;
}
/// <summary>
/// Use this to resolve assemblies.
/// </summary>
/// <param name="sender"></param>
/// <param name="args"></param>
/// <returns></returns>
public static Assembly Resolver( object sender, ResolveEventArgs args )
{
Assembly executingAssembly = Assembly.GetExecutingAssembly( ) ;
if ( args.Name == null )
throw new NullReferenceException(
"Item name is null and could not be resolved."
) ;
if ( !executingAssembly.GetManifestResourceNames().Contains(
"Many_Objects_Display.Resources." +
new AssemblyName( args.Name ).Name.Replace( ".resources", ".dll" ) )
)
throw new ArgumentException( "Resource name does not exist." ) ;
Stream resourceStream =
executingAssembly.GetManifestResourceStream(
"Many_Objects_Display.Resources." +
new AssemblyName( args.Name ).Name.Replace( ".resources", ".dll" )
) ;
if ( resourceStream == null )
throw new NullReferenceException( "Resource stream is null." ) ;
if ( resourceStream.Length > 104857600)
throw new ArgumentException(
"Exceedingly long resource - greater than 100 MB. Aborting..."
) ;
byte[] block = new byte[ resourceStream.Length ] ;
resourceStream.Read( block, 0, block.Length ) ;
Assembly resourceAssembly = Assembly.Load( block ) ;
if ( resourceAssembly == null )
throw new NullReferenceException( "Assembly is a null value." ) ;
return resourceAssembly ;
}
}