Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 938603
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T21:40:15+00:00 2026-05-15T21:40:15+00:00

I would like to create a custom task that is called in a fashion

  • 0

I would like to create a custom task that is called in a fashion such as this:

 <Target Name="Remap">
     <ItemGroup>
         <Entry Key="key1" Value="value1" />
         <Entry Key="key2" Value="value2" />
     </ItemGroup>

     <CustomTask 
         Entries="@(Entry)"
     />
 </Target>

Or this:

 <Target Name="Remap">
     <ItemGroup>
         <Entry>
             <Key>key1</Key>
             <Value>value1</Value>
         </Entry>
         <Entry>
             <Key>key2</Key>
             <Value>value2</Value>
         </Entry>
     </ItemGroup>

     <CustomTask 
         Entries="@(Entry)"
     />
 </Target>

I tried just using:

public class CustomTask : Task
{
    public override bool Execute()
    {
        ...
    }

    [Required]
    public ITaskItem[] Entries { get; set; }
}

But in the first case, I get the error:

error MSB4066: The attribute "Key" in element <Entry> is unrecognized.

And in the second case, while there is no error, the Entries collection is just empty.

Is there a way to accomplish this with MsBuild custom tasks?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T21:40:16+00:00Added an answer on May 15, 2026 at 9:40 pm

    Items in an itemgroup must have an Include= attribute that identifies it, so try something like:

    <Target Name="Remap">
         <ItemGroup>
             <Entry Include="key1">
                 <Value>value1</Value>
             </Entry>
             <Entry Include="key2">
                 <Value>value2</Value>
             </Entry>
         </ItemGroup>
    
         <CustomTask 
             Entries="@(Entry)"
         />
     </Target>
    

    The Value parts should appear as metadata in the items.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

hi i would like to create a custom calendar, this calendar will have custom
I would like to create a custom NSView that takes a layered approach to
I would like to know how to create a custom shaped uiimageview so that
I would like to create a custom collection that implements ICollection . But I
I would like to create a custom XmlDeclaration while using the XmlDocument/XmlDeclaration classes in
I would like create my own collection that has all the attributes of python
I would like create a web service in ASP.Net 2.0 that will supports JSON.
I would like to create a stored procedure in MySQL that took a list
I have my own custom configuration sections but would like to create a new
I would like to be able to create a custom UI in Word 2007/2010

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.