C# Error CS2019 – Invalid target type for /target: must specify ‘exe’, ‘winexe’, ‘library’, or ‘module’

C# Error

CS2019 – Invalid target type for /target: must specify ‘exe’, ‘winexe’, ‘library’, or ‘module’

Reason for the Error & Solution

Invalid target type for /target: must specify ‘exe’, ‘winexe’, ‘library’, or ‘module’

The compiler option was used, but an invalid parameter was passed. To resolve this error, recompile the program using the form of the /target option that is appropriate to your output file.

The following sample generates CS2017:

// CS2019.cs  
// compile with: /target:libra  
// CS2019 expected  
class MyClass  
{  
}  

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...