Custom setup project for "Setup and Deployment Visual Studio"- How to get the contents of the folder where the
Date : March 29 2020, 07:55 AM
To fix the issue you can do This will be the [SOURCEDIR] property. This question may point you in the right direction.
|
How do I execute the ini-file during setup (visual studio 2008 setup project)?
Date : March 29 2020, 07:55 AM
Does that help .ini files are for configuration; they aren't "executed". Did you mean an .inf file? But .inf files are usually used as a simple substitute for a ful setup program, which you seem to have.
|
Is there any point to the setup.exe file created by a setup project in Visual Studio?
Tag : chash , By : Carlos Galdino
Date : March 29 2020, 07:55 AM
To fix this issue Kristopher Johnson is correct about the older machines, but it also does something else. When you are setting up the installer you can set dependencies and locations to download those dependencies. The Setup.exe does those dependency checks and launches the other MSI files in to install them. This is most often used to make sure Windows has the correct version of .NET or the C++ runtime installed. If you do not have dependencies and you can guarantee .NET or the C++ runtime is installed then you do not need to distribute the setup.exe file.
|
Creating Exe/MSI for C# Windows Forms using Visual Studio 2017 Setup Project
Date : March 29 2020, 07:55 AM
will help you The only project with the Install option is the setup project. Other projects in the solution do not have install option just because there is a setup project as part of the solution. References in a non-setup project (such as a C# build) are not automatically included in a setup project. References used to build code are not necessarily things that need installing on the target system. The setup will try to help with dependencies, but it's unreliable, and only a guide. For example, your Application Folder view contains some files that are part of the .NET Framework, and you definitely don't install them because they are installed as part of the standard .NET framework install.
|
evaluating Visual studio's software setup packaging tool (setup project/ Web setup project)
Date : March 29 2020, 07:55 AM
|