Mageui.exe 中的 dll.manifest 上未指定入口点
我正在尝试在 DLL 上使用 Visual Studio 2008 中包含的 MageUI.exe 来部署它。 当我尝试保存应用程序清单时,每次都会收到“文件页面 - 未指定入口点”消息。 如果我在“文件”选项卡上将 dll 设置为入口点,则它不是有效的入口点。 我缺少什么?
I am trying to use MageUI.exe included in Visual Studio 2008 on a DLL in order to deploy it. When I try to save the application manifest I got the "Files page - No entry point specified" message every time. If I set on the Files Tab a dll as Entry Point, it is not a valid Entry Point. What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确定有有效的入口点吗? 通常入口点是
static void Main(string[] a) {...}
,因此您希望针对包含运行 Main 的程序集或可执行文件的文件夹运行 Mage。 除非它是一个 COM dll,在这种情况下它会变得有点复杂......Are you sure there's a valid entry point? Usually the entry point is
static void Main(string[] a) {...}
so you want to be running Mage against the folder that contains the assembly or executable that runs Main. Unless it's a COM dll in which case it gets a bit more complicated...