OutputKind Enum

Definition

Specifies output assembly kinds generated by compiler.

public enum class OutputKind
public enum OutputKind
type OutputKind = 
Public Enum OutputKind
Inheritance
OutputKind

Fields

ConsoleApplication 0

An .exe with an entry point and a console.

DynamicallyLinkedLibrary 2

A .dll file.

NetModule 3

A .netmodule file.

WindowsApplication 1

An .exe with an entry point but no console.

WindowsRuntimeApplication 5

An .exe that can run in an app container.

Equivalent to a WindowsApplication, but with an extra bit set in the Portable Executable file so that the application can only be run in an app container. Also known as a "Windows Store app".

WindowsRuntimeMetadata 4

A .winmdobj file.

Applies to