setup-project

How to merge Setup.exe, Setup.msi and .NetFramework prerequisite in a single installer?

一世执手 提交于 2019-12-02 00:38:50
How can the setup files and prerequisite files from a vs2010 setup project be merged together? ..in my release directory there are 3 files: setup.exe Setup1.msi DotNetFX40Client/dotNetFx40_Client_x86_x64.exe and I need these files to be in one simple setup file. I tried using IExpress tool from windows but it doesn't work because "dotNetFx40_Client_x86_x64.exe" is inside a directory, and the tool does not support it. Is there any way to make setup.exe look for the .net framework prerequisite in the root folder so I can use the IExpress tool??And if not, is there any other way to merge these

Visual Studio 2010 “Setup Project” registry editor doesn't work

▼魔方 西西 提交于 2019-12-01 15:14:26
I have an installation project that needs to add 1 simple string to the registry, and the built in Registry Editor in the Setup Project doesn't seem to work at all. It puts a base key HKEY_LOCAL_MACHINE\Software\[Manufacturer] by default into the install project, and that doesn't even work. Here are the steps I used to add the key. Right click setup project: View --> Registry A mock Registry is displayed and I drill down creating keys as needed. I create HKEY_LOCAL_MACHINE\Software\[Manufacturer]\[ProductName] Run the installer. No errors are reported, but keys do NOT exist. EDIT : Take a look

Are we still stuck with installer projects .vdrpoj or WiX in Visual Studio 2013?

别等时光非礼了梦想. 提交于 2019-12-01 14:34:34
Is there no better Installer project in Visual Studio 2013 than the Setup projects or WiX ? I have a .vdproj and some WiX projects since Visual Studio 2008 which I now need to migrate to Visual Studio 2013. Do I still have to use the same two project types or is there a better solution? Setup projects are still not supported with MSBuild and the WiX projects are still XML (although I see a visual designer is now available to purchase). I am sick of both of them. I need something that is visual and that is supported by MSBuild. We have many custom actions too. jessehouwing WiX is the default

Visual Studio 2010 “Setup Project” registry editor doesn't work

白昼怎懂夜的黑 提交于 2019-12-01 14:04:25
问题 I have an installation project that needs to add 1 simple string to the registry, and the built in Registry Editor in the Setup Project doesn't seem to work at all. It puts a base key HKEY_LOCAL_MACHINE\Software\[Manufacturer] by default into the install project, and that doesn't even work. Here are the steps I used to add the key. Right click setup project: View --> Registry A mock Registry is displayed and I drill down creating keys as needed. I create HKEY_LOCAL_MACHINE\Software\

How to create a .NET setup project with crystal report prerequisite?

限于喜欢 提交于 2019-12-01 13:47:58
I have worked on a desktop application in .net and it uses crystal report for generating report in pdf/ms word. However, I am now trying to deploying this app with visual studio setup project. Now, finding a way to bundle the crystal report assemblies in some way so that they can also install automatically on a pc where crystal report isn't installed. How can I achieve this please? Regards There is a folder called Microsoft Visual Studio 9.0\Crystal Reports\CRRedist\IA64 in your Programs folder. There you will find a redistributable package. Just add this file to your setup project - user

Are we still stuck with installer projects .vdrpoj or WiX in Visual Studio 2013?

巧了我就是萌 提交于 2019-12-01 12:13:46
问题 Is there no better Installer project in Visual Studio 2013 than the Setup projects or WiX? I have a .vdproj and some WiX projects since Visual Studio 2008 which I now need to migrate to Visual Studio 2013. Do I still have to use the same two project types or is there a better solution? Setup projects are still not supported with MSBuild and the WiX projects are still XML (although I see a visual designer is now available to purchase). I am sick of both of them. I need something that is visual

Visual Studio Setup Project with all files from a folder

谁说我不能喝 提交于 2019-12-01 06:22:52
We have a setup project that currently adds Project Output's from different visual studio projects. We want to change the packaging system and use a folder with a bunch of deploy files that are prepared for deployment in the setup. But this means that we need to add the files one by one, and keep adding them on each version when there are new files. I saw in this question that we can't add files with rules like *.aspx. So I'm considering creating a small tool that will change the vdproj file based on the files available. Can you help me with the format of this file? It seems there are some

How to include dependencies in Setup and Deployment Project?

不羁的心 提交于 2019-12-01 06:07:05
I have a solution that consists of 3 projects. I've created a deployment project it is only including the dependencies from one of the projects in my solution. What I've done so far is in my Setup and Deployment project, I right-clicked "Application Folder" to Add --> Project Output. Next I selected my main project from a dropdown and selected "Primary Output". I clicked OK and that project's dependencies were successfully included in the deployment. I tried to repeat the same process for the other DLLs in my solution, but it didn't include their dependencies. How do I include all dependencies

VS Setup project: install files in different directories

喜你入骨 提交于 2019-12-01 05:40:50
问题 I have Visual Studio Setup project. And I want to install one of my file to some directory on drive C. How am I supposed to do it? An example: I'm installing my app in C:\MyApp. And one file, settings.ini, to C:\Settings\MyAppSettings\ 回答1: You can try using the WindowsVolume property: go to File System Editor right-click the "File System on Target Machine" tree item and select "Add Special Folder" -> "Custom Folder" context menu rename the new folder to something friendly, for example "C

Visual Studio Setup Project with all files from a folder

跟風遠走 提交于 2019-12-01 04:40:35
问题 We have a setup project that currently adds Project Output's from different visual studio projects. We want to change the packaging system and use a folder with a bunch of deploy files that are prepared for deployment in the setup. But this means that we need to add the files one by one, and keep adding them on each version when there are new files. I saw in this question that we can't add files with rules like *.aspx. So I'm considering creating a small tool that will change the vdproj file