Otto Neubacher
Otto Neubacher

Reputation: 29

Visual Studio 2017 Deployment Error on Windows 10 IoT

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).

Upvotes: 2

Views: 2139

Answers (4)

Sasan
Sasan

Reputation: 4230

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.

Upvotes: 3

Veerpal Kaur
Veerpal Kaur

Reputation: 1

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.

Upvotes: 0

Peter Zahle Larsen
Peter Zahle Larsen

Reputation: 11

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.

Upvotes: 1

Michael Xu
Michael Xu

Reputation: 4432

You need to change the Universal Window Target Version as Windows 10 Fall Creators Update(10.0;Build 16299). enter image description here

If you can not find this version option,you need to install the WDK for 16299, this is the download link.Please try it,and feel free to let me know if there is any problem.

Upvotes: 0

Related Questions