I have a visual studio solution consisting of a wpf application (project1) and an installation project. I need this precondition: 
When I deploy Project1 on my own, everything works fine:

which is the premise I told visual studio to include ...
But I want to create an installation wizard project and include my Project1 along with additional files that I want to deploy. When I create this project, complicate it, repeat with the selected release options, and also select the debugging option to make sure that I include my project assembly, see how this happens:
** Deleted ... Look at the editing. I explain in more detail there **
EDIT
I will show the steps that I perform
Steps:
Step 1)
Creating a console application includes the prerequisites that I want to include

Step 2)
Set Target Structure for .NET Framework 4

Step 3)
Define these changes in the property publishing tab:

and

Setp 4)
Publish this solution without the installation wizard.

Setp 5)
Run the installation file created only on another clean machine

Step 6)
Cancel the installation, try to do the same with the installation project

Step 7)
After creating the setup1 project, add the Console application to the output project

Step 8)
Now my setup1 project looks like this:

Step 9)
Now I create this project and export it to another computer, where I want to test the installation
<T411>
Please note that when you run Setup1.exe, he wants to install the Windows 3.1 installer !!!! Why????
Step 10)
Well, whatever is right. Continue with installing let accept and continue ...

Now he wants to install the client version, not the full one !!! why?
Step 11)
Now the windows load the installer (remember that I told the visual studio in the setup that I did not want to download anything ...)
Step 12)
Setup1.exe now installs the client version of .net framework

Step 13-14)
Setup1.exe offers me to install the console application, which I click next, because the program is so small that I did not have time to take a screenshot, but now the installation is complete

Installation is now in progress
Why are the prerequisites that I indicated for the console application not included !? Why does everything work if I do not include the installation project? What am I doing wrong?