我正在.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
它会因为找不到它们而引发错误。这可能不适用于所有计算机。
我能做什么?
(我想我可以只.dll
在项目文件夹中包含 3 并将它们与应用程序一起发送并引用相对路径(如果它有效,我现在无法测试它),但是还有其他方法吗?)