BuildManager.DesignTimeOutputMonikers 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.
Gets the temporary portable executable (PE) monikers for a project.
public:
property System::Object ^ DesignTimeOutputMonikers { System::Object ^ get(); };
public:
property Platform::Object ^ DesignTimeOutputMonikers { Platform::Object ^ get(); };
[System.Runtime.InteropServices.DispId(4)]
public object DesignTimeOutputMonikers { [System.Runtime.InteropServices.DispId(4)] get; }
[<System.Runtime.InteropServices.DispId(4)>]
[<get: System.Runtime.InteropServices.DispId(4)>]
member this.DesignTimeOutputMonikers : obj
Public ReadOnly Property DesignTimeOutputMonikers As Object
Property Value
The returned object is an array of strings, where each string in the array is a temporary PE moniker.
- Attributes
Examples
See the BuildManager.
Remarks
The design-time, output monikers are the names of all the PEs that can be generated from the project. The project system assigns PE monikers based on the project hierarchy. For example, if there is an XML Designer file, SomeData.xsd, in Folder1 of Project1 that generates output, SomeData.cs, then the moniker would be "Project1\Folder1\SomeData.cs"
. Whitespace characters in the project name remain as spaces in the moniker.