Project.FullFileName 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 or sets the fully qualified path + filename of the project file. This could be empty-string if the project doesn't have a file associated with it -- for example, if we were given the XML in memory.
public:
property System::String ^ FullFileName { System::String ^ get(); void set(System::String ^ value); };
public string FullFileName { get; set; }
public string FullFileName { [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] get; set; }
member this.FullFileName : string with get, set
[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
member this.FullFileName : string with get, set
Public Property FullFileName As String
Property Value
The full path of the project file.
- Attributes
Remarks
This property is an empty string
if the project does not have a file associated with it.