GenerateResource.StronglyTypedFileName 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.
Specifies the filename for the source file. If left blank, the name of the class is used as the base filename, with the extension dependent on the language.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
property System::String ^ StronglyTypedFileName { System::String ^ get(); void set(System::String ^ value); };
[Microsoft.Build.Framework.Output]
public string StronglyTypedFileName { get; set; }
[Microsoft.Build.Framework.Output]
public string StronglyTypedFileName { [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; }
[<Microsoft.Build.Framework.Output>]
member this.StronglyTypedFileName : string with get, set
[<Microsoft.Build.Framework.Output>]
[<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.StronglyTypedFileName : string with get, set
Public Property StronglyTypedFileName As String
Property Value
The filename for the source file.
- Attributes
Remarks
If this property is not specified, the name of the class is used as the base filename, with the extension dependent on the language. For example: MyClass.cs
.