Visual Studio 2017 Deployment Error on Windows 10 IoT

Viewed 2074

I've been developing my Windows Store App for over a month, and all of a sudden I get this error when I try to run it in Visual Studio 2017 on my developer machine: Visual Studio Errors

(DEP0600 Deployment Failed. Failed to deploy through new deployment pipeline)

(DEP8000 Unexpected deployment failure: AggregateException : One or more errors occurred)

This error only occurs at my current project, not at a standard template for example.

I already cleaned and rebuild my solution but still no success.

At the moment I run Target Version : Windows 10 Anniversary Edition(10.0; Build 14393) and Min Version : Windows 10(10.0; Build 10586).

4 Answers

For me the problem was that my app was already running. I set it as the startup app and after that I couldn't redeploy the newer version. Stopping the app solved the problem.

DEP8000 just means that an agregated thread encountered an error and is thrown to the parent thread.

The real issue here is DEP0600.

I encountered a solution on MSDN.

Basicaly it can occur if any of your filenames has accented characters (á, ô. õ, é) ect.

Rename all your files to remove these and you're good to go.

I encountered the same problems when working with Deploying UWP app to HoloLens.

Here are few steps that can help:

  1. Clean & Rebuild solution
  2. Deleting .vs folder can help
  3. Else you can just rename the package name under project settings.
Related