閱讀英文

共用方式為


編譯器警告 (層級 2) CS1927

因為模組的 /win32manifest 僅適用於組件,因此將予以忽略。

win32 資訊清單只會套用至組件層級。 您的模組會進行編譯,但不會有資訊清單。

更正這個錯誤

  1. 請移除 /win32manifest option

  2. 將程式碼編譯為組件。

範例

下列範例同時使用 /target:module/win32manifest 編譯器選項進行編譯時會產生 CS1927。

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

另請參閱