Nóta
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað aðskrá þig inn eða breyta skráasöfnum.
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað að breyta skráasöfnum.
The ResourcesGenerator task embeds one or more resources (.jpg, .ico, .bmp, XAML in binary format, and other extension types) into a .resources file.
Task parameters
| Parameter | Description |
|---|---|
OutputPath |
Required String parameter. Specifies the path of the output directory. If the path isn't an absolute path, it's treated as a path that is relative to the root project directory. |
OutputResourcesFile |
Required ITaskItem[] output parameter. Specifies the path and name of the generated .resources file. If the path isn't an absolute path, the .resources file is generated relative to the root project directory. |
ResourcesFiles |
Required ITaskItem[] parameter. Specifies one or more resources to embed in the generated .resources file. |
Example
The following example generates a .resources file with a single .bmp resource. The .bmp resource is generated to a directory that is relative to the project root directory.
<Project>
<UsingTask
TaskName="Microsoft.Build.Tasks.Windows.ResourcesGenerator"
AssemblyFile="C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationBuildTasks.dll" />
<Target Name="ResourcesGeneratorTask">
<ResourcesGenerator
ResourceFiles="Resource1.bmp"
OutputPath="myresources"
OutputResourcesFile="myresources\my.resources" />
</Target>
</Project>