ITaskItemとは? わかりやすく解説

ITaskItem インターフェイス

メモ : このインターフェイスは、.NET Framework version 2.0新しく追加されたものです。

タスク消費生成ができる MSBuild アイテム定義します

名前空間: Microsoft.Build.Framework
アセンブリ: Microsoft.Build.Framework (microsoft.build.framework.dll 内)
構文構文

<GuidAttribute("8661674F-2148-4F71-A92A-49875511C528")>
 _
<ComVisibleAttribute(True)> _
Public Interface ITaskItem
[GuidAttribute("8661674F-2148-4F71-A92A-49875511C528")] 
[ComVisibleAttribute(true)] 
public interface ITaskItem
[GuidAttribute(L"8661674F-2148-4F71-A92A-49875511C528")] 
[ComVisibleAttribute(true)] 
public interface class ITaskItem
/** @attribute GuidAttribute("8661674F-2148-4F71-A92A-49875511C528") */
 
/** @attribute ComVisibleAttribute(true) */ 
public interface ITaskItem
GuidAttribute("8661674F-2148-4F71-A92A-49875511C528") 
ComVisibleAttribute(true) 
public interface ITaskItem
解説解説
使用例使用例

1 つ上のディレクトリ作成するタスクコード次の例に示します

using System;
using System.IO;
using System.Security;
using System.Collections;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;

namespace Microsoft.Build.Tasks
{
    /*
     * Class: MakeDir
     *
     * An MSBuild task that creates one or more directories.
     *
     */
    public class MakeDir : Task
    {
        // The Required attribute indicates the following to MSBuild:
        //         - if the parameter is a scalar type, and it is not
 supplied, fail the build immediately
        //         - if the parameter is an array type, and it is not
 supplied, pass in an empty array
        // In this case the parameter is an array type, so if a project
 fails to pass in a value for the 
            // Directories parameter, the task will get invoked, but
 this implementation will do nothing,
            // because the array will be empty.
        [Required]
            // Directories to create.
        public ITaskItem[] Directories
        {
            get
            {
                return directories;
            }

            set
            {
                directories = value;
            }
        }

        // The Output attribute indicates to MSBuild that the value
 of this property can be gathered after the
        // task has returned from Execute(), if the project has an <Output>
 tag under this task's element for 
        // this property.
        [Output]
        // A project may need the subset of the inputs that were actually
 created, so make that available here.
        public ITaskItem[] DirectoriesCreated
        {
            get
            {
                return directoriesCreated;
            }
        }

        private ITaskItem[] directories;
        private ITaskItem[] directoriesCreated;

        /// <summary>
        /// Execute is part of the Microsoft.Build.Framework.ITask interface.
        /// When it's called, any input parameters have already been
 set on the task's properties.
        /// It returns true or false to indicate success or failure.
        /// </summary>
        public override bool Execute()
        {
            ArrayList items = new ArrayList();
            foreach (ITaskItem directory in
 Directories)
            {
                // ItemSpec holds the filename or path of an Item
                if (directory.ItemSpec.Length > 0)
                {
                    try
                    {
                        // Only log a message if we actually need to
 create the folder
                        if (!Directory.Exists(directory.ItemSpec))
                        {
                            Log.LogMessage(MessageImportance.Normal, "Creating
 directory " + directory.ItemSpec);
                            Directory.CreateDirectory(directory.ItemSpec);
                        }

                        // Add to the list of created directories
                        items.Add(directory);
                    }
                    // If a directory fails to get created, log an error,
 but proceed with the remaining 
                    // directories.
                    catch (Exception ex)
                    {
                        if (ex is IOException
                            || ex is UnauthorizedAccessException
                            || ex is PathTooLongException
                            || ex is DirectoryNotFoundException
                            || ex is SecurityException)
                        {
                            Log.LogError("Error trying to create directory "
 + directory.ItemSpec + ". " + ex.Message);
                        }
                        else
                        {
                            throw;
                        }
                    }
                }
            }

            // Populate the "DirectoriesCreated" output items.
            directoriesCreated = (ITaskItem[])items.ToArray(typeof(ITaskItem));

            // Log.HasLoggedErrors is true if the task logged any errors
 -- even if they were logged 
            // from a task's constructor or property setter. As long
 as this task is written to always log an error
            // when it fails, we can reliably return HasLoggedErrors.
            return !Log.HasLoggedErrors;
        }
    }
}
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ITaskItem メンバ
Microsoft.Build.Framework 名前空間

ITaskItem プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ ItemSpec アイテム指定取得または設定します
パブリック プロパティ MetadataCount アイテム関連付けられているメタデータ エントリの数を取得します
パブリック プロパティ MetadataNames アイテム関連付けられているメタデータ エントリの名前を取得します
参照参照

関連項目

ITaskItem インターフェイス
Microsoft.Build.Framework 名前空間

ITaskItem メソッド


パブリック メソッドパブリック メソッド

  名前 説明
パブリック メソッド CloneCustomMetadata カスタム メタデータコレクション取得します
パブリック メソッド CopyMetadataTo カスタム メタデータ エントリを別のアイテムコピーします
パブリック メソッド GetMetadata 指定したメタデータ エントリの値を取得します
パブリック メソッド RemoveMetadata 指定したメタデータ エントリをアイテムから削除します
パブリック メソッド SetMetadata アイテムカスタム メタデータ エントリを追加または変更します
参照参照

関連項目

ITaskItem インターフェイス
Microsoft.Build.Framework 名前空間

ITaskItem メンバ

タスク消費生成ができる MSBuild アイテム定義します

ITaskItem データ型公開されるメンバを以下の表に示します


パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ ItemSpec アイテム指定取得または設定します
パブリック プロパティ MetadataCount アイテム関連付けられているメタデータ エントリの数を取得します
パブリック プロパティ MetadataNames アイテム関連付けられているメタデータ エントリの名前を取得します
パブリック メソッドパブリック メソッド
  名前 説明
パブリック メソッド CloneCustomMetadata カスタム メタデータコレクション取得します
パブリック メソッド CopyMetadataTo カスタム メタデータ エントリを別のアイテムコピーします
パブリック メソッド GetMetadata 指定したメタデータ エントリの値を取得します
パブリック メソッド RemoveMetadata 指定したメタデータ エントリをアイテムから削除します
パブリック メソッド SetMetadata アイテムカスタム メタデータ エントリを追加または変更します
参照参照

関連項目

ITaskItem インターフェイス
Microsoft.Build.Framework 名前空間



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「ITaskItem」の関連用語

ITaskItemのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



ITaskItemのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS