I want to install the .net framework automatically if it does not installed in the machine while installing our windows application. So while MSI package creation I need to add dependency as an offline installer of .NET framework. How to do that?. (by default
it install from the web).
.NET forums are moving to a new home on Microsoft Q&A, we encourage you to go to Microsoft Q&A for .NET for posting new questions and get involved today.
I have found the problem is Missed to enable "Download prerequisites from the same location as my application" configuration. After enabling this option its working fine.
Member
79 Points
109 Posts
How to add .net framework offline installer as dependency for .net windows app MSI creation?
Apr 26, 2018 09:32 AM|kaviyarasan|LINK
Hi All,
I want to install the .net framework automatically if it does not installed in the machine while installing our windows application. So while MSI package creation I need to add dependency as an offline installer of .NET framework. How to do that?. (by default it install from the web).
Note : I'm using visual studio 2015
Thanks
Star
9831 Points
3120 Posts
Re: How to add .net framework offline installer as dependency for .net windows app MSI creation?
Apr 27, 2018 06:37 AM|Brando ZWZ|LINK
Hi kaviyarasan,
As far as I know, we could select the .NET Framework tick box after selecting the Create setup program to install prerequisite components.
More details, you could refer to below article.
https://www.codeproject.com/Articles/35976/Add-Prerequisites-of-NET-Framework-in-Visual-Studi
Best Regards,
Brando
Member
79 Points
109 Posts
Re: How to add .net framework offline installer as dependency for .net windows app MSI creation?
May 07, 2018 10:48 AM|kaviyarasan|LINK
Hi Brando
Thanks for your reply.
I have found the problem is Missed to enable "Download prerequisites from the same location as my application" configuration. After enabling this option its working fine.
To enable that option to refer here
Thanks,