编译器警告(等级 2)CS1927
对模块忽略 /win32manifest,因为它仅应用于程序集。
win32 清单仅应用于程序集级别。 模块将进行编译,但不具有清单。
删除 /win32manifest option。
将代码编译为程序集。
下面的示例在同时用 /target:module 和 /win32manifest 编译器选项进行编译时生成 CS1927。
// cs1927.cs
// Compile with: /target:module /win32manifest
using System;
class ManifestWithModule
{
static int Main()
{
return 1;
}
}