Show/Hide Toolbars

XSharp

The -refout option specifies a file path where the reference assembly should be output. This translates to metadataPeStream in the Emit API.

Syntax

-refout:filepath

Arguments

filepathThe name and path of the output file created by the compiler.

Remarks

The filename should generally match that of the primary assembly. The recommended convention (used by MSBuild) is to place the reference assembly in a "ref/" sub-folder relative to the primary assembly.

Metadata-only assemblies have their method bodies replaced with a single throw null body, but include all members except anonymous types. The reason for using throw null bodies (as opposed to no bodies) is so that PEVerify could run and pass (thus validating the completeness of the metadata).

Reference assemblies include an assembly-level ReferenceAssembly attribute. This attribute may be specified in source (then the compiler won't need to synthesize it). Because of this attribute, runtimes will refuse to load reference assemblies for execution (but they can still be loaded in reflection-only mode). Tools that reflect on assemblies need to ensure they load reference assemblies as reflection-only, otherwise they will receive a typeload error from the runtime.

Reference assemblies further remove metadata (private members) from metadata-only assemblies:

A reference assembly only has references for what it needs in the API surface. The real assembly may have additional references related to specific implementations.

Private function-members (methods, properties, and events) are removed in cases where their removal doesn't observably impact compilation. If there are no InternalsVisibleTo attributes, do the same for internal function-members.

But all types (including private or nested types) are kept in reference assemblies. All attributes are kept (even internal ones).

All virtual methods are kept. Explicit interface implementations are kept. Explicitly implemented properties and events are kept, as their accessors are virtual (and are therefore kept).

All fields of a struct are kept.

The -refout and -refonly options are mutually exclusive.