bootstrapper

Bootstrapper, Sync Framework 2.1 - Prerequisites

拈花ヽ惹草 提交于 2019-12-01 07:15:20
问题 EDIT: After even more searching I found a way to complete this. I used This preview page to alter my Product.xml then I copied some of my existing Product.xml to Check if it is installed already. So I successfully implemented the Sync Framework 2.1 on my system and in my C# Application. However when I publish it and test it on another pc where Sync Framework is not installed, it comes up with errors So I try to include the SyncSDK-v2.1-x86-ENU.msi on install. After searching I found out that

How to bootstrap .NET 3.5 SP1 with msbuild? following found instructions doesn't work

雨燕双飞 提交于 2019-12-01 05:15:23
I'm trying to use msbuild GenerateBootstrapper task to distribute a .net application with the framework, without the need of internet connection to install it. I've found many posts that all lead to the same instructions in here: Enable Samesite for the .NET Framework 3.5 SP1 bootstrapper After following the instructions, I still cannot generate the bootstrapper. The more obvious issue I can see is that extracting the files from dotNetFx35.exe does not extract the same list of files and folders than shown on the readme file (for example TOOLS folders are not there). What am I doing wrong? Am I

Wix Burn: How to stop Bootstrapper from installing itself

自作多情 提交于 2019-12-01 04:39:08
问题 I believe this question might have been asked before me, but somehow, I'm not finding some appropriate answer. I may have to write my own managed bootstrapper. But up-till now, in the examples I got, the bootstrapper is installing itself as well and appearing in Add-Remove programs instead of my product. Question: Can we make bootstrapper to only install our products and pre-requisite applications and not to install itself? Regards 回答1: No. Burn is not a "fire and forget" bootstrapper. See

WiX: how to access / change installation directory in managed bootstrapper?

泄露秘密 提交于 2019-12-01 04:08:16
问题 I am creating a WPF setup application with a custom user interface. I started with the tutorial of Bryan P. Johnston: http://bryanpjohnston.com/2012/09/28/custom-wix-managed-bootstrapper-application/ Somewhere in my view, I have a simple TextBox that binds to a Property InstallationPath in my MainViewModel . Now I want this path to be used when the user clicks on "Install". For this, I have a button that binds to my InstallCommand . The following method is called (taken directly from the

Ninject.MVC3 Bootstrapper's Kernel property is marked as Obsolete. How can I get access to the kernel?

给你一囗甜甜゛ 提交于 2019-12-01 03:51:00
I updated Ninject.MVC3 package from 2.2.1.0 to 2.2.2.0. Before I had access to the Kernel object through BootStrapper.Kernel property but in the new version Kernel property is marked as obsolete. I get a warning saying 'Public ReadOnly Property Kernel As Ninject.IKernel' is obsolete: 'Do not use Ninject as Service Locator'. Is there a different way to access the kernel in the new version? Remo Gloor The reason why this has been marked Obsolete and will be changed to internal in future is that people tend to use Ninject as a service locator if it is possible to do so. But Service Locator is an

How to get the Windows SDK folder in MSBuild?

房东的猫 提交于 2019-11-30 11:52:26
问题 What would be the way to retrieve the Windows SDK folder in an MSBuild task? Using the generateBootstrapper task I'm creating a bootstrapper for my setup to be able to install the pre-requisites. This task needs the path to the folder where the pre-requisite packages are located, i.e. the Windows SDK folder "C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\" when using Visual Studio 2008. So far I have been using a hard-coded path but this won't work on any system. Is there

I need a WIX Bootstrapper Project that installs MY software and prerequisites

断了今生、忘了曾经 提交于 2019-11-30 08:48:26
问题 Greetings! I have a solution in VS2010 that defines 3-4 individual applications. These 3-4 apps are individual (but related) components that I need to have individually installed on our production servers during deployment. I toyed with using WIX mondo to generate a multi-feature WIX installer, but found that it would be more beneficial to allow that these applications be able to be installed individually as well as via a single-source for all of them, preferably configurable to choose which

WiX Bootstrapper: How do I set burn variables from the command line?

我是研究僧i 提交于 2019-11-30 05:08:24
Using WiX 3.7 and .NET 4.0. How does one set burn variables when running a WiX bootstrapper EXE from the command line? First of all, the burn variables that you wish to set need to be set as Overridable . To do this you must include the follow namespace in your WXS: xmlns:bal="http://schemas.microsoft.com/wix/BalExtension" and if you're using Visual Studio like me you need to include WixBalExtension.dll in your project references. Next you need to add the following attribute to all of the burn variables that you want to set via the command line: bal:Overridable="yes" . Now you can set the

How to get the Windows SDK folder in MSBuild?

故事扮演 提交于 2019-11-30 01:35:33
What would be the way to retrieve the Windows SDK folder in an MSBuild task? Using the generateBootstrapper task I'm creating a bootstrapper for my setup to be able to install the pre-requisites. This task needs the path to the folder where the pre-requisite packages are located, i.e. the Windows SDK folder "C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\" when using Visual Studio 2008. So far I have been using a hard-coded path but this won't work on any system. Is there a better way to get the path? This is my build script: <Project xmlns="http://schemas.microsoft.com

Wix Managed Bootstrapper: Installing Net framework and adding entry in add-remove program even if we cancel product installation

六眼飞鱼酱① 提交于 2019-11-29 15:40:08
In my managed bootstrapper, I'm packing Net framework 4.5.1 and VC Redistributable as follows: <PackageGroupRef Id = "NetFx451Redist" /> <PackageGroupRef Id = "VC_ReDist_120" After="NetFx451Redist" /> <RollbackBoundary /> <MsiPackage Id = "MainProduct" DisplayName = "$(var.ProductName)" DisplayInternalUI = "no" Visible = "no" Compressed = "yes" SourceFile = "$(var.MainProduct)" Vital = "yes" After = "NetFx451Redist" > On Windows 7 x64, where Net FW 4.5.1 is not present, by installing, this would display wixstdba's basic screen to install .Net framework and it also adds an entry in Add-Remove