共用方式為


ResourcesGenerator 工作

更新:2007 年 11 月

ResourcesGenerator 工作會將一或多種資源 (.jpg、.ico、.bmp、二進位格式的 XAML 以及其他副檔名類型) 內嵌到 .resources 檔案中。

工作參數

參數

說明

OutputPath

必要的 String 參數。

指定輸出目錄的路徑。如果路徑不是絕對路徑,會將它視為相對於根專案目錄的路徑。

OutputResourcesFile

必要的 ITaskItem[] 輸出參數。

指定所產生 .resources 檔案的路徑和名稱。如果路徑不是絕對路徑,.resources 檔案會在相對於根專案目錄的路徑產生。

ResourcesFiles

必要的 ITaskItem[] 參數。

指定要內嵌到所產生 .resources 檔案中的一或多個資源。

範例

下列範例會產生有單一 .bmp 資源的 .resources 檔案。.bmp 資源會在相對於專案根目錄的目錄中產生。

<Project xmlns="https://schemas.microsoft.com/developer/msbuild/2003">
  <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>

請參閱

概念

建置 WPF 應用程式 (WPF)

其他資源

Windows Presentation Foundation MSBuild 參考

Windows Presentation Foundation MSBuild 工作參考

MSBuild 參考

MSBuild 工作參考