Поделиться через


GenerateResource.Sources Property

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Gets or sets the items to convert.

MSBuild is now included in Visual Studio instead of the .NET Framework. You can use MSBuild 12.0 side-by-side with versions previously deployed with the .NET Framework.For more information, see What's New in MSBuild 12.0.

Namespace:  Microsoft.Build.Tasks
Assembly:  Microsoft.Build.Tasks.Core (in Microsoft.Build.Tasks.Core.dll)

Syntax

'Declaration
<RequiredAttribute> _
<OutputAttribute> _
Public Property Sources As ITaskItem()
[RequiredAttribute]
[OutputAttribute]
public ITaskItem[] Sources { get; set; }
[RequiredAttribute]
[OutputAttribute]
public:
property array<ITaskItem^>^ Sources {
    array<ITaskItem^>^ get ();
    void set (array<ITaskItem^>^ value);
}
[<RequiredAttribute>]
[<OutputAttribute>]
member Sources : ITaskItem[] with get, set
function get Sources () : ITaskItem[]
function set Sources (value : ITaskItem[])

Property Value

Type: array<Microsoft.Build.Framework.ITaskItem[]
The items to convert.

Remarks

Items passed to this parameter must have one of the following file extensions:

  • .txt: Specifies the extension for a text file to convert. Text files can only contain string resources.

  • .resx: Specifies the extension for an XML-based resource file to convert.

  • .restext: Specifies the same format as .txt. This different extension is useful if you want to clearly distinguish source files that contain resources from other source files in your build process.

.resources: Specifies the extension for a resource file to convert.

.NET Framework Security

See Also

Reference

GenerateResource Class

Microsoft.Build.Tasks Namespace