Questions tagged [setup-deployment]

Microsoft Setup and Deployment Wizard for Visual Studio or the .NET framework

API documentation

Related links

820 questions
5
votes
1 answer

Android Native NDK OpenGL ES: unimplemented API

I am working to implement an OpenGL ES 2.0 fully in C++ for Android. Currently our program runs without JNI or any java class in the project, using instead only NativeActivity. Focusing on the application rendering part itself, we got a simple…
ThreaderSlash
  • 1,313
  • 3
  • 27
  • 43
5
votes
1 answer

showing barcode font in .net application

I have added a barcode font in my one crystal report of C# .Net application and it worked fine in develop and shown the result. But when I created the setup file and installed it in another pc then the barcode font appears as simple font as english…
5
votes
4 answers

Visual Studio Setup and Deployment build fails with no errors

I have a setup and deployment project that, on our build server, reports the following in the summary: ========== Rebuild All: 25 succeeded, 2 failed, 0 skipped ========== I don't know what the two are that failed, though I believe one of them is…
Neil Barnwell
  • 41,080
  • 29
  • 148
  • 220
5
votes
2 answers

github php project deployment

I have a project which has the codes in github (a private repo), I am looking for a good way to deployments for this. I know capistrano, but not sure whether there are any better solutions, wanting to check other opinions :) any help is highly…
nivanka
  • 1,352
  • 6
  • 23
  • 36
5
votes
4 answers

How to ship a Windows Forms application to a client without .NET?

This is about the deployment of a Windows Forms application. I have created a Windows Forms application, but I'm not sure if the users have installed .NET version 4. I have put my Windows Forms application at my website and the users will download…
NewBie
  • 53
  • 3
5
votes
1 answer

How to create an Upgrade installer with the Visual Studio Installer Projects extension

I asked this on the deployment projects QNA I'm using the Microsoft Visual Studio Installer Projects extension to build a new installer for an update to a 10 year old project, but I cannot seem to create an installer that doesn't require the old…
stuartd
  • 70,509
  • 14
  • 132
  • 163
5
votes
1 answer

Advantages of using Jaeger Agent

So I am exploring Jaeger for Tracing and I saw that we can directly send spans from the client to the collector in HTTP (PORT: 14268), if so then what is the advantage of using the jaeger agent. When to go for the Jaeger Agent Approach and when to…
Vipin Menon
  • 2,892
  • 4
  • 20
  • 35
5
votes
4 answers

Installable Linux daemons, how to create them in C++?

Installable Linux daemons, how to create them in C++ ? I have a server applicationin C++ which I want it to behave the same way as a Windows Service. Ie it should be started whenever the system is started independently of whether there is a user…
charfeddine.ahmed
  • 526
  • 2
  • 8
  • 16
5
votes
1 answer

Visual Studio Setup & Deployment: Adding Pre Requisits

How can I add into Setup & Deployment project that I want to the client has more components, like: Microsoft Chart Controls Microsoft SQL 2008 Express Edition (not 2005) etc... alt text http://img55.imageshack.us/img55/2586/200902021225eu9.png This…
balexandre
  • 73,608
  • 45
  • 233
  • 342
5
votes
1 answer

Visual Studio Setup Project - Remove files created at runtime when uninstall

I am creating a C# .NET WinForms application and I am creating the installer as a Visual Studio setup project. On Windows 10, I can remove the installed files in the control panel. However, during runtime my application creates a folder containing…
shadowsora
  • 663
  • 7
  • 15
5
votes
4 answers

HRESULT = '80004005' in Visual Studio 2008 Setup Project

When I try to build my setup project, I get the following error: "An error occurred while validating. HRESULT = '80004005'" (And Microsoft wins an award to clarity.) I Google to find that a small army of developers have had the same problem. …
5
votes
1 answer

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 during installation. This worked fine on Win 2000 and…
turtle
  • 53
  • 1
  • 3
5
votes
0 answers

Create db and tables from setup.py

I am trying to write setup.py for very first time. Installation is working fine but could not create database and tables through script. Here is my file: import os import sys from distutils.sysconfig import get_python_lib from setuptools import…
trex
  • 3,848
  • 4
  • 31
  • 54
5
votes
2 answers

How to change Setup.exe icon when publishing through clickonce

Is there any way to set custom icon for setup.exe file when publishing through VS for click once publish. Always after publishing, I am getting setup.exe file and with the icon (kind of black disc image) but after installing the application, I can…
bharath
  • 89
  • 2
  • 10
5
votes
1 answer

what is "Runtime Implementation from ASSEMBLE NAME" in visual studio 2010 Setup Project? (Installer Extension Setup Project in vs 2015)

When adding an output to a target directory there are several types of outputs per project you can choose from. Most of them are pretty self descriptive, but i don't understand the meaning of "Runtime Implementation" and i have'nt seen it anywhere…