Chapter 17. Assemblies
An assembly is the basic unit of deployment in .NET and is also the container for all types. An assembly contains compiled types with their Intermediate Language (IL) code, runtime resources, and information to assist with versioning and referencing other assemblies. An assembly also defines a boundary for type resolution. In .NET, an assembly comprises a single file with a .dll extension.
Note
When you build an executable application in .NET, you end up with two files: an assembly (.dll) and an executable launcher (.exe) appropriate to the platform youâre targeting.
This differs from what happens in .NET Framework, which generates a portable executable (PE) assembly. A PE has an .exe extension and acts both as an assembly and an application launcher. A PE can simultaneously target 32- and 64-bit versions of Windows.
Most of the types in this chapter come from the following namespaces:
System.Reflection System.Resources System.Globalization
Whatâs in an Assembly
An assembly contains four kinds of things:
- An assembly manifest
- Provides information to the CLR, such as the assemblyâs name, version, and other assemblies that it references
- An application manifest
- Provides information to the operating system, such as how the assembly should be deployed and whether administrative elevation is required
- Compiled types
- The compiled IL code and metadata of the types defined within the assembly
- Resources
- Other data embedded within the assembly, such as images ...
Get C# 10 in a Nutshell now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.