Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS2017 - Payload contains two or more files with the same destination path

I have a Xamarin project (UWP and iOS) building and running well in VS2015. The project contains some Universal Windows and iOS projects, and many PCL used by both platforms (for the view models, the services and the database access).

One by one, the PCLs are building correctly.

But when I try to build the main Universal Windows project I get this error :

Error   APPX1101
Payload contains two or more files with the same destination path 'One.Of.My.Project.pdb'
Source files: 'My.UniversalWindows.Project.scproj'

When I go in the file explorer I can find the pdb file in both \bin and \obj directory.

In VS2015, everything is building / running well. I have this build error only on VS2017.

The Target and Min version of my UWP projects are Build 14393 (Anniversary Edition) and my NuGet packages are updated (specially Microsoft.NETCore.UniversalWindowsPlatform in v5.3.1)

like image 721
ragu89 Avatar asked Oct 30 '22 09:10

ragu89


1 Answers

Clean / Rebuild was not enough (I also tried to remove all the bin/ and obj/ folders)...

I have deleteD my local repo and make a new git clone : Solved

like image 67
ragu89 Avatar answered Dec 04 '22 01:12

ragu89