AssemblyType Enumeration
Specifies a CompilerParameters target assembly.
Namespace: DevCase.Core.Diagnostics.CodeCompilationAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
Public Enumeration AssemblyType
Dim instance As AssemblyType
public enum class AssemblyType
No code example is currently available or this language may not be supported.
Console |
0 |
An executable console application or Command line interface (CLI).
The output file is created with an extension of .exe.
|
WinExe |
1 |
An executable Windows-based application or Graphical user interface (GUI).
The output file is created with an extension of .exe.
|
WinExeContainer |
2 |
An executable Windows-based application that must be run in an app container.
This setting is designed to be used for Windows 8.x Store applications.
The output file is created with an extension of .exe.
|
WinMdObj |
3 |
An intermediate file that you can convert to a Windows Runtime binary (.winmd) file.
The .winmd file can be consumed by JavaScript and C++ programs, in addition to managed language programs.
The output file name takes the name of the input file.
|
DynamicLinkLibrary |
4 |
A Dynamic-link library.
The output file is created with an extension of .dll.
|
Module |
5 |
A module that can be added to an assembly.
The output file is created with an extension of .netmodule.
|