The problem:
You’re building a setup project in Visual Studio (aka deployment project or installer project) and find the following warning in the build output:

Why this is happening:
The project you want to deploy (using the setup project) targets a more recent .NET Framework than specified in the setup project’s launch conditions.
In my case, the project targets .NET Framework 4.7:

Meanwhile, the setup project was still checking for .NET Framework 4.6.1 as a launch condition (requirement on the target machine).
The solution: Update the launch condition version to match the target framework of your project.
In the Setup Project, double click on ‘Microsoft .NET Framework’ to show its properties. Then change the .NET Framework version in the dropdown list:
One more thing: Check the prerequisites
While this has nothing to do with the warning, you might as well check which version of the .NET framework your setup program will install (if any).
Right click on the setup project and select ‘Properties’. In the Property Pages dialog, click on ‘Prerequisites…’:
Update: While I thought this issue only appears when you update your project’s target framework after having already created a setup project, it seems that it also happens when creating a new setup project. Also, changing the target framework version does not seem to update the InstallUrl (not sure if this is important).
Thank-you. This resolved an issue I have.
Thank you very much. I often struggle to find good help with setup projects as it seems to have generally fallen out of favour. This guide instantly addressed and solved my problem. It took me longer to write this note than to fix my issue.
I’m glad this post helped you! I almost didn’t publish it because I didn’t think there would be much interest in it.
Thank you very much. This post has helped me, too.
Thanks!
Thank you!
Thank you, this helped me as well.