Main menu:

Site search

Januar 2026
M D M D F S S
 1234
567891011
12131415161718
19202122232425
262728293031  

Categories

Tags

Fix error Multiple Item of VisualStudio Extensions Configuration Transform

For error message:
Multiple items cannot be passed into a parameter of type "Microsoft.Build.Framework.ITaskItem".

Change
<AppConfigWithTargetPath Remove="app.config" />
to
<AppConfigWithTargetPath Remove="@(AppConfigWithTargetPath)"/>

Write a comment