HomeCSharpC# 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’

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

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...