使用英语阅读

通过


编译器警告(等级 2)CS1927

对模块忽略 /win32manifest,因为它仅应用于程序集。

win32 清单仅应用于程序集级别。 模块将进行编译,但不具有清单。

更正此错误

  1. 删除 /win32manifest option

  2. 将代码编译为程序集。

示例

下面的示例在同时用 /target:module/win32manifest 编译器选项进行编译时生成 CS1927。

// cs1927.cs  
// Compile with: /target:module /win32manifest  
using System;  
  
class ManifestWithModule  
{  
    static int Main()  
    {  
        return 1;  
    }  
}  

另请参阅