vdproj

DIRCA_CHECKFX Return Value 3 - VS 2013 Deployment Project

被刻印的时光 ゝ 提交于 2019-12-28 03:38:10
问题 I have the dreaded issue from my attempted installation of an MSI: MSI (c) (98:B0) [18:01:22:818]: Invoking remote custom action. DLL: C:\DOCUME~1\sspencer\LOCALS~1\Temp\1\MSI19.tmp, Entrypoint: CheckFX MSI (c) (98:FC) [18:01:22:833]: Cloaking enabled. MSI (c) (98:FC) [18:01:22:833]: Attempting to enable all disabled privileges before calling Install on Server MSI (c) (98:FC) [18:01:22:833]: Connected to service for CA interface. Action ended 18:01:22: DIRCA_CheckFX. Return value 3. After

Trouble with visual studio file extensions (.vdproj)

泪湿孤枕 提交于 2019-12-23 10:26:14
问题 I'm trying to open an open source project and I'm getting an error when trying to open a certain component of the project. I'm using Visual Studio C# 2008 Express Edition and I'm opening a .sln file. That part of the file opens fine, but when I enter the IDE I'm greeted immediately with the error: ...DinamapSetup.vdproj' cannot be opened because its project type (.vdproj) is not supported by this version of the application. I've been searching around to what I might need to open this file,

Build merge module without Devenv from .vdproj

血红的双手。 提交于 2019-12-22 06:59:28
问题 I read quit a few Stackoverflow Questions about building mergemodules via commandline but all of them were accepted when either somebody suggested to use devenv for compilation or use Dark to create wix-files from existing msi files. Considering the following: VisualStudio isn't installed on the buildserver I have to use. I am using nant + msbuild to compile the solutions I would like to compile mergemodules from .vdproj (because Visual Studio detects dependencies automatically) and create a

Can we instruct Visual Studio Setup to keep existing files for re-install?

邮差的信 提交于 2019-12-21 16:58:40
问题 I have a Windows Forms application with an installer (.msi) already created with Visual Studio. I am now creating a new installer for version 2.0 with the property RemovePreviousVersions set to true. Now, when I install 2.0 over 1.0 it removes 1.0 and installs 2.0 completely. Is there a way that I can tell the installer if you find some files already installed (like .xml files used for data) then don't override them? I am trying to have my 2.0 installer serve the 2 purposes: Install from

Make VDProj .MSI installer copy itself locally after successful install

六眼飞鱼酱① 提交于 2019-12-13 17:19:35
问题 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 warns correctly if other required software is not found on the local machine. However, if the installation is successful, we would like the installer to copy itself to some particular folder in program files. For example 'c:\program files\app\version\install_1.2.3.4.msi'. Does anyone know of any

teambuilding and deploying a dll (e.g. wpftoolkit.extended.dll)

断了今生、忘了曾经 提交于 2019-12-12 02:26:00
问题 The app I work on needs to use the wpftoolkit.extended.dll (i.e. no source, no msi/installer, we've only got the dll). So far we've placed the dll in a c:\libs folder on both the dev's laptop and the teambuild server and it built ok on both; now for deploying we want to add it to an installer (.vdproj) and we think we'll need it in tfs's repository somewhere. However, when tested the app now only builds on the dev's laptop and not on the teambuild server (looks like a relative path thing). So

log4net log file not visible in Windows explorer in application installation sub folder

荒凉一梦 提交于 2019-12-11 08:46:00
问题 I use log4net for my desktop application written in c# and deployed using Visual Studio Extension "Microsoft Visual Studio Installer Projects" (MSI-Installer). After installation I do not see the log subfolder defined for log4net. The TARGETDIR in " Microsoft Visual Studio Installer Projects " is defined as [ProgramFiles64Folder][Manufacturer]\[ProductName] . The log4net log file is defined as <appender name="rollingFile" type="log4net.Appender.RollingFileAppender,log4net"> <param name="File"

Visual Studio 2013 and TFS Build 2015: Devenv.exe unable to produce MSI file

守給你的承諾、 提交于 2019-12-10 18:22:20
问题 We are in the process of upgrading our TFS 2013 server to TFS 2015. In that regard I have run into an issue when trying to perform an application build on a build agent with the new version, using our XAML template build script (which was created in TFS 2013). Most of our solutions use the above-mentioned template when we build them. The solutions (sadly, still) use setup projects (.vdproj) to generate an MSI package for the application. To build the setup project, and produce an MSI, for a

Automate Builds in .net

喜你入骨 提交于 2019-12-07 23:41:48
问题 I have a solution sln, with 50 projects (vbproj, csproj, and setup project). I need automatize Build of all solution, and projects (set of projects of solution folder), and setup project (vdproj). My vdproj (setup project) has Post Build Event.. First, how can I automatize build for vdproj ?? I only can execute a command for build it in release and the copy Outputs (setup.exe, *.msi) to another folder. 回答1: There are number of application which can help you to make automatic build, e.g.

Automate Builds in .net

风格不统一 提交于 2019-12-06 04:29:24
I have a solution sln, with 50 projects (vbproj, csproj, and setup project). I need automatize Build of all solution, and projects (set of projects of solution folder), and setup project (vdproj). My vdproj (setup project) has Post Build Event.. First, how can I automatize build for vdproj ?? I only can execute a command for build it in release and the copy Outputs (setup.exe, *.msi) to another folder. There are number of application which can help you to make automatic build, e.g. Cruise Control . Additionally, you can create your own by using the MSBUILD.EXE , that is part of Windows SDK.