我正在尝试从两个.Net模块构建一个可执行文件:
al elevate-common.netmodule elevate-exe.netmodule /target:exe /out:elevate.exe /main:net.kolotyluk.windows.elevate.Elevate.main
但是我得到了
ALINK: error AL1037: Unable to find the entry point method 'net.kolotyluk.windows.elevate.Elevate.main'
我的源代码是
namespace net.kolotyluk.windows.elevate
{
public class Elevate
{
public static int Main(string[] commandArguments)
{
有什么明显的我做错了吗?
模块是否必须位于当前目录以外的其他位置?
答案 0 :(得分:0)