System.Data.SQLite.DLL は混合コード DLL です。C と C# が含まれています。それを埋め込みリソースとして追加し、一時ファイルに書き込み、Assembly.LoadFile() を使用してロードする方法を知っています。
私の質問は、一時ファイルに書き込まずにロードする別の方法はありますか? 私はそれをEXEと組み合わせて単一のアセンブリにしたいと考えています。
アドバイスをありがとう
回答への回答:
宛先: オレグ・イグナトフ
こんにちは、次のようにロードするように変更しました:
static System.Reflection.Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args)
{
Assembly asm = null;
AppDomain domain = (AppDomain)sender;
if (args.Name.Contains("System.Data.SQLite"))
{
try
{
asm = domain.Load(WindowsFormsApplication24.Properties.Resources.System_Data_SQLite);
}
catch (Exception ex)
{
Form f = new Form();
TextBox t = new TextBox(); t.Dock = DockStyle.Fill;
t.Multiline = true; t.ScrollBars = ScrollBars.Both;
f.Controls.Add(t);
t.Text = ex.ToString();
f.ShowDialog();
}
}
return asm;
}
次の例外メッセージが生成されます。
System.IO.FileLoadException: Could not load file or assembly 'System.Data.SQLite, Version=1.0.82.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139' or one of its dependencies. Attempt to load an unverifiable executable with fixups (IAT with more than 2 sections or a TLS section.) (Exception from HRESULT: 0x80131019)
File name: 'System.Data.SQLite, Version=1.0.82.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139' ---> System.IO.FileLoadException: Attempt to load an unverifiable executable with fixups (IAT with more than 2 sections or a TLS section.) (Exception from HRESULT: 0x80131019)
at System.Reflection.RuntimeAssembly.nLoadImage(Byte[] rawAssembly, Byte[] rawSymbolStore, Evidence evidence, StackCrawlMark& stackMark, Boolean fIntrospection, SecurityContextSource securityContextSource)
at System.AppDomain.Load(Byte[] rawAssembly)
at WindowsFormsApplication24.Program.CurrentDomain_AssemblyResolve(Object sender, ResolveEventArgs args)
これは、以前に次のように行ったのと同じ結果になります。
byte[] ba = null;
Assembly asm = null;
Assembly curAsm = Assembly.GetExecutingAssembly();
string embeddedResource = "WindowsFormsApplication24.System.Data.SQLite.dll";
using (Stream stm = curAsm.GetManifestResourceStream(embeddedResource))
{
ba = new byte[(int)stm.Length];
stm.Read(ba, 0, (int)stm.Length);
asm = Assembly.Load(ba);
}
return asm;