編譯器錯誤 CS2019
/target: 的目標類型無效。必須指定 'exe'、'winexe'、'library' 或 'module'。
已使用 TargetType 編譯器選項,但傳遞的參數無效。 若要解決此錯誤,請使用適合您輸出檔之 /target 選項的形式重新編譯程式。
下列範例會產生 CS2017:
C#
// CS2019.cs
// compile with: /target:libra
// CS2019 expected
class MyClass
{
}