AspNetCompiler.FixedNames Property
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.
If specified, the compiled assemblies will be given fixed names.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
property bool FixedNames { bool get(); void set(bool value); };
public bool FixedNames { get; set; }
public bool FixedNames { [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] get; [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] set; }
member this.FixedNames : bool with get, set
[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
member this.FixedNames : bool with get, set
Public Property FixedNames As Boolean
Property Value
true
if one assembly should be generated for each page in the application; otherwise, false
.
- Attributes
Remarks
Each assembly is named with the virtual path of the original page unless the name would exceed the operating system limit for file names, in which case a hash is generated and used for the assembly name.
You cannot use this property for in-place compilation; in-place compilation honors configuration settings for compilation batch mode.