Home > other >  Create Visual Studio Setup Project using self-contained deployment mode for .NET 5
Create Visual Studio Setup Project using self-contained deployment mode for .NET 5

Time:03-22

I'm trying to create a setup project for a WPF application (.NET 5) using VS Community 2019. I've installed the extension for the setup project and I'm following this target location

So the correct way to do this is as follows:

  1. Create a publish profile which is automatically named like this: FolderProfile.pubxml

  2. Make the following entry in "PublishProfilePath" (don't forget to prepend "Properties\PublishProfiles"): PublishProfilePath entry

Then it is possible to build a self-contained installer.

  • Related