Asked
Active
Viewed 148 times
0
I have a VB.NET WinForms application. I've created the installer wizard for it using the "Microsoft Visual Studio Installer Extension for VS2022" extension.
I've added a .NET 5 prerequisite through the dialog box, but I've encountered a problem. My users are not so tech-savvy, and when the prompt to install .NET comes, it redirects to the dotnet installation page, there are lots of release notes, x86, x64, yada yada. They probably wouldn't understand.
Is there anyway to make the installer use a custom link, so that I could use the direct download link from MSFT's site instead?
Edit: I've read this thread: https://stackoverflow.com/questions/1334436/adding-custom-prerequsites-to-visual-studio-setup-project
I'm not trying to bootstrap custom prerequisites. I want it to install .NET automatically without the user having to find the installer from the page it opens, download it, install it, then rerun the installer.
-
Does this answer your question? [Adding Custom prerequsites to visual studio setup project](https://stackoverflow.com/questions/1334436/adding-custom-prerequsites-to-visual-studio-setup-project) – Bogdan Mitrache Dec 17 '21 at 09:51
-
Hi @BogdanMitrache, I've edited my post to reflect what I was trying to ask through this question. – Dec 17 '21 at 11:51