OutputKind Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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. |