VS2015 - Visual Studio Installer: No Dependencies Detected and Will Not Be Created

Trying to create an installation project in Visual Studio 2015. When I add my main project, no dependencies are added; not my other projects (dlls), nor Nuget packages, not even the .NET Framework.

I tried to add these project DLLs manually, but regardless of whether I execute it or not, I get this build error every time:

------ Starting pre-build validation for project 'ProjectInstaller' ------ ERROR: An error occurred while validating. HRESULT = '80070057' ------ Pre-build validation for project 'ProjectInstaller' completed ------ 

It should be noted that this error appears only at the output, and not in the list of errors. So, any ideas why dependencies are not added? Why is the assembly not working? What does this error code mean?

(As an afterthought, I successfully created the installation file on another set of solutions, I think maybe these are some settings in my project properties).

+6
source share

Source: https://habr.com/ru/post/1012655/


All Articles