AssemblyTarget: Integer;
The AssemblyTarget property determines the type of assembly.
Value | Type of assembly |
0 | Console application is a console version of .NET assembly. Application with command line and without visual interface. Operations with windows in this version is prohibited. The console version of .NET assembly can be run only in debug mode in the development environment. |
1 | Dynamic library is a dynamic classes library. .NET assembly version is intended to create reusable classes that can be shared with other projects. |
2 | Windows application is a Windows application. .NET assembly version that enables user to create applications of any complexity: from application with one window to complex multiple-document interface (MDI) applications. This version of .NET assembly is under development. |
See also: