Tagged Questions

7
votes
1answer
917 views

VDPROJ auto upgrading vs. uninstall/reinstall

I've seen a confusing behavior regarding the MSI files generated by a VDPROJ file. If I build my MSI in Visual Studio and then right-click and pick "Install" from within Visual Studio, it will ...
3
votes
2answers
861 views

How can I prevent a .vdproj compile from updating the PackageCode on every compile?

I have a Visual Studio 2010 solution for a Web Application that contains all of the projects that make up the Web Application, plus the .vdproj file that builds the installer. All of the files are ...
3
votes
2answers
1k views

Passing REINSTALLMODE to an MSI file

I am using VisualStudio2005 and a vdproj to create a simple MSI file. I need to pass in the REINSTALLMODE property when I launch it. I know this can be done via command line, like so: msiexec.exe ...
2
votes
2answers
562 views

Deployment projects not supported by msbuild: what are my options?

I'm using TeamCity to automatically build my solution with msbuild and it seems that .vdproj are not supported. What are my options to build an msi/installer ? Install Visual Studio on the build ...
2
votes
1answer
390 views

Visual Studio Setup Projects: Cleartype

I use a Visual Studio Setup project to create an installer for some assemblies. However, the fonts the installer uses are always aliased, and don't appear to be the Windows standard. (Note that ...
2
votes
3answers
1k views

Reboot as last step in vdproj, how can I add it?

How can I add the reboot action to a vdproj? I need an MSI which restart the pc at the end of the installation. Thank you.
1
vote
1answer
50 views

vdproj / msi environment variables

Can somebody please provide me with a (link to a) list of all the environment variables available to vdproj install projects / msi projects ? Is there a comprehensive list any where ?
1
vote
1answer
319 views

Make VDProj .MSI installer copy itself locally after successful install

We have large C# application spanning many projects which is packaged into an .MSI file by running MSBuild (or through Visual Studio 2010) on a .VDProj file. The installation usually works fine, and ...
0
votes
4answers
137 views

How to make a .msi file that has no clickable screens (fully automated)?

I'm using a vdproj to create a .msi file. I have a continuous integration server that needs to install our program on a dedicated machine. I'd like for it to run the .msi file yet have no clickable ...
0
votes
0answers
61 views

Why does the generated MSI filesize from a VS2005 vdproj change if the outputfilename path is changed?

If I simply edit the "OutputFilename" property of my vdproj file in a text editor: from "8:Release\test.msi" to "8:..\\..\\bin\\test.msi" the resultant MSI filesize shrinks ~500KB. Can someone ...
0
votes
1answer
67 views

How to move a ProjectName.vdproj to a different directory?

I have a setup project which I would like to move to a different directory. I have found a way to change where the MSI files will go to, but I'm struggling to find a way to move vdproj files. Thank ...
0
votes
1answer
1k views

Writing to AppData from a Setup & Deployment Project

I am updating an existing application that is installed via a Setup and Deployment Project. The old application copied a config and a database file into the application's folder in Program Files ...
0
votes
1answer
428 views

MSI removes required assembly on upgrade install, but replaces it on Repair

I'm experiencing some weirdness related to an MSI installation upgrade, perhaps someone out there can help me: I have two MSIs, an original and an upgrade: MSI version 1.0 Contains a .NET ...