Main menu:

Site search

Mai 2026
M D M D F S S
 123
45678910
11121314151617
18192021222324
25262728293031

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