我正在使用.exe
创建新的WPF forms
。问题是,我需要引用一些程序集。
这是我添加它们的方式:
var p = new CompilerParameters
{
GenerateExecutable = true,
TreatWarningsAsErrors = false,
CompilerOptions = "/t:winexe",
IncludeDebugInformation = false,
OutputAssembly = dlg.FileName,
};
string[] assemblies = {
"System", "System.Core", "System.Data", "mscorlib",
"System.Drawing", "System.Windows.Forms", "Microsoft.CSharp",
@"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\WindowsBase",
@"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationCore",
@"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationFrameWork"
};
foreach (string a in assemblies)
{
p.ReferencedAssemblies.Add(a + ".dll");
}
这工作正常,但您会注意到我必须输入Windowsbase.dll
,PresentationCore.dll
和PresentationFrameWork.dll
的绝对路径,否则会因为找不到而导致错误。
这可能不适用于所有计算机。
我能做什么?
(我想我可以在项目文件夹中包含3 .dll
并将它们与应用程序一起发送并引用相对路径(如果它有效,我现在无法测试它),但是在那里另一种方式?)
答案 0 :(得分:1)
欺骗的一种方法是,如果您在项目中引用该dll,则可以执行以下操作:
typeof(System.Windows.Point).Assembly.Location
这会让你超越WindowsBase问题。
答案 1 :(得分:0)
您应该确保有问题的程序集在GAC (Global Assembly Cache)中注册,因为当您没有提供绝对路径时,应用程序最终会查找它们。
您可以浏览到C:\Windows\Assembly
(假设C:\Windows
是您的Windows安装目录),检查哪些程序集已注册到GAC。